[][src]Struct rusoto_organizations::CreateAccountStatus

pub struct CreateAccountStatus {
    pub account_id: Option<String>,
    pub account_name: Option<String>,
    pub completed_timestamp: Option<f64>,
    pub failure_reason: Option<String>,
    pub gov_cloud_account_id: Option<String>,
    pub id: Option<String>,
    pub requested_timestamp: Option<f64>,
    pub state: Option<String>,
}

Contains the status about a CreateAccount or CreateGovCloudAccount request to create an AWS account or an AWS GovCloud (US) account in an organization.

Fields

account_id: Option<String>

If the account was created successfully, the unique identifier (ID) of the new account.

The regex pattern for an account ID string requires exactly 12 digits.

account_name: Option<String>

The account name given to the account when it was created.

completed_timestamp: Option<f64>

The date and time that the account was created and the request completed.

failure_reason: Option<String>

If the request failed, a description of the reason for the failure.

  • ACCOUNTLIMITEXCEEDED: The account could not be created because you have reached the limit on the number of accounts in your organization.

  • EMAILALREADYEXISTS: The account could not be created because another AWS account with that email address already exists.

  • GOVCLOUDACCOUNTALREADYEXISTS: The account in the AWS GovCloud (US) Region could not be created because this Region already includes an account with that email address.

  • INVALIDADDRESS: The account could not be created because the address you provided is not valid.

  • INVALIDEMAIL: The account could not be created because the email address you provided is not valid.

  • INTERNALFAILURE: The account could not be created because of an internal failure. Try again later. If the problem persists, contact Customer Support.

gov_cloud_account_id: Option<String>

If the account was created successfully, the unique identifier (ID) of the new account in the AWS GovCloud (US) Region.

id: Option<String>

The unique identifier (ID) that references this request. You get this value from the response of the initial CreateAccount request to create the account.

The regex pattern for a create account request ID string requires "car-" followed by from 8 to 32 lower-case letters or digits.

requested_timestamp: Option<f64>

The date and time that the request was made for the account creation.

state: Option<String>

The status of the request.

Trait Implementations

impl Clone for CreateAccountStatus[src]

impl Debug for CreateAccountStatus[src]

impl Default for CreateAccountStatus[src]

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

impl PartialEq<CreateAccountStatus> for CreateAccountStatus[src]

impl StructuralPartialEq for CreateAccountStatus[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.