Enum aws_sdk_s3::model::LifecycleRuleFilter [−][src]
#[non_exhaustive]
pub enum LifecycleRuleFilter {
And(LifecycleRuleAndOperator),
Prefix(String),
Tag(Tag),
}
Expand description
The Filter
is used to identify objects that a Lifecycle Rule applies to. A
Filter
must have exactly one of Prefix
, Tag
, or
And
specified.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.
Tuple Fields of And
Prefix(String)
Prefix identifying one or more 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.
Tuple Fields of Prefix
0: String
Tag(Tag)
This tag must exist in the object's tag set in order for the rule to apply.
Tuple Fields of Tag
0: Tag
Implementations
Tries to convert the enum instance into its LifecycleRuleFilter
variant.
Returns Err(&Self) if it can't be converted.
Returns true if the enum instance is the LifecycleRuleFilter
variant.
Tries to convert the enum instance into its LifecycleRuleFilter
variant.
Returns Err(&Self) if it can't be converted.
Returns true if the enum instance is the LifecycleRuleFilter
variant.
Tries to convert the enum instance into its LifecycleRuleFilter
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 LifecycleRuleFilter
impl Send for LifecycleRuleFilter
impl Sync for LifecycleRuleFilter
impl Unpin for LifecycleRuleFilter
impl UnwindSafe for LifecycleRuleFilter
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