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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


47213
47214
47215
47216
47217
47218
# File 'lib/aws-sdk-sagemaker/types.rb', line 47213

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)


47213
47214
47215
47216
47217
47218
# File 'lib/aws-sdk-sagemaker/types.rb', line 47213

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