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)


44952
44953
44954
44955
44956
44957
# File 'lib/aws-sdk-sagemaker/types.rb', line 44952

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)


44952
44953
44954
44955
44956
44957
# File 'lib/aws-sdk-sagemaker/types.rb', line 44952

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