[−][src]Struct rusoto_sagemaker::NestedFilters
Defines a list of NestedFilters
objects. To satisfy the conditions specified in the NestedFilters
call, a resource must satisfy the conditions of all of the filters.
For example, you could define a NestedFilters
using the training job's InputDataConfig
property to filter on Channel
objects.
A NestedFilters
object contains multiple filters. For example, to find all training jobs whose name contains train
and that have cat/data
in their S3Uri
(specified in InputDataConfig
), you need to create a NestedFilters
object that specifies the InputDataConfig
property with the following Filter
objects:
-
'{Name:"InputDataConfig.ChannelName", "Operator":"EQUALS", "Value":"train"}',
-
'{Name:"InputDataConfig.DataSource.S3DataSource.S3Uri", "Operator":"CONTAINS", "Value":"cat/data"}'
Fields
filters: 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
.
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
.
Trait Implementations
impl PartialEq<NestedFilters> for NestedFilters
[src]
fn eq(&self, other: &NestedFilters) -> bool
[src]
fn ne(&self, other: &NestedFilters) -> bool
[src]
impl Default for NestedFilters
[src]
fn default() -> NestedFilters
[src]
impl Clone for NestedFilters
[src]
fn clone(&self) -> NestedFilters
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for NestedFilters
[src]
impl Serialize for NestedFilters
[src]
Auto Trait Implementations
impl Send for NestedFilters
impl Sync for NestedFilters
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self