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

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

impl Send for CreateAccountStatus

impl Sync for CreateAccountStatus

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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