aws_sdk_supportapp/client/
delete_slack_channel_configuration.rs

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