Struct aws_sdk_s3::model::IntelligentTieringFilter [−][src]
#[non_exhaustive]pub struct IntelligentTieringFilter {
pub prefix: Option<String>,
pub tag: Option<Tag>,
pub and: Option<IntelligentTieringAndOperator>,
}
Expand description
The Filter
is used to identify objects that the S3 Intelligent-Tiering
configuration applies to.
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.prefix: Option<String>
An object key name prefix that identifies the subset of objects to which the rule applies.
Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. For more information, see XML related object key constraints.
tag: Option<Tag>
A container of a key value name pair.
and: Option<IntelligentTieringAndOperator>
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.
Implementations
Creates a new builder-style object to manufacture IntelligentTieringFilter
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 IntelligentTieringFilter
impl Send for IntelligentTieringFilter
impl Sync for IntelligentTieringFilter
impl Unpin for IntelligentTieringFilter
impl UnwindSafe for IntelligentTieringFilter
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