Struct rusoto_s3::AnalyticsFilter [−][src]
pub struct AnalyticsFilter {
pub and: Option<AnalyticsAndOperator>,
pub prefix: Option<String>,
pub tag: Option<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.
Fields
and: Option<AnalyticsAndOperator>A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.
prefix: Option<String>The prefix to use when evaluating an analytics filter.
tag: Option<Tag>The tag to use when evaluating an analytics filter.
Trait Implementations
Returns the “default value” for a type. Read more
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