Struct aws_sdk_sagemaker::model::NestedFilters [−][src]
#[non_exhaustive]pub struct NestedFilters {
pub nested_property_name: Option<String>,
pub filters: Option<Vec<Filter>>,
}
Expand description
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"}'
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.nested_property_name: Option<String>
The name of the property to use in the nested filters. The value must match a listed property name,
such as InputDataConfig
.
filters: Option<Vec<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
.
Implementations
The name of the property to use in the nested filters. The value must match a listed property name,
such as InputDataConfig
.
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
.
Creates a new builder-style object to manufacture NestedFilters
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for NestedFilters
impl Send for NestedFilters
impl Sync for NestedFilters
impl Unpin for NestedFilters
impl UnwindSafe for NestedFilters
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more