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
sourceimpl 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
.
sourceimpl NestedFilters
impl NestedFilters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NestedFilters
.
Trait Implementations
sourceimpl Clone for NestedFilters
impl Clone for NestedFilters
sourcefn clone(&self) -> NestedFilters
fn clone(&self) -> NestedFilters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NestedFilters
impl Debug for NestedFilters
sourceimpl PartialEq<NestedFilters> for NestedFilters
impl PartialEq<NestedFilters> for NestedFilters
sourcefn eq(&self, other: &NestedFilters) -> bool
fn eq(&self, other: &NestedFilters) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for NestedFilters
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more