Class: Aws::SageMaker::Types::VisibilityConditions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::VisibilityConditions
- 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
-
#key ⇒ String
The key that specifies the tag that you’re using to filter the search results.
-
#value ⇒ String
The value for the tag that you’re using to filter the search results.
Instance Attribute Details
#key ⇒ String
The key that specifies the tag that you’re using to filter the search results. It must be in the following format: ‘Tags.<key>`.
47327 47328 47329 47330 47331 47332 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 47327 class VisibilityConditions < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for the tag that you’re using to filter the search results.
47327 47328 47329 47330 47331 47332 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 47327 class VisibilityConditions < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |