#[non_exhaustive]pub struct ReplicationStatusSummaryBuilder { /* private fields */ }Expand description
A builder for ReplicationStatusSummary.
Implementations§
source§impl ReplicationStatusSummaryBuilder
impl ReplicationStatusSummaryBuilder
sourcepub fn region(self, input: impl Into<String>) -> Self
pub fn region(self, input: impl Into<String>) -> Self
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 set_region(self, input: Option<String>) -> Self
pub fn set_region(self, input: Option<String>) -> Self
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 get_region(&self) -> &Option<String>
pub fn get_region(&self) -> &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.
sourcepub fn replication_status(self, input: InstanceReplicationStatus) -> Self
pub fn replication_status(self, input: InstanceReplicationStatus) -> Self
The state of the replication.
sourcepub fn set_replication_status(
self,
input: Option<InstanceReplicationStatus>,
) -> Self
pub fn set_replication_status( self, input: Option<InstanceReplicationStatus>, ) -> Self
The state of the replication.
sourcepub fn get_replication_status(&self) -> &Option<InstanceReplicationStatus>
pub fn get_replication_status(&self) -> &Option<InstanceReplicationStatus>
The state of the replication.
sourcepub fn replication_status_reason(self, input: impl Into<String>) -> Self
pub fn replication_status_reason(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_replication_status_reason(self, input: Option<String>) -> Self
pub fn set_replication_status_reason(self, input: Option<String>) -> Self
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.
sourcepub fn get_replication_status_reason(&self) -> &Option<String>
pub fn get_replication_status_reason(&self) -> &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.
sourcepub fn build(self) -> ReplicationStatusSummary
pub fn build(self) -> ReplicationStatusSummary
Consumes the builder and constructs a ReplicationStatusSummary.
Trait Implementations§
source§impl Clone for ReplicationStatusSummaryBuilder
impl Clone for ReplicationStatusSummaryBuilder
source§fn clone(&self) -> ReplicationStatusSummaryBuilder
fn clone(&self) -> ReplicationStatusSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ReplicationStatusSummaryBuilder
impl Default for ReplicationStatusSummaryBuilder
source§fn default() -> ReplicationStatusSummaryBuilder
fn default() -> ReplicationStatusSummaryBuilder
source§impl PartialEq for ReplicationStatusSummaryBuilder
impl PartialEq for ReplicationStatusSummaryBuilder
source§fn eq(&self, other: &ReplicationStatusSummaryBuilder) -> bool
fn eq(&self, other: &ReplicationStatusSummaryBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReplicationStatusSummaryBuilder
Auto Trait Implementations§
impl Freeze for ReplicationStatusSummaryBuilder
impl RefUnwindSafe for ReplicationStatusSummaryBuilder
impl Send for ReplicationStatusSummaryBuilder
impl Sync for ReplicationStatusSummaryBuilder
impl Unpin for ReplicationStatusSummaryBuilder
impl UnwindSafe for ReplicationStatusSummaryBuilder
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