1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetAccount`](crate::operation::get_account::builders::GetAccountFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::get_account::builders::GetAccountFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::get_account::builders::GetAccountFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Chime account ID.</p><br>
    /// - On success, responds with [`GetAccountOutput`](crate::operation::get_account::GetAccountOutput) with field(s):
    ///   - [`account(Option<Account>)`](crate::operation::get_account::GetAccountOutput::account): <p>The Amazon Chime account details.</p>
    /// - On failure, responds with [`SdkError<GetAccountError>`](crate::operation::get_account::GetAccountError)
    pub fn get_account(&self) -> crate::operation::get_account::builders::GetAccountFluentBuilder {
        crate::operation::get_account::builders::GetAccountFluentBuilder::new(self.handle.clone())
    }
}