1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteBotChannelAssociation`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::set_name):<br>required: **true**<br><p>The name of the association. The name is case sensitive.</p><br>
    ///   - [`bot_name(impl Into<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::bot_name) / [`set_bot_name(Option<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::set_bot_name):<br>required: **true**<br><p>The name of the Amazon Lex bot.</p><br>
    ///   - [`bot_alias(impl Into<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::bot_alias) / [`set_bot_alias(Option<String>)`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::set_bot_alias):<br>required: **true**<br><p>An alias that points to the specific version of the Amazon Lex bot to which this association is being made.</p><br>
    /// - On success, responds with [`DeleteBotChannelAssociationOutput`](crate::operation::delete_bot_channel_association::DeleteBotChannelAssociationOutput)
    /// - On failure, responds with [`SdkError<DeleteBotChannelAssociationError>`](crate::operation::delete_bot_channel_association::DeleteBotChannelAssociationError)
    pub fn delete_bot_channel_association(
        &self,
    ) -> crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder {
        crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::new(self.handle.clone())
    }
}