interface OrganizationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Organizations.OrganizationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsorganizations#OrganizationReference |
Java | software.amazon.awscdk.interfaces.organizations.OrganizationReference |
Python | aws_cdk.interfaces.aws_organizations.OrganizationReference |
TypeScript | aws-cdk-lib » interfaces » aws_organizations » OrganizationReference |
A reference to a Organization 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_organizations } from 'aws-cdk-lib/interfaces';
const organizationReference: interfaces_organizations.OrganizationReference = {
organizationArn: 'organizationArn',
organizationId: 'organizationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| organization | string | The ARN of the Organization resource. |
| organization | string | The Id of the Organization resource. |
organizationArn
Type:
string
The ARN of the Organization resource.
organizationId
Type:
string
The Id of the Organization resource.

.NET
Go
Java
Python
TypeScript