[−][src]Struct rusoto_organizations::CreateAccountStatus
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.
-
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.
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]
fn eq(&self, other: &CreateAccountStatus) -> bool
[src]
fn ne(&self, other: &CreateAccountStatus) -> bool
[src]
impl Default for CreateAccountStatus
[src]
fn default() -> CreateAccountStatus
[src]
impl Clone for CreateAccountStatus
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self