Class: Aws::Organizations::Types::Parent
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::Parent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-organizations/types.rb
Overview
Contains information about either a root or an organizational unit (OU) that can contain OUs or accounts in an organization.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier (ID) of the parent entity.
-
#type ⇒ String
The type of the parent entity.
Instance Attribute Details
#id ⇒ String
The unique identifier (ID) of the parent entity.
The [regex pattern] for a parent ID string requires one of the following:
-
Root - A string that begins with “r-” followed by from 4 to 32 lowercase letters or digits.
-
**Organizational unit (OU)** - A string that begins with “ou-” followed by from 4 to 32 lowercase letters or digits (the ID of the root that the OU is in). This string is followed by a second “-” dash and from 8 to 32 additional lowercase letters or digits.
3971 3972 3973 3974 3975 3976 |
# File 'lib/aws-sdk-organizations/types.rb', line 3971 class Parent < Struct.new( :id, :type) SENSITIVE = [] include Aws::Structure end |