interface LandingZoneReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ControlTower.LandingZoneReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscontroltower#LandingZoneReference |
Java | software.amazon.awscdk.services.controltower.LandingZoneReference |
Python | aws_cdk.aws_controltower.LandingZoneReference |
TypeScript | aws-cdk-lib » aws_controltower » LandingZoneReference |
A reference to a LandingZone resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_controltower as controltower } from 'aws-cdk-lib';
const landingZoneReference: controltower.LandingZoneReference = {
landingZoneArn: 'landingZoneArn',
landingZoneIdentifier: 'landingZoneIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| landing | string | The ARN of the LandingZone resource. |
| landing | string | The LandingZoneIdentifier of the LandingZone resource. |
landingZoneArn
Type:
string
The ARN of the LandingZone resource.
landingZoneIdentifier
Type:
string
The LandingZoneIdentifier of the LandingZone resource.

.NET
Go
Java
Python
TypeScript