#[non_exhaustive]pub struct DescribeBotReplicaOutput {
pub bot_id: Option<String>,
pub replica_region: Option<String>,
pub source_region: Option<String>,
pub creation_date_time: Option<DateTime>,
pub bot_replica_status: Option<BotReplicaStatus>,
pub failure_reasons: Option<Vec<String>>,
/* private fields */
}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.bot_id: Option<String>The unique bot ID of the replicated bot being monitored.
replica_region: Option<String>The region of the replicated bot being monitored.
source_region: Option<String>The source region of the replicated bot being monitored.
creation_date_time: Option<DateTime>The creation date and time of the replicated bot being monitored.
bot_replica_status: Option<BotReplicaStatus>The operational status of the replicated bot being monitored.
failure_reasons: Option<Vec<String>>The failure reasons the bot being monitored failed to replicate.
Implementations§
source§impl DescribeBotReplicaOutput
impl DescribeBotReplicaOutput
sourcepub fn replica_region(&self) -> Option<&str>
pub fn replica_region(&self) -> Option<&str>
The region of the replicated bot being monitored.
sourcepub fn source_region(&self) -> Option<&str>
pub fn source_region(&self) -> Option<&str>
The source region of the replicated bot being monitored.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The creation date and time of the replicated bot being monitored.
sourcepub fn bot_replica_status(&self) -> Option<&BotReplicaStatus>
pub fn bot_replica_status(&self) -> Option<&BotReplicaStatus>
The operational status of the replicated bot being monitored.
sourcepub fn failure_reasons(&self) -> &[String]
pub fn failure_reasons(&self) -> &[String]
The failure reasons the bot being monitored failed to replicate.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .failure_reasons.is_none().
source§impl DescribeBotReplicaOutput
impl DescribeBotReplicaOutput
sourcepub fn builder() -> DescribeBotReplicaOutputBuilder
pub fn builder() -> DescribeBotReplicaOutputBuilder
Creates a new builder-style object to manufacture DescribeBotReplicaOutput.
Trait Implementations§
source§impl Clone for DescribeBotReplicaOutput
impl Clone for DescribeBotReplicaOutput
source§fn clone(&self) -> DescribeBotReplicaOutput
fn clone(&self) -> DescribeBotReplicaOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeBotReplicaOutput
impl Debug for DescribeBotReplicaOutput
source§impl PartialEq for DescribeBotReplicaOutput
impl PartialEq for DescribeBotReplicaOutput
source§fn eq(&self, other: &DescribeBotReplicaOutput) -> bool
fn eq(&self, other: &DescribeBotReplicaOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeBotReplicaOutput
impl RequestId for DescribeBotReplicaOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.