#[non_exhaustive]pub struct ListBotAliasReplicasOutput {
pub bot_id: Option<String>,
pub source_region: Option<String>,
pub replica_region: Option<String>,
pub bot_alias_replica_summaries: Option<Vec<BotAliasReplicaSummary>>,
pub next_token: Option<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 created from the source bot alias.
source_region: Option<String>The source region of the replicated bot created from the source bot alias.
replica_region: Option<String>The secondary region of the replicated bot created from the source bot alias.
bot_alias_replica_summaries: Option<Vec<BotAliasReplicaSummary>>The summary information of the replicated bot created from the source bot alias.
next_token: Option<String>The next token for the replicated bots created from the source bot alias.
Implementations§
source§impl ListBotAliasReplicasOutput
impl ListBotAliasReplicasOutput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique bot ID of the replicated bot created from the source bot alias.
sourcepub fn source_region(&self) -> Option<&str>
pub fn source_region(&self) -> Option<&str>
The source region of the replicated bot created from the source bot alias.
sourcepub fn replica_region(&self) -> Option<&str>
pub fn replica_region(&self) -> Option<&str>
The secondary region of the replicated bot created from the source bot alias.
sourcepub fn bot_alias_replica_summaries(&self) -> &[BotAliasReplicaSummary]
pub fn bot_alias_replica_summaries(&self) -> &[BotAliasReplicaSummary]
The summary information of the replicated bot created from the source bot alias.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bot_alias_replica_summaries.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The next token for the replicated bots created from the source bot alias.
source§impl ListBotAliasReplicasOutput
impl ListBotAliasReplicasOutput
sourcepub fn builder() -> ListBotAliasReplicasOutputBuilder
pub fn builder() -> ListBotAliasReplicasOutputBuilder
Creates a new builder-style object to manufacture ListBotAliasReplicasOutput.
Trait Implementations§
source§impl Clone for ListBotAliasReplicasOutput
impl Clone for ListBotAliasReplicasOutput
source§fn clone(&self) -> ListBotAliasReplicasOutput
fn clone(&self) -> ListBotAliasReplicasOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListBotAliasReplicasOutput
impl Debug for ListBotAliasReplicasOutput
source§impl RequestId for ListBotAliasReplicasOutput
impl RequestId for ListBotAliasReplicasOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListBotAliasReplicasOutput
Auto Trait Implementations§
impl Freeze for ListBotAliasReplicasOutput
impl RefUnwindSafe for ListBotAliasReplicasOutput
impl Send for ListBotAliasReplicasOutput
impl Sync for ListBotAliasReplicasOutput
impl Unpin for ListBotAliasReplicasOutput
impl UnwindSafe for ListBotAliasReplicasOutput
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