OrganizationReference
- class aws_cdk.aws_organizations.OrganizationReference(*, organization_arn, organization_id)
Bases:
object
A reference to a Organization resource.
- Parameters:
organization_arn (
str
) – The ARN of the Organization resource.organization_id (
str
) – The Id of the Organization 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 organization_reference = organizations.OrganizationReference( organization_arn="organizationArn", organization_id="organizationId" )
Attributes
- organization_arn
The ARN of the Organization resource.
- organization_id
The Id of the Organization resource.