Class: Aws::Organizations::Types::DescribeOrganizationalUnitRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::DescribeOrganizationalUnitRequest
- Defined in:
- gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#organizational_unit_id ⇒ String
The unique identifier (ID) of the organizational unit that you want details about.
Instance Attribute Details
#organizational_unit_id ⇒ String
The unique identifier (ID) of the organizational unit that you want details about. You can get the ID from the ListOrganizationalUnitsForParent operation.
The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
1699 1700 1701 1702 1703 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 1699 class DescribeOrganizationalUnitRequest < Struct.new( :organizational_unit_id) SENSITIVE = [] include Aws::Structure end |