aws_sdk_lexmodelbuilding/client/delete_bot_channel_association.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteBotChannelAssociation`](crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`DeleteBotChannelAssociationOutput`](crate::operation::delete_bot_channel_association::DeleteBotChannelAssociationOutput)
10 /// - On failure, responds with [`SdkError<DeleteBotChannelAssociationError>`](crate::operation::delete_bot_channel_association::DeleteBotChannelAssociationError)
11 pub fn delete_bot_channel_association(
12 &self,
13 ) -> crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder {
14 crate::operation::delete_bot_channel_association::builders::DeleteBotChannelAssociationFluentBuilder::new(self.handle.clone())
15 }
16}