[][src]Struct rusoto_organizations::InviteAccountToOrganizationRequest

pub struct InviteAccountToOrganizationRequest {
    pub notes: Option<String>,
    pub target: HandshakeParty,
}

Fields

Additional information that you want to include in the generated email to the recipient account owner.

The identifier (ID) of the AWS account that you want to invite to join your organization. This is a JSON object that contains the following elements:

{ "Type": "ACCOUNT", "Id": "< account id number >" }

If you use the AWS CLI, you can submit this as a single string, similar to the following example:

--target Id=123456789012,Type=ACCOUNT

If you specify "Type": "ACCOUNT", then you must provide the AWS account ID number as the Id. If you specify "Type": "EMAIL", then you must specify the email address that is associated with the account.

--target Id=bill@example.com,Type=EMAIL

Trait Implementations

impl Clone for InviteAccountToOrganizationRequest
[src]

Performs copy-assignment from source. Read more

impl Default for InviteAccountToOrganizationRequest
[src]

impl PartialEq<InviteAccountToOrganizationRequest> for InviteAccountToOrganizationRequest
[src]

impl Debug for InviteAccountToOrganizationRequest
[src]

impl Serialize for InviteAccountToOrganizationRequest
[src]

Auto Trait Implementations

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]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T