aws_sdk_databasemigration/client/describe_account_attributes.rs
// 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 takes no input, just [`send`](crate::operation::describe_account_attributes::builders::DescribeAccountAttributesFluentBuilder::send) it.
/// - On success, responds with [`DescribeAccountAttributesOutput`](crate::operation::describe_account_attributes::DescribeAccountAttributesOutput) with field(s):
/// - [`account_quotas(Option<Vec::<AccountQuota>>)`](crate::operation::describe_account_attributes::DescribeAccountAttributesOutput::account_quotas): <p>Account quota information.</p>
/// - [`unique_account_identifier(Option<String>)`](crate::operation::describe_account_attributes::DescribeAccountAttributesOutput::unique_account_identifier): <p>A unique DMS identifier for an account in a particular Amazon Web Services Region. The value of this identifier has the following format: <code>c99999999999</code>. DMS uses this identifier to name artifacts. For example, DMS uses this identifier to name the default Amazon S3 bucket for storing task assessment reports in a given Amazon Web Services Region. The format of this S3 bucket name is the following: <code>dms-<i>AccountNumber</i>-<i>UniqueAccountIdentifier</i>.</code> Here is an example name for this default S3 bucket: <code>dms-111122223333-c44445555666</code>.</p><note> <p>DMS supports the <code>UniqueAccountIdentifier</code> parameter in versions 3.1.4 and later.</p> </note>
/// - 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())
}
}