1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteChannel`](crate::operation::delete_channel::builders::DeleteChannelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::delete_channel::builders::DeleteChannelFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_channel::builders::DeleteChannelFluentBuilder::set_id): The ID of the Channel to delete.
    /// - On success, responds with [`DeleteChannelOutput`](crate::operation::delete_channel::DeleteChannelOutput)
    /// - On failure, responds with [`SdkError<DeleteChannelError>`](crate::operation::delete_channel::DeleteChannelError)
    pub fn delete_channel(
        &self,
    ) -> crate::operation::delete_channel::builders::DeleteChannelFluentBuilder {
        crate::operation::delete_channel::builders::DeleteChannelFluentBuilder::new(
            self.handle.clone(),
        )
    }
}