Struct aws_sdk_accessanalyzer::model::Criterion [−][src]
#[non_exhaustive]pub struct Criterion {
pub eq: Option<Vec<String>>,
pub neq: Option<Vec<String>>,
pub contains: Option<Vec<String>>,
pub exists: Option<bool>,
}
Expand description
The criteria to use in the filter that defines the archive rule.
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.eq: Option<Vec<String>>
An "equals" operator to match for the filter used to create the rule.
neq: Option<Vec<String>>
A "not equals" operator to match for the filter used to create the rule.
contains: Option<Vec<String>>
A "contains" operator to match for the filter used to create the rule.
exists: Option<bool>
An "exists" operator to match for the filter used to create the rule.
Implementations
An "equals" operator to match for the filter used to create the rule.
A "not equals" operator to match for the filter used to create the rule.
A "contains" operator to match for the filter used to create the rule.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Criterion
impl UnwindSafe for Criterion
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