// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListBotAnalyzerHistory`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`bot_id(impl Into<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::bot_id) / [`set_bot_id(Option<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::set_bot_id):<br>required: **true**<br><p>The unique identifier of the bot.</p><br>
/// - [`locale_id(impl Into<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::locale_id) / [`set_locale_id(Option<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::set_locale_id):<br>required: **false**<br><p>The locale identifier to filter the history. If not specified, returns history for all locales.</p><br>
/// - [`bot_version(impl Into<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::bot_version) / [`set_bot_version(Option<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::set_bot_version):<br>required: **false**<br><p>The bot version to filter the history. If not specified, defaults to <code>DRAFT</code>.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::set_next_token):<br>required: **false**<br><p>If the response from a previous request was truncated, the <code>nextToken</code> value is used to retrieve the next page of history entries.</p><br>
/// - [`max_results(i32)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of history entries to return in the response. The default is 10.</p><br>
/// - On success, responds with [`ListBotAnalyzerHistoryOutput`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput) with field(s):
/// - [`bot_id(Option<String>)`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput::bot_id): <p>The unique identifier of the bot.</p>
/// - [`locale_id(Option<String>)`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput::locale_id): <p>The locale identifier used to filter the history.</p>
/// - [`bot_version(Option<String>)`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput::bot_version): <p>The bot version used to filter the history.</p>
/// - [`bot_analyzer_history_list(Option<Vec::<BotAnalyzerHistorySummary>>)`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput::bot_analyzer_history_list): <p>A list of historical analysis executions, ordered by creation date with the most recent first.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryOutput::next_token): <p>If the response is truncated, this token can be used in a subsequent request to retrieve the next page of history entries.</p>
/// - On failure, responds with [`SdkError<ListBotAnalyzerHistoryError>`](crate::operation::list_bot_analyzer_history::ListBotAnalyzerHistoryError)
pub fn list_bot_analyzer_history(&self) -> crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder {
crate::operation::list_bot_analyzer_history::builders::ListBotAnalyzerHistoryFluentBuilder::new(self.handle.clone())
}
}