[][src]Struct rusoto_sagemaker::SearchExpression

pub struct SearchExpression {
    pub filters: Option<Vec<Filter>>,
    pub nested_filters: Option<Vec<NestedFilters>>,
    pub operator: Option<String>,
    pub sub_expressions: Option<Vec<SearchExpression>>,
}

A multi-expression that searches for the specified resource or resources in a search. All resource objects that satisfy the expression's condition are included in the search results. You must specify at least one subexpression, filter, or nested filter. A SearchExpression can contain up to twenty elements.

A SearchExpression contains the following components:

Fields

filters: Option<Vec<Filter>>

A list of filter objects.

nested_filters: Option<Vec<NestedFilters>>

A list of nested filter objects.

operator: Option<String>

A Boolean operator used to evaluate the search expression. If you want every conditional statement in all lists to be satisfied for the entire search expression to be true, specify And. If only a single conditional statement needs to be true for the entire search expression to be true, specify Or. The default value is And.

sub_expressions: Option<Vec<SearchExpression>>

A list of search expression objects.

Trait Implementations

impl PartialEq<SearchExpression> for SearchExpression[src]

impl Default for SearchExpression[src]

impl Clone for SearchExpression[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SearchExpression[src]

impl Serialize for SearchExpression[src]

Auto Trait Implementations

impl Send for SearchExpression

impl Sync for SearchExpression

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self