Struct aws_sdk_sagemaker::model::NestedFilters
source · #[non_exhaustive]pub struct NestedFilters { /* private fields */ }
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"}'
Implementations§
source§impl NestedFilters
impl NestedFilters
sourcepub fn nested_property_name(&self) -> Option<&str>
pub fn nested_property_name(&self) -> Option<&str>
The name of the property to use in the nested filters. The value must match a listed property name, such as InputDataConfig
.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[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
.
source§impl NestedFilters
impl NestedFilters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NestedFilters
.
Trait Implementations§
source§impl Clone for NestedFilters
impl Clone for NestedFilters
source§fn clone(&self) -> NestedFilters
fn clone(&self) -> NestedFilters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NestedFilters
impl Debug for NestedFilters
source§impl PartialEq<NestedFilters> for NestedFilters
impl PartialEq<NestedFilters> for NestedFilters
source§fn eq(&self, other: &NestedFilters) -> bool
fn eq(&self, other: &NestedFilters) -> bool
self
and other
values to be equal, and is used
by ==
.