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