#[non_exhaustive]pub struct BotVersionReplicaSummaryBuilder { /* private fields */ }Expand description
A builder for BotVersionReplicaSummary.
Implementations§
source§impl BotVersionReplicaSummaryBuilder
impl BotVersionReplicaSummaryBuilder
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The bot version for the summary information for all the version replication statuses.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The bot version for the summary information for all the version replication statuses.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The bot version for the summary information for all the version replication statuses.
sourcepub fn bot_version_replication_status(
self,
input: BotVersionReplicationStatus,
) -> Self
pub fn bot_version_replication_status( self, input: BotVersionReplicationStatus, ) -> Self
The version replication status for all the replicated bots.
sourcepub fn set_bot_version_replication_status(
self,
input: Option<BotVersionReplicationStatus>,
) -> Self
pub fn set_bot_version_replication_status( self, input: Option<BotVersionReplicationStatus>, ) -> Self
The version replication status for all the replicated bots.
sourcepub fn get_bot_version_replication_status(
&self,
) -> &Option<BotVersionReplicationStatus>
pub fn get_bot_version_replication_status( &self, ) -> &Option<BotVersionReplicationStatus>
The version replication status for all the replicated bots.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The creation date and time of the replication status for all the replicated bots.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The creation date and time of the replication status for all the replicated bots.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_creation_date_time(&self) -> &Option<DateTime>
The creation date and time of the replication status for all the replicated bots.
sourcepub fn failure_reasons(self, input: impl Into<String>) -> Self
pub fn failure_reasons(self, input: impl Into<String>) -> Self
Appends an item to failure_reasons.
To override the contents of this collection use set_failure_reasons.
The reasons for replication failure for all the replicated bots.
sourcepub fn set_failure_reasons(self, input: Option<Vec<String>>) -> Self
pub fn set_failure_reasons(self, input: Option<Vec<String>>) -> Self
The reasons for replication failure for all the replicated bots.
sourcepub fn get_failure_reasons(&self) -> &Option<Vec<String>>
pub fn get_failure_reasons(&self) -> &Option<Vec<String>>
The reasons for replication failure for all the replicated bots.
sourcepub fn build(self) -> BotVersionReplicaSummary
pub fn build(self) -> BotVersionReplicaSummary
Consumes the builder and constructs a BotVersionReplicaSummary.
Trait Implementations§
source§impl Clone for BotVersionReplicaSummaryBuilder
impl Clone for BotVersionReplicaSummaryBuilder
source§fn clone(&self) -> BotVersionReplicaSummaryBuilder
fn clone(&self) -> BotVersionReplicaSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BotVersionReplicaSummaryBuilder
impl Default for BotVersionReplicaSummaryBuilder
source§fn default() -> BotVersionReplicaSummaryBuilder
fn default() -> BotVersionReplicaSummaryBuilder
source§impl PartialEq for BotVersionReplicaSummaryBuilder
impl PartialEq for BotVersionReplicaSummaryBuilder
source§fn eq(&self, other: &BotVersionReplicaSummaryBuilder) -> bool
fn eq(&self, other: &BotVersionReplicaSummaryBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BotVersionReplicaSummaryBuilder
Auto Trait Implementations§
impl Freeze for BotVersionReplicaSummaryBuilder
impl RefUnwindSafe for BotVersionReplicaSummaryBuilder
impl Send for BotVersionReplicaSummaryBuilder
impl Sync for BotVersionReplicaSummaryBuilder
impl Unpin for BotVersionReplicaSummaryBuilder
impl UnwindSafe for BotVersionReplicaSummaryBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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