Struct aws_sdk_connect::types::ReplicationStatusSummary
source · #[non_exhaustive]pub struct ReplicationStatusSummary {
pub region: Option<String>,
pub replication_status: Option<InstanceReplicationStatus>,
pub replication_status_reason: Option<String>,
}Expand description
Status information about the replication process, where you use the ReplicateInstance API to create a replica of your Amazon Connect instance in another Amazon Web Services Region. For more information, see Set up Amazon Connect Global Resiliency in the Amazon Connect Administrator Guide.
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.region: Option<String>The Amazon Web Services Region. This can be either the source or the replica Region, depending where it appears in the summary list.
replication_status: Option<InstanceReplicationStatus>The state of the replication.
replication_status_reason: Option<String>A description of the replication status. Use this information to resolve any issues that are preventing the successful replication of your Amazon Connect instance to another Region.
Implementations§
source§impl ReplicationStatusSummary
impl ReplicationStatusSummary
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region. This can be either the source or the replica Region, depending where it appears in the summary list.
sourcepub fn replication_status(&self) -> Option<&InstanceReplicationStatus>
pub fn replication_status(&self) -> Option<&InstanceReplicationStatus>
The state of the replication.
sourcepub fn replication_status_reason(&self) -> Option<&str>
pub fn replication_status_reason(&self) -> Option<&str>
A description of the replication status. Use this information to resolve any issues that are preventing the successful replication of your Amazon Connect instance to another Region.
source§impl ReplicationStatusSummary
impl ReplicationStatusSummary
sourcepub fn builder() -> ReplicationStatusSummaryBuilder
pub fn builder() -> ReplicationStatusSummaryBuilder
Creates a new builder-style object to manufacture ReplicationStatusSummary.
Trait Implementations§
source§impl Clone for ReplicationStatusSummary
impl Clone for ReplicationStatusSummary
source§fn clone(&self) -> ReplicationStatusSummary
fn clone(&self) -> ReplicationStatusSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReplicationStatusSummary
impl Debug for ReplicationStatusSummary
source§impl PartialEq for ReplicationStatusSummary
impl PartialEq for ReplicationStatusSummary
impl StructuralPartialEq for ReplicationStatusSummary
Auto Trait Implementations§
impl Freeze for ReplicationStatusSummary
impl RefUnwindSafe for ReplicationStatusSummary
impl Send for ReplicationStatusSummary
impl Sync for ReplicationStatusSummary
impl Unpin for ReplicationStatusSummary
impl UnwindSafe for ReplicationStatusSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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