aws-sdk-lexmodelbuilding 1.101.0

AWS SDK for Amazon Lex Model Building Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetBotAlias`](crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder::set_name):<br>required: **true**<br><p>The name of the bot alias. The name is case sensitive.</p><br>
    ///   - [`bot_name(impl Into<String>)`](crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder::bot_name) / [`set_bot_name(Option<String>)`](crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder::set_bot_name):<br>required: **true**<br><p>The name of the bot.</p><br>
    /// - On success, responds with [`GetBotAliasOutput`](crate::operation::get_bot_alias::GetBotAliasOutput) with field(s):
    ///   - [`name(Option<String>)`](crate::operation::get_bot_alias::GetBotAliasOutput::name): <p>The name of the bot alias.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_bot_alias::GetBotAliasOutput::description): <p>A description of the bot alias.</p>
    ///   - [`bot_version(Option<String>)`](crate::operation::get_bot_alias::GetBotAliasOutput::bot_version): <p>The version of the bot that the alias points to.</p>
    ///   - [`bot_name(Option<String>)`](crate::operation::get_bot_alias::GetBotAliasOutput::bot_name): <p>The name of the bot that the alias points to.</p>
    ///   - [`last_updated_date(Option<DateTime>)`](crate::operation::get_bot_alias::GetBotAliasOutput::last_updated_date): <p>The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.</p>
    ///   - [`created_date(Option<DateTime>)`](crate::operation::get_bot_alias::GetBotAliasOutput::created_date): <p>The date that the bot alias was created.</p>
    ///   - [`checksum(Option<String>)`](crate::operation::get_bot_alias::GetBotAliasOutput::checksum): <p>Checksum of the bot alias.</p>
    ///   - [`conversation_logs(Option<ConversationLogsResponse>)`](crate::operation::get_bot_alias::GetBotAliasOutput::conversation_logs): <p>The settings that determine how Amazon Lex uses conversation logs for the alias.</p>
    /// - On failure, responds with [`SdkError<GetBotAliasError>`](crate::operation::get_bot_alias::GetBotAliasError)
    #[deprecated(note = "Amazon Lex V1 is deprecated. Use Amazon Lex V2 instead.", since = "2025-09-08")]
    pub fn get_bot_alias(&self) -> crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder {
        crate::operation::get_bot_alias::builders::GetBotAliasFluentBuilder::new(self.handle.clone())
    }
}