Struct rusoto_organizations::CreateAccountStatus [] [src]

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

Contains the status about a CreateAccount request to create an AWS account in an organization.

Fields

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.

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

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

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.

  • 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.

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

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 an create account request ID string requires "car-" followed by from 8 to 32 lower-case letters or digits.

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

The status of the request.

Trait Implementations

impl Default for CreateAccountStatus
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CreateAccountStatus
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateAccountStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations