Struct aws_sdk_connect::operation::list_bots::builders::ListBotsOutputBuilder
source · #[non_exhaustive]pub struct ListBotsOutputBuilder { /* private fields */ }
Expand description
A builder for ListBotsOutput
.
Implementations§
source§impl ListBotsOutputBuilder
impl ListBotsOutputBuilder
sourcepub fn lex_bots(self, input: LexBotConfig) -> Self
pub fn lex_bots(self, input: LexBotConfig) -> Self
Appends an item to lex_bots
.
To override the contents of this collection use set_lex_bots
.
The names and Amazon Web Services Regions of the Amazon Lex or Amazon Lex V2 bots associated with the specified instance.
sourcepub fn set_lex_bots(self, input: Option<Vec<LexBotConfig>>) -> Self
pub fn set_lex_bots(self, input: Option<Vec<LexBotConfig>>) -> Self
The names and Amazon Web Services Regions of the Amazon Lex or Amazon Lex V2 bots associated with the specified instance.
sourcepub fn get_lex_bots(&self) -> &Option<Vec<LexBotConfig>>
pub fn get_lex_bots(&self) -> &Option<Vec<LexBotConfig>>
The names and Amazon Web Services Regions of the Amazon Lex or Amazon Lex V2 bots associated with the specified instance.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are additional results, this is the token for the next set of results.
sourcepub fn build(self) -> ListBotsOutput
pub fn build(self) -> ListBotsOutput
Consumes the builder and constructs a ListBotsOutput
.
Trait Implementations§
source§impl Clone for ListBotsOutputBuilder
impl Clone for ListBotsOutputBuilder
source§fn clone(&self) -> ListBotsOutputBuilder
fn clone(&self) -> ListBotsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListBotsOutputBuilder
impl Debug for ListBotsOutputBuilder
source§impl Default for ListBotsOutputBuilder
impl Default for ListBotsOutputBuilder
source§fn default() -> ListBotsOutputBuilder
fn default() -> ListBotsOutputBuilder
source§impl PartialEq for ListBotsOutputBuilder
impl PartialEq for ListBotsOutputBuilder
source§fn eq(&self, other: &ListBotsOutputBuilder) -> bool
fn eq(&self, other: &ListBotsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListBotsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListBotsOutputBuilder
impl RefUnwindSafe for ListBotsOutputBuilder
impl Send for ListBotsOutputBuilder
impl Sync for ListBotsOutputBuilder
impl Unpin for ListBotsOutputBuilder
impl UnwindSafe for ListBotsOutputBuilder
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