aws_sdk_chatbot/client/
delete_slack_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 [`DeleteSlackChannelConfiguration`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`chat_configuration_arn(impl Into<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::chat_configuration_arn) / [`set_chat_configuration_arn(Option<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::set_chat_configuration_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the SlackChannelConfiguration to delete.</p><br>
7    /// - On success, responds with [`DeleteSlackChannelConfigurationOutput`](crate::operation::delete_slack_channel_configuration::DeleteSlackChannelConfigurationOutput)
8    /// - On failure, responds with [`SdkError<DeleteSlackChannelConfigurationError>`](crate::operation::delete_slack_channel_configuration::DeleteSlackChannelConfigurationError)
9    pub fn delete_slack_channel_configuration(
10        &self,
11    ) -> crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder {
12        crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::new(self.handle.clone())
13    }
14}