Class: Aws::SageMaker::Types::NestedFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::NestedFilters
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
A list of nested Filter objects. A resource must satisfy the conditions of all filters to be included in the results returned from the Search API.
For example, to filter on a training job's InputDataConfig
property
with a specific channel name and S3Uri
prefix, define the following
filters:
'{Name:"InputDataConfig.ChannelName", "Operator":"Equals", "Value":"train"}',
'{Name:"InputDataConfig.DataSource.S3DataSource.S3Uri", "Operator":"Contains", "Value":"mybucket/catdata"}'
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
A list of filters.
-
#nested_property_name ⇒ String
The name of the property to use in the nested filters.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
A list of filters. Each filter acts on a property. Filters must
contain at least one Filters
value. For example, a NestedFilters
call might include a filter on the PropertyName
parameter of the
InputDataConfig
property:
InputDataConfig.DataSource.S3DataSource.S3Uri
.
34829 34830 34831 34832 34833 34834 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34829 class NestedFilters < Struct.new( :nested_property_name, :filters) SENSITIVE = [] include Aws::Structure end |
#nested_property_name ⇒ String
The name of the property to use in the nested filters. The value
must match a listed property name, such as InputDataConfig
.
34829 34830 34831 34832 34833 34834 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 34829 class NestedFilters < Struct.new( :nested_property_name, :filters) SENSITIVE = [] include Aws::Structure end |