Struct aws_sdk_lexmodelsv2::operation::list_recommended_intents::builders::ListRecommendedIntentsOutputBuilder
source · #[non_exhaustive]pub struct ListRecommendedIntentsOutputBuilder { /* private fields */ }Expand description
A builder for ListRecommendedIntentsOutput.
Implementations§
source§impl ListRecommendedIntentsOutputBuilder
impl ListRecommendedIntentsOutputBuilder
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 associated with the recommended intent.
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 associated with the recommended intent.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique identifier of the bot associated with the recommended 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 identifier of the language and locale of the intents to list. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The identifier of the language and locale of the intents to list. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The identifier of the language and locale of the intents to list. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn bot_recommendation_id(self, input: impl Into<String>) -> Self
pub fn bot_recommendation_id(self, input: impl Into<String>) -> Self
The identifier of the bot recommendation that contains the recommended intent.
sourcepub fn set_bot_recommendation_id(self, input: Option<String>) -> Self
pub fn set_bot_recommendation_id(self, input: Option<String>) -> Self
The identifier of the bot recommendation that contains the recommended intent.
sourcepub fn get_bot_recommendation_id(&self) -> &Option<String>
pub fn get_bot_recommendation_id(&self) -> &Option<String>
The identifier of the bot recommendation that contains the recommended intent.
sourcepub fn summary_list(self, input: RecommendedIntentSummary) -> Self
pub fn summary_list(self, input: RecommendedIntentSummary) -> Self
Appends an item to summary_list.
To override the contents of this collection use set_summary_list.
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_summary_list(
self,
input: Option<Vec<RecommendedIntentSummary>>
) -> Self
pub fn set_summary_list( self, input: Option<Vec<RecommendedIntentSummary>> ) -> 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_summary_list(&self) -> &Option<Vec<RecommendedIntentSummary>>
pub fn get_summary_list(&self) -> &Option<Vec<RecommendedIntentSummary>>
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 ListRecommendedIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListRecommendedIntents 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 ListRecommendedIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListRecommendedIntents 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 ListRecommendedIntents operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListRecommendedIntents operation request to get the next page of results.
sourcepub fn build(self) -> ListRecommendedIntentsOutput
pub fn build(self) -> ListRecommendedIntentsOutput
Consumes the builder and constructs a ListRecommendedIntentsOutput.
Trait Implementations§
source§impl Clone for ListRecommendedIntentsOutputBuilder
impl Clone for ListRecommendedIntentsOutputBuilder
source§fn clone(&self) -> ListRecommendedIntentsOutputBuilder
fn clone(&self) -> ListRecommendedIntentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListRecommendedIntentsOutputBuilder
impl Default for ListRecommendedIntentsOutputBuilder
source§fn default() -> ListRecommendedIntentsOutputBuilder
fn default() -> ListRecommendedIntentsOutputBuilder
source§impl PartialEq for ListRecommendedIntentsOutputBuilder
impl PartialEq for ListRecommendedIntentsOutputBuilder
source§fn eq(&self, other: &ListRecommendedIntentsOutputBuilder) -> bool
fn eq(&self, other: &ListRecommendedIntentsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.