Struct aws_sdk_s3::model::ReplicationRuleAndOperator
source · [−]#[non_exhaustive]pub struct ReplicationRuleAndOperator {
pub prefix: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
A container for specifying rule filters. The filters determine the subset of objects to which the rule applies. This element is required only if you specify more than one filter.
For example:
-
If you specify both a
Prefix
and aTag
filter, wrap these filters in anAnd
tag. -
If you specify a filter based on multiple tags, wrap the
Tag
elements in anAnd
tag.
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.
An array of tags containing key and value pairs.
Implementations
sourceimpl ReplicationRuleAndOperator
impl ReplicationRuleAndOperator
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReplicationRuleAndOperator
Trait Implementations
sourceimpl Clone for ReplicationRuleAndOperator
impl Clone for ReplicationRuleAndOperator
sourcefn clone(&self) -> ReplicationRuleAndOperator
fn clone(&self) -> ReplicationRuleAndOperator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReplicationRuleAndOperator
impl Debug for ReplicationRuleAndOperator
sourceimpl PartialEq<ReplicationRuleAndOperator> for ReplicationRuleAndOperator
impl PartialEq<ReplicationRuleAndOperator> for ReplicationRuleAndOperator
sourcefn eq(&self, other: &ReplicationRuleAndOperator) -> bool
fn eq(&self, other: &ReplicationRuleAndOperator) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReplicationRuleAndOperator) -> bool
fn ne(&self, other: &ReplicationRuleAndOperator) -> bool
This method tests for !=
.
impl StructuralPartialEq for ReplicationRuleAndOperator
Auto Trait Implementations
impl RefUnwindSafe for ReplicationRuleAndOperator
impl Send for ReplicationRuleAndOperator
impl Sync for ReplicationRuleAndOperator
impl Unpin for ReplicationRuleAndOperator
impl UnwindSafe for ReplicationRuleAndOperator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more