#[non_exhaustive]pub struct ListIntentsOutputBuilder { /* private fields */ }Expand description
A builder for ListIntentsOutput.
Implementations§
source§impl ListIntentsOutputBuilder
impl ListIntentsOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The identifier of the bot that contains the intent.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The identifier of the bot that contains the intent.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The identifier of the bot that contains the intent.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot that contains the intent.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot that contains the intent.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The version of the bot that contains the intent.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The language and locale of the intents in the list.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The language and locale of the intents in the list.
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The language and locale of the intents in the list.
sourcepub fn intent_summaries(self, input: IntentSummary) -> Self
pub fn intent_summaries(self, input: IntentSummary) -> Self
Appends an item to intent_summaries.
To override the contents of this collection use set_intent_summaries.
Summary information for the intents that meet the filter criteria specified in the request. The length of the list is specified in the maxResults parameter of the request. If there are more intents available, the nextToken field contains a token to get the next page of results.
sourcepub fn set_intent_summaries(self, input: Option<Vec<IntentSummary>>) -> Self
pub fn set_intent_summaries(self, input: Option<Vec<IntentSummary>>) -> Self
Summary information for the intents that meet the filter criteria specified in the request. The length of the list is specified in the maxResults parameter of the request. If there are more intents available, the nextToken field contains a token to get the next page of results.
sourcepub fn get_intent_summaries(&self) -> &Option<Vec<IntentSummary>>
pub fn get_intent_summaries(&self) -> &Option<Vec<IntentSummary>>
Summary information for the intents that meet the filter criteria specified in the request. The length of the list is specified in the maxResults parameter of the request. If there are more intents available, the nextToken field contains a token to get the next page of results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates whether there are more results to return in a response to the ListIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListIntents operation request to get the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that indicates whether there are more results to return in a response to the ListIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListIntents operation request to get the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates whether there are more results to return in a response to the ListIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListIntents operation request to get the next page of results.
sourcepub fn build(self) -> ListIntentsOutput
pub fn build(self) -> ListIntentsOutput
Consumes the builder and constructs a ListIntentsOutput.
Trait Implementations§
source§impl Clone for ListIntentsOutputBuilder
impl Clone for ListIntentsOutputBuilder
source§fn clone(&self) -> ListIntentsOutputBuilder
fn clone(&self) -> ListIntentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListIntentsOutputBuilder
impl Debug for ListIntentsOutputBuilder
source§impl Default for ListIntentsOutputBuilder
impl Default for ListIntentsOutputBuilder
source§fn default() -> ListIntentsOutputBuilder
fn default() -> ListIntentsOutputBuilder
source§impl PartialEq for ListIntentsOutputBuilder
impl PartialEq for ListIntentsOutputBuilder
source§fn eq(&self, other: &ListIntentsOutputBuilder) -> bool
fn eq(&self, other: &ListIntentsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.