Struct rusoto_organizations::Child[][src]

pub struct Child {
    pub id: Option<String>,
    pub type_: Option<String>,
}

Contains a list of child entities, either OUs or accounts.

Fields

The unique identifier (ID) of this child entity.

The regex pattern for a child ID string requires one of the following:

  • Account: a string that consists of exactly 12 digits.

  • Organizational unit (OU): a string that begins with "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 type of this child entity.

Trait Implementations

impl Default for Child
[src]

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

impl Debug for Child
[src]

Formats the value using the given formatter. Read more

impl Clone for Child
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Child
[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

impl Send for Child

impl Sync for Child