Struct aws_sdk_s3control::types::ReplicaModifications
source · #[non_exhaustive]pub struct ReplicaModifications {
pub status: ReplicaModificationsStatus,
}
Expand description
A filter that you can use to specify whether replica modification sync is enabled. S3 on Outposts replica modification sync can help you keep object metadata synchronized between replicas and source objects. By default, S3 on Outposts replicates metadata from the source objects to the replicas only. When replica modification sync is enabled, S3 on Outposts replicates metadata changes made to the replica copies back to the source object, making the replication bidirectional.
To replicate object metadata modifications on replicas, you can specify this element and set the Status
of this element to Enabled
.
You must enable replica modification sync on the source and destination buckets to replicate replica metadata changes between the source and the replicas.
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.status: ReplicaModificationsStatus
Specifies whether S3 on Outposts replicates modifications to object metadata on replicas.
Implementations§
source§impl ReplicaModifications
impl ReplicaModifications
sourcepub fn status(&self) -> &ReplicaModificationsStatus
pub fn status(&self) -> &ReplicaModificationsStatus
Specifies whether S3 on Outposts replicates modifications to object metadata on replicas.
source§impl ReplicaModifications
impl ReplicaModifications
sourcepub fn builder() -> ReplicaModificationsBuilder
pub fn builder() -> ReplicaModificationsBuilder
Creates a new builder-style object to manufacture ReplicaModifications
.
Trait Implementations§
source§impl Clone for ReplicaModifications
impl Clone for ReplicaModifications
source§fn clone(&self) -> ReplicaModifications
fn clone(&self) -> ReplicaModifications
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReplicaModifications
impl Debug for ReplicaModifications
source§impl PartialEq for ReplicaModifications
impl PartialEq for ReplicaModifications
source§fn eq(&self, other: &ReplicaModifications) -> bool
fn eq(&self, other: &ReplicaModifications) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReplicaModifications
Auto Trait Implementations§
impl Freeze for ReplicaModifications
impl RefUnwindSafe for ReplicaModifications
impl Send for ReplicaModifications
impl Sync for ReplicaModifications
impl Unpin for ReplicaModifications
impl UnwindSafe for ReplicaModifications
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more