interface OrganizationalUnitReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Organizations.OrganizationalUnitReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsorganizations#OrganizationalUnitReference |
Java | software.amazon.awscdk.interfaces.organizations.OrganizationalUnitReference |
Python | aws_cdk.interfaces.aws_organizations.OrganizationalUnitReference |
TypeScript | aws-cdk-lib » interfaces » aws_organizations » OrganizationalUnitReference |
A reference to a OrganizationalUnit resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_organizations as interfaces_aws_organizations } from 'aws-cdk-lib/interfaces';
const organizationalUnitReference: interfaces_aws_organizations.OrganizationalUnitReference = {
organizationalUnitArn: 'organizationalUnitArn',
organizationalUnitId: 'organizationalUnitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| organizational | string | The ARN of the OrganizationalUnit resource. |
| organizational | string | The Id of the OrganizationalUnit resource. |
organizationalUnitArn
Type:
string
The ARN of the OrganizationalUnit resource.
organizationalUnitId
Type:
string
The Id of the OrganizationalUnit resource.

.NET
Go
Java
Python
TypeScript