// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateBotRecommendation`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`bot_id(impl Into<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::bot_id) / [`set_bot_id(Option<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::set_bot_id):<br>required: **true**<br><p>The unique identifier of the bot containing the bot recommendation to be updated.</p><br>
/// - [`bot_version(impl Into<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::bot_version) / [`set_bot_version(Option<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::set_bot_version):<br>required: **true**<br><p>The version of the bot containing the bot recommendation to be updated.</p><br>
/// - [`locale_id(impl Into<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::locale_id) / [`set_locale_id(Option<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::set_locale_id):<br>required: **true**<br><p>The identifier of the language and locale of the bot recommendation to update. 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><br>
/// - [`bot_recommendation_id(impl Into<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::bot_recommendation_id) / [`set_bot_recommendation_id(Option<String>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::set_bot_recommendation_id):<br>required: **true**<br><p>The unique identifier of the bot recommendation to be updated.</p><br>
/// - [`encryption_setting(EncryptionSetting)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::encryption_setting) / [`set_encryption_setting(Option<EncryptionSetting>)`](crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::set_encryption_setting):<br>required: **true**<br><p>The object representing the passwords that will be used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.</p><br>
/// - On success, responds with [`UpdateBotRecommendationOutput`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput) with field(s):
/// - [`bot_id(Option<String>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::bot_id): <p>The unique identifier of the bot containing the bot recommendation that has been updated.</p>
/// - [`bot_version(Option<String>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::bot_version): <p>The version of the bot containing the bot recommendation that has been updated.</p>
/// - [`locale_id(Option<String>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::locale_id): <p>The identifier of the language and locale of the bot recommendation to update. 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_status(Option<BotRecommendationStatus>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::bot_recommendation_status): <p>The status of the bot recommendation.</p> <p>If the status is Failed, then the reasons for the failure are listed in the failureReasons field.</p>
/// - [`bot_recommendation_id(Option<String>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::bot_recommendation_id): <p>The unique identifier of the bot recommendation to be updated.</p>
/// - [`creation_date_time(Option<DateTime>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::creation_date_time): <p>A timestamp of the date and time that the bot recommendation was created.</p>
/// - [`last_updated_date_time(Option<DateTime>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::last_updated_date_time): <p>A timestamp of the date and time that the bot recommendation was last updated.</p>
/// - [`transcript_source_setting(Option<TranscriptSourceSetting>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::transcript_source_setting): <p>The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.</p>
/// - [`encryption_setting(Option<EncryptionSetting>)`](crate::operation::update_bot_recommendation::UpdateBotRecommendationOutput::encryption_setting): <p>The object representing the passwords that were used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.</p>
/// - On failure, responds with [`SdkError<UpdateBotRecommendationError>`](crate::operation::update_bot_recommendation::UpdateBotRecommendationError)
pub fn update_bot_recommendation(&self) -> crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder {
crate::operation::update_bot_recommendation::builders::UpdateBotRecommendationFluentBuilder::new(self.handle.clone())
}
}