Enum aws_sdk_s3::model::AnalyticsFilter [−][src]
#[non_exhaustive]
pub enum AnalyticsFilter {
And(AnalyticsAndOperator),
Prefix(String),
Tag(Tag),
Unknown,
}
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)
Tuple Fields
A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.
Prefix(String)
Tuple Fields
0: String
The prefix to use when evaluating an analytics filter.
Tag(Tag)
Tuple Fields
0: Tag
The tag to use when evaluating an analytics filter.
Unknown
The Unknown
variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown
variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations
Tries to convert the enum instance into And
, extracting the inner AnalyticsAndOperator
.
Returns Err(&Self)
if it can’t be converted.
Returns true if the enum instance is the Unknown
variant.
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