Struct aws_sdk_sagemaker::model::SearchExpression [−][src]
#[non_exhaustive]pub struct SearchExpression {
pub filters: Option<Vec<Filter>>,
pub nested_filters: Option<Vec<NestedFilters>>,
pub sub_expressions: Option<Vec<SearchExpression>>,
pub operator: Option<BooleanOperator>,
}
Expand description
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:
-
A list of
Filter
objects. Each filter defines a simple Boolean expression comprised of a resource property name, Boolean operator, and value. -
A list of
NestedFilter
objects. Each nested filter defines a list of Boolean expressions using a list of resource properties. A nested filter is satisfied if a single object in the list satisfies all Boolean expressions. -
A list of
SearchExpression
objects. A search expression object can be nested in a list of search expression objects. -
A Boolean operator:
And
orOr
.
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.filters: Option<Vec<Filter>>
A list of filter objects.
nested_filters: Option<Vec<NestedFilters>>
A list of nested filter objects.
sub_expressions: Option<Vec<SearchExpression>>
A list of search expression objects.
operator: Option<BooleanOperator>
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
.
Implementations
A list of nested filter objects.
A list of search expression objects.
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
.
Creates a new builder-style object to manufacture SearchExpression
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 SearchExpression
impl Send for SearchExpression
impl Sync for SearchExpression
impl Unpin for SearchExpression
impl UnwindSafe for SearchExpression
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