#[non_exhaustive]pub struct ListBotAliasReplicasInput {
pub bot_id: Option<String>,
pub replica_region: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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 request for the unique bot ID of the replicated bot created from the source bot alias.
replica_region: Option<String>The request for the secondary region of the replicated bot created from the source bot alias.
max_results: Option<i32>The request for maximum results to list the replicated bots created from the source bot alias.
next_token: Option<String>The request for the next token for the replicated bot created from the source bot alias.
Implementations§
source§impl ListBotAliasReplicasInput
impl ListBotAliasReplicasInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The request for the unique bot ID 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 request for the secondary region of the replicated bot created from the source bot alias.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The request for maximum results to list the replicated bots created from the source bot alias.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The request for the next token for the replicated bot created from the source bot alias.
source§impl ListBotAliasReplicasInput
impl ListBotAliasReplicasInput
sourcepub fn builder() -> ListBotAliasReplicasInputBuilder
pub fn builder() -> ListBotAliasReplicasInputBuilder
Creates a new builder-style object to manufacture ListBotAliasReplicasInput.
Trait Implementations§
source§impl Clone for ListBotAliasReplicasInput
impl Clone for ListBotAliasReplicasInput
source§fn clone(&self) -> ListBotAliasReplicasInput
fn clone(&self) -> ListBotAliasReplicasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListBotAliasReplicasInput
impl Debug for ListBotAliasReplicasInput
source§impl PartialEq for ListBotAliasReplicasInput
impl PartialEq for ListBotAliasReplicasInput
source§fn eq(&self, other: &ListBotAliasReplicasInput) -> bool
fn eq(&self, other: &ListBotAliasReplicasInput) -> bool
self and other values to be equal, and is used
by ==.