[][src]Struct rusoto_s3::LifecycleRuleFilter

pub struct LifecycleRuleFilter {
    pub and: Option<LifecycleRuleAndOperator>,
    pub prefix: Option<String>,
    pub tag: Option<Tag>,
}

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.

Fields

and: Option<LifecycleRuleAndOperator>prefix: Option<String>

Prefix identifying one or more objects to which the rule applies.

tag: Option<Tag>

This tag must exist in the object's tag set in order for the rule to apply.

Trait Implementations

impl Clone for LifecycleRuleFilter[src]

impl Debug for LifecycleRuleFilter[src]

impl Default for LifecycleRuleFilter[src]

impl PartialEq<LifecycleRuleFilter> for LifecycleRuleFilter[src]

impl StructuralPartialEq for LifecycleRuleFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.