Class: Aws::SageMaker::Types::NestedFilters

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

  • ‘’“Operator”:“Equals”, “Value”:“train”‘,`

  • ‘’“Operator”:“Contains”, “Value”:“mybucket/catdata”‘`

[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_Filter.html [2]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<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`.

Returns:



33053
33054
33055
33056
33057
33058
# File 'lib/aws-sdk-sagemaker/types.rb', line 33053

class NestedFilters < Struct.new(
  :nested_property_name,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end

#nested_property_nameString

The name of the property to use in the nested filters. The value must match a listed property name, such as ‘InputDataConfig`.

Returns:

  • (String)


33053
33054
33055
33056
33057
33058
# File 'lib/aws-sdk-sagemaker/types.rb', line 33053

class NestedFilters < Struct.new(
  :nested_property_name,
  :filters)
  SENSITIVE = []
  include Aws::Structure
end