#[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
impl StructuralPartialEq for ListBotAliasReplicasInput
Auto Trait Implementations§
impl Freeze for ListBotAliasReplicasInput
impl RefUnwindSafe for ListBotAliasReplicasInput
impl Send for ListBotAliasReplicasInput
impl Sync for ListBotAliasReplicasInput
impl Unpin for ListBotAliasReplicasInput
impl UnwindSafe for ListBotAliasReplicasInput
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