// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListRecommendedIntents`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`bot_id(impl Into<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::bot_id) / [`set_bot_id(Option<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_bot_id):<br>required: **true**<br><p>The unique identifier of the bot associated with the recommended intents.</p><br>
/// - [`bot_version(impl Into<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::bot_version) / [`set_bot_version(Option<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_bot_version):<br>required: **true**<br><p>The version of the bot that contains the recommended intents.</p><br>
/// - [`locale_id(impl Into<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::locale_id) / [`set_locale_id(Option<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_locale_id):<br>required: **true**<br><p>The identifier of the language and locale of the recommended intents.</p><br>
/// - [`bot_recommendation_id(impl Into<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::bot_recommendation_id) / [`set_bot_recommendation_id(Option<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_bot_recommendation_id):<br>required: **true**<br><p>The identifier of the bot recommendation that contains the recommended intents.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_next_token):<br>required: **false**<br><p>If the response from the ListRecommendedIntents operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.</p><br>
/// - [`max_results(i32)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.</p><br>
/// - On success, responds with [`ListRecommendedIntentsOutput`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput) with field(s):
/// - [`bot_id(Option<String>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::bot_id): <p>The unique identifier of the bot associated with the recommended intent.</p>
/// - [`bot_version(Option<String>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::bot_version): <p>The version of the bot that contains the intent.</p>
/// - [`locale_id(Option<String>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::locale_id): <p>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 <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html">Supported languages</a>.</p>
/// - [`bot_recommendation_id(Option<String>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::bot_recommendation_id): <p>The identifier of the bot recommendation that contains the recommended intent.</p>
/// - [`summary_list(Option<Vec::<RecommendedIntentSummary>>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::summary_list): <p>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.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_recommended_intents::ListRecommendedIntentsOutput::next_token): <p>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.</p>
/// - On failure, responds with [`SdkError<ListRecommendedIntentsError>`](crate::operation::list_recommended_intents::ListRecommendedIntentsError)
pub fn list_recommended_intents(&self) -> crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder {
crate::operation::list_recommended_intents::builders::ListRecommendedIntentsFluentBuilder::new(self.handle.clone())
}
}