Class: Aws::SageMaker::Types::VisibilityConditions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

The list of key-value pairs used to filter your search results. If a search result contains a key from your list, it is included in the final search response if the value associated with the key in the result matches the value you specified. If the value doesn't match, the result is excluded from the search response. Any resources that don't have a key from the list that you've provided will also be included in the search response.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key that specifies the tag that you're using to filter the search results. It must be in the following format: Tags.<key>.

Returns:

  • (String)


59582
59583
59584
59585
59586
59587
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 59582

class VisibilityConditions < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value for the tag that you're using to filter the search results.

Returns:

  • (String)


59582
59583
59584
59585
59586
59587
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 59582

class VisibilityConditions < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end