organizations_describe_organizational_unit: Retrieves information about an organizational unit (OU)
Description
Retrieves information about an organizational unit (OU).
This operation can be called only from the organization's management
account or by a member account that is a delegated administrator for an
AWS service.
list(
OrganizationalUnit = list(
Id = "string",
Arn = "string",
Name = "string"
)
)
Arguments
OrganizationalUnitId
[required] The unique identifier (ID) of the organizational unit that you want
details about. You can get the ID from the
list_organizational_units_for_parent
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.
if (FALSE) {
# The following example shows how to request details about an OU:/n/nsvc$describe_organizational_unit(
OrganizationalUnitId = "ou-examplerootid111-exampleouid111")
}