Class: Aws::Organizations::Types::Child
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::Child
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-organizations/types.rb
Overview
Contains a list of child entities, either OUs or accounts.
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier (ID) of this child entity.
-
#type ⇒ String
The type of this child entity.
Instance Attribute Details
#id ⇒ String
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.
237 238 239 240 241 |
# File 'lib/aws-sdk-organizations/types.rb', line 237 class Child < Struct.new( :id, :type) include Aws::Structure end |
#type ⇒ String
The type of this child entity.
237 238 239 240 241 |
# File 'lib/aws-sdk-organizations/types.rb', line 237 class Child < Struct.new( :id, :type) include Aws::Structure end |