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 [`DeleteAccount`](crate::operation::delete_account::builders::DeleteAccountFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::delete_account::builders::DeleteAccountFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::delete_account::builders::DeleteAccountFluentBuilder::set_account_id): <p>The Amazon Chime account ID.</p>
    /// - On success, responds with [`DeleteAccountOutput`](crate::operation::delete_account::DeleteAccountOutput)
    /// - On failure, responds with [`SdkError<DeleteAccountError>`](crate::operation::delete_account::DeleteAccountError)
    pub fn delete_account(
        &self,
    ) -> crate::operation::delete_account::builders::DeleteAccountFluentBuilder {
        crate::operation::delete_account::builders::DeleteAccountFluentBuilder::new(
            self.handle.clone(),
        )
    }
}