Struct aws_sdk_lexmodelsv2::operation::list_utterance_analytics_data::builders::ListUtteranceAnalyticsDataOutputBuilder
source · #[non_exhaustive]pub struct ListUtteranceAnalyticsDataOutputBuilder { /* private fields */ }Expand description
A builder for ListUtteranceAnalyticsDataOutput.
Implementations§
source§impl ListUtteranceAnalyticsDataOutputBuilder
impl ListUtteranceAnalyticsDataOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot that the utterances belong to.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot that the utterances belong to.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique identifier of the bot that the utterances belong to.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response from the ListUtteranceAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.
Use the returned token in the nextToken parameter of a ListUtteranceAnalyticsData request to return the next page of results. For a complete set of results, call the ListUtteranceAnalyticsData operation until the nextToken returned in the response is null.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response from the ListUtteranceAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.
Use the returned token in the nextToken parameter of a ListUtteranceAnalyticsData request to return the next page of results. For a complete set of results, call the ListUtteranceAnalyticsData operation until the nextToken returned in the response is null.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response from the ListUtteranceAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.
Use the returned token in the nextToken parameter of a ListUtteranceAnalyticsData request to return the next page of results. For a complete set of results, call the ListUtteranceAnalyticsData operation until the nextToken returned in the response is null.
sourcepub fn utterances(self, input: UtteranceSpecification) -> Self
pub fn utterances(self, input: UtteranceSpecification) -> Self
Appends an item to utterances.
To override the contents of this collection use set_utterances.
A list of objects, each of which contains information about an utterance in a user session with your bot.
sourcepub fn set_utterances(self, input: Option<Vec<UtteranceSpecification>>) -> Self
pub fn set_utterances(self, input: Option<Vec<UtteranceSpecification>>) -> Self
A list of objects, each of which contains information about an utterance in a user session with your bot.
sourcepub fn get_utterances(&self) -> &Option<Vec<UtteranceSpecification>>
pub fn get_utterances(&self) -> &Option<Vec<UtteranceSpecification>>
A list of objects, each of which contains information about an utterance in a user session with your bot.
sourcepub fn build(self) -> ListUtteranceAnalyticsDataOutput
pub fn build(self) -> ListUtteranceAnalyticsDataOutput
Consumes the builder and constructs a ListUtteranceAnalyticsDataOutput.
Trait Implementations§
source§impl Clone for ListUtteranceAnalyticsDataOutputBuilder
impl Clone for ListUtteranceAnalyticsDataOutputBuilder
source§fn clone(&self) -> ListUtteranceAnalyticsDataOutputBuilder
fn clone(&self) -> ListUtteranceAnalyticsDataOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListUtteranceAnalyticsDataOutputBuilder
impl Default for ListUtteranceAnalyticsDataOutputBuilder
source§fn default() -> ListUtteranceAnalyticsDataOutputBuilder
fn default() -> ListUtteranceAnalyticsDataOutputBuilder
source§impl PartialEq for ListUtteranceAnalyticsDataOutputBuilder
impl PartialEq for ListUtteranceAnalyticsDataOutputBuilder
source§fn eq(&self, other: &ListUtteranceAnalyticsDataOutputBuilder) -> bool
fn eq(&self, other: &ListUtteranceAnalyticsDataOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListUtteranceAnalyticsDataOutputBuilder
Auto Trait Implementations§
impl Freeze for ListUtteranceAnalyticsDataOutputBuilder
impl RefUnwindSafe for ListUtteranceAnalyticsDataOutputBuilder
impl Send for ListUtteranceAnalyticsDataOutputBuilder
impl Sync for ListUtteranceAnalyticsDataOutputBuilder
impl Unpin for ListUtteranceAnalyticsDataOutputBuilder
impl UnwindSafe for ListUtteranceAnalyticsDataOutputBuilder
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