aws_sdk_supportapp/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 /// - [`team_id(impl Into<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::team_id) / [`set_team_id(Option<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::set_team_id):<br>required: **true**<br><p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p><br>
7 /// - [`channel_id(impl Into<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::channel_id) / [`set_channel_id(Option<String>)`](crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::set_channel_id):<br>required: **true**<br><p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p><br>
8 /// - On success, responds with [`DeleteSlackChannelConfigurationOutput`](crate::operation::delete_slack_channel_configuration::DeleteSlackChannelConfigurationOutput)
9 /// - On failure, responds with [`SdkError<DeleteSlackChannelConfigurationError>`](crate::operation::delete_slack_channel_configuration::DeleteSlackChannelConfigurationError)
10 pub fn delete_slack_channel_configuration(
11 &self,
12 ) -> crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder {
13 crate::operation::delete_slack_channel_configuration::builders::DeleteSlackChannelConfigurationFluentBuilder::new(self.handle.clone())
14 }
15}