aws_sdk_chatbot/client/
delete_microsoft_teams_channel_configuration.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 [`DeleteMicrosoftTeamsChannelConfiguration`](crate::operation::delete_microsoft_teams_channel_configuration::builders::DeleteMicrosoftTeamsChannelConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`chat_configuration_arn(impl Into<String>)`](crate::operation::delete_microsoft_teams_channel_configuration::builders::DeleteMicrosoftTeamsChannelConfigurationFluentBuilder::chat_configuration_arn) / [`set_chat_configuration_arn(Option<String>)`](crate::operation::delete_microsoft_teams_channel_configuration::builders::DeleteMicrosoftTeamsChannelConfigurationFluentBuilder::set_chat_configuration_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the MicrosoftTeamsChannelConfiguration associated with the user identity to delete.</p><br>
7    /// - On success, responds with [`DeleteMicrosoftTeamsChannelConfigurationOutput`](crate::operation::delete_microsoft_teams_channel_configuration::DeleteMicrosoftTeamsChannelConfigurationOutput)
8    /// - On failure, responds with [`SdkError<DeleteMicrosoftTeamsChannelConfigurationError>`](crate::operation::delete_microsoft_teams_channel_configuration::DeleteMicrosoftTeamsChannelConfigurationError)
9    pub fn delete_microsoft_teams_channel_configuration(
10        &self,
11    ) -> crate::operation::delete_microsoft_teams_channel_configuration::builders::DeleteMicrosoftTeamsChannelConfigurationFluentBuilder {
12        crate::operation::delete_microsoft_teams_channel_configuration::builders::DeleteMicrosoftTeamsChannelConfigurationFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}