Struct rusoto_organizations::OrganizationalUnit [] [src]

pub struct OrganizationalUnit {
    pub arn: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
}

Contains details about an organizational unit (OU). An OU is a container of AWS accounts within a root of an organization. Policies that are attached to an OU apply to all accounts contained in that OU and in any child OUs.

Fields

The Amazon Resource Name (ARN) of this OU.

For more information about ARNs in Organizations, see ARN Formats Supported by Organizations in the AWS Organizations User Guide.

The unique identifier (ID) associated with this OU.

The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lower-case letters or digits (the ID of the root that contains the OU) followed by a second "-" dash and from 8 to 32 additional lower-case letters or digits.

The friendly name of this OU.

The regex pattern that is used to validate this parameter is a string of any of the characters in the ASCII character range.

Trait Implementations

impl Default for OrganizationalUnit
[src]

[src]

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

impl Debug for OrganizationalUnit
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for OrganizationalUnit
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations