Struct rusoto_s3::LifecycleRuleAndOperator[][src]

pub struct LifecycleRuleAndOperator {
    pub prefix: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

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.

Fields

All of these tags must exist in the object's tag set in order for the rule to apply.

Trait Implementations

impl Default for LifecycleRuleAndOperator
[src]

Returns the "default value" for a type. Read more

impl Debug for LifecycleRuleAndOperator
[src]

Formats the value using the given formatter. Read more

impl Clone for LifecycleRuleAndOperator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LifecycleRuleAndOperator
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations