Struct aws_sdk_lexmodelsv2::operation::list_bot_alias_replicas::builders::ListBotAliasReplicasOutputBuilder
source · #[non_exhaustive]pub struct ListBotAliasReplicasOutputBuilder { /* private fields */ }Expand description
A builder for ListBotAliasReplicasOutput.
Implementations§
source§impl ListBotAliasReplicasOutputBuilder
impl ListBotAliasReplicasOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique bot ID of the replicated bot created from the source bot alias.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique bot ID of the replicated bot created from the source bot alias.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique bot ID of the replicated bot created from the source bot alias.
sourcepub fn source_region(self, input: impl Into<String>) -> Self
pub fn source_region(self, input: impl Into<String>) -> Self
The source region of the replicated bot created from the source bot alias.
sourcepub fn set_source_region(self, input: Option<String>) -> Self
pub fn set_source_region(self, input: Option<String>) -> Self
The source region of the replicated bot created from the source bot alias.
sourcepub fn get_source_region(&self) -> &Option<String>
pub fn get_source_region(&self) -> &Option<String>
The source region of the replicated bot created from the source bot alias.
sourcepub fn replica_region(self, input: impl Into<String>) -> Self
pub fn replica_region(self, input: impl Into<String>) -> Self
The secondary region of the replicated bot created from the source bot alias.
sourcepub fn set_replica_region(self, input: Option<String>) -> Self
pub fn set_replica_region(self, input: Option<String>) -> Self
The secondary region of the replicated bot created from the source bot alias.
sourcepub fn get_replica_region(&self) -> &Option<String>
pub fn get_replica_region(&self) -> &Option<String>
The secondary region of the replicated bot created from the source bot alias.
sourcepub fn bot_alias_replica_summaries(self, input: BotAliasReplicaSummary) -> Self
pub fn bot_alias_replica_summaries(self, input: BotAliasReplicaSummary) -> Self
Appends an item to bot_alias_replica_summaries.
To override the contents of this collection use set_bot_alias_replica_summaries.
The summary information of the replicated bot created from the source bot alias.
sourcepub fn set_bot_alias_replica_summaries(
self,
input: Option<Vec<BotAliasReplicaSummary>>,
) -> Self
pub fn set_bot_alias_replica_summaries( self, input: Option<Vec<BotAliasReplicaSummary>>, ) -> Self
The summary information of the replicated bot created from the source bot alias.
sourcepub fn get_bot_alias_replica_summaries(
&self,
) -> &Option<Vec<BotAliasReplicaSummary>>
pub fn get_bot_alias_replica_summaries( &self, ) -> &Option<Vec<BotAliasReplicaSummary>>
The summary information of the replicated bot created from the source bot alias.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The next token for the replicated bots created from the source bot alias.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The next token for the replicated bots created from the source bot alias.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The next token for the replicated bots created from the source bot alias.
sourcepub fn build(self) -> ListBotAliasReplicasOutput
pub fn build(self) -> ListBotAliasReplicasOutput
Consumes the builder and constructs a ListBotAliasReplicasOutput.
Trait Implementations§
source§impl Clone for ListBotAliasReplicasOutputBuilder
impl Clone for ListBotAliasReplicasOutputBuilder
source§fn clone(&self) -> ListBotAliasReplicasOutputBuilder
fn clone(&self) -> ListBotAliasReplicasOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListBotAliasReplicasOutputBuilder
impl Default for ListBotAliasReplicasOutputBuilder
source§fn default() -> ListBotAliasReplicasOutputBuilder
fn default() -> ListBotAliasReplicasOutputBuilder
source§impl PartialEq for ListBotAliasReplicasOutputBuilder
impl PartialEq for ListBotAliasReplicasOutputBuilder
source§fn eq(&self, other: &ListBotAliasReplicasOutputBuilder) -> bool
fn eq(&self, other: &ListBotAliasReplicasOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListBotAliasReplicasOutputBuilder
Auto Trait Implementations§
impl Freeze for ListBotAliasReplicasOutputBuilder
impl RefUnwindSafe for ListBotAliasReplicasOutputBuilder
impl Send for ListBotAliasReplicasOutputBuilder
impl Sync for ListBotAliasReplicasOutputBuilder
impl Unpin for ListBotAliasReplicasOutputBuilder
impl UnwindSafe for ListBotAliasReplicasOutputBuilder
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