Struct rusoto_organizations::InviteAccountToOrganizationRequest[][src]

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 Default for InviteAccountToOrganizationRequest
[src]

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

impl Debug for InviteAccountToOrganizationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for InviteAccountToOrganizationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InviteAccountToOrganizationRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations