Struct aws_sdk_s3::model::IntelligentTieringFilter
source · #[non_exhaustive]pub struct IntelligentTieringFilter { /* private fields */ }
Expand description
The Filter
is used to identify objects that the S3 Intelligent-Tiering configuration applies to.
Implementations§
source§impl IntelligentTieringFilter
impl IntelligentTieringFilter
sourcepub fn prefix(&self) -> Option<&str>
pub fn prefix(&self) -> Option<&str>
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.
sourcepub fn and(&self) -> Option<&IntelligentTieringAndOperator>
pub fn and(&self) -> 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.
source§impl IntelligentTieringFilter
impl IntelligentTieringFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture IntelligentTieringFilter
.
Trait Implementations§
source§impl Clone for IntelligentTieringFilter
impl Clone for IntelligentTieringFilter
source§fn clone(&self) -> IntelligentTieringFilter
fn clone(&self) -> IntelligentTieringFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IntelligentTieringFilter
impl Debug for IntelligentTieringFilter
source§impl PartialEq<IntelligentTieringFilter> for IntelligentTieringFilter
impl PartialEq<IntelligentTieringFilter> for IntelligentTieringFilter
source§fn eq(&self, other: &IntelligentTieringFilter) -> bool
fn eq(&self, other: &IntelligentTieringFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.