OrganizationalUnitReference
- class aws_cdk.aws_organizations.OrganizationalUnitReference(*, organizational_unit_arn, organizational_unit_id)
Bases:
object
A reference to a OrganizationalUnit resource.
- Parameters:
organizational_unit_arn (
str
) – The ARN of the OrganizationalUnit resource.organizational_unit_id (
str
) – The Id of the OrganizationalUnit resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_organizations as organizations organizational_unit_reference = organizations.OrganizationalUnitReference( organizational_unit_arn="organizationalUnitArn", organizational_unit_id="organizationalUnitId" )
Attributes
- organizational_unit_arn
The ARN of the OrganizationalUnit resource.
- organizational_unit_id
The Id of the OrganizationalUnit resource.