[][src]Struct rusoto_dms::DescribeAccountAttributesResponse

pub struct DescribeAccountAttributesResponse {
    pub account_quotas: Option<Vec<AccountQuota>>,
    pub unique_account_identifier: Option<String>,
}

Fields

account_quotas: Option<Vec<AccountQuota>>

Account quota information.

unique_account_identifier: Option<String>

A unique AWS DMS identifier for an account in a particular AWS Region. The value of this identifier has the following format: c99999999999. 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 AWS Region. The format of this S3 bucket name is the following: dms-AccountNumber-UniqueAccountIdentifier. Here is an example name for this default S3 bucket: dms-111122223333-c44445555666.

AWS DMS supports the UniqueAccountIdentifier parameter in versions 3.1.4 and later.

Trait Implementations

impl Clone for DescribeAccountAttributesResponse[src]

impl Debug for DescribeAccountAttributesResponse[src]

impl Default for DescribeAccountAttributesResponse[src]

impl<'de> Deserialize<'de> for DescribeAccountAttributesResponse[src]

impl PartialEq<DescribeAccountAttributesResponse> for DescribeAccountAttributesResponse[src]

impl StructuralPartialEq for DescribeAccountAttributesResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.