1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeAccountAttributes`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`attribute_names(Vec<AccountAttributeName>)`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::attribute_names) / [`set_attribute_names(Option<Vec<AccountAttributeName>>)`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::set_attribute_names): <p>The account attribute names.</p>
    ///   - [`dry_run(bool)`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::set_dry_run): <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
    /// - On success, responds with [`DescribeAccountAttributesOutput`](crate::operation::describe_account_attributes::DescribeAccountAttributesOutput) with field(s):
    ///   - [`account_attributes(Option<Vec<AccountAttribute>>)`](crate::operation::describe_account_attributes::DescribeAccountAttributesOutput::account_attributes): <p>Information about the account attributes.</p>
    /// - On failure, responds with [`SdkError<DescribeAccountAttributesError>`](crate::operation::describe_account_attributes::DescribeAccountAttributesError)
    pub fn describe_account_attributes(&self) -> crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder{
        crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::new(self.handle.clone())
    }
}