1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteChannelModerator`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`channel_arn(impl Into<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::channel_arn) / [`set_channel_arn(Option<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::set_channel_arn): <p>The ARN of the channel.</p>
    ///   - [`channel_moderator_arn(impl Into<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::channel_moderator_arn) / [`set_channel_moderator_arn(Option<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::set_channel_moderator_arn): <p>The ARN of the moderator being deleted.</p>
    ///   - [`chime_bearer(impl Into<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::chime_bearer) / [`set_chime_bearer(Option<String>)`](crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::set_chime_bearer): <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
    /// - On success, responds with [`DeleteChannelModeratorOutput`](crate::operation::delete_channel_moderator::DeleteChannelModeratorOutput)
    /// - On failure, responds with [`SdkError<DeleteChannelModeratorError>`](crate::operation::delete_channel_moderator::DeleteChannelModeratorError)
    pub fn delete_channel_moderator(
        &self,
    ) -> crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder
    {
        crate::operation::delete_channel_moderator::builders::DeleteChannelModeratorFluentBuilder::new(self.handle.clone())
    }
}