interface AccountReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Organizations.AccountReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsorganizations#AccountReference |
Java | software.amazon.awscdk.interfaces.organizations.AccountReference |
Python | aws_cdk.interfaces.aws_organizations.AccountReference |
TypeScript | aws-cdk-lib » interfaces » aws_organizations » AccountReference |
A reference to a Account 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 accountReference: interfaces_organizations.AccountReference = {
accountArn: 'accountArn',
accountId: 'accountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The ARN of the Account resource. |
| account | string | The AccountId of the Account resource. |
accountArn
Type:
string
The ARN of the Account resource.
accountId
Type:
string
The AccountId of the Account resource.

.NET
Go
Java
Python
TypeScript