Class: Aws::SageMaker::Types::VisibilityConditions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::VisibilityConditions
- 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
-
#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>
.
47355 47356 47357 47358 47359 47360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47355 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.
47355 47356 47357 47358 47359 47360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47355 class VisibilityConditions < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |