Enum aws_sdk_s3::model::AnalyticsFilter [−][src]
#[non_exhaustive]
pub enum AnalyticsFilter {
And(AnalyticsAndOperator),
Prefix(String),
Tag(Tag),
}
Expand description
The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
And(AnalyticsAndOperator)
A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.
Tuple Fields of And
Prefix(String)
The prefix to use when evaluating an analytics filter.
Tuple Fields of Prefix
0: String
Tag(Tag)
The tag to use when evaluating an analytics filter.
Tuple Fields of Tag
0: Tag
Implementations
Tries to convert the enum instance into its AnalyticsFilter
variant.
Returns Err(&Self) if it can't be converted.
Tries to convert the enum instance into its AnalyticsFilter
variant.
Returns Err(&Self) if it can't be converted.
Returns true if the enum instance is the AnalyticsFilter
variant.
Tries to convert the enum instance into its AnalyticsFilter
variant.
Returns Err(&Self) if it can't be converted.
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 AnalyticsFilter
impl Send for AnalyticsFilter
impl Sync for AnalyticsFilter
impl Unpin for AnalyticsFilter
impl UnwindSafe for AnalyticsFilter
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