[][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 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

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.

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

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 an 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 PartialEq<CreateAccountStatus> for CreateAccountStatus[src]

impl Default for CreateAccountStatus[src]

impl Clone for CreateAccountStatus[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateAccountStatus[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self