interface CfnLandingZoneProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ControlTower.CfnLandingZoneProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscontroltower#CfnLandingZoneProps |
Java | software.amazon.awscdk.services.controltower.CfnLandingZoneProps |
Python | aws_cdk.aws_controltower.CfnLandingZoneProps |
TypeScript | aws-cdk-lib » aws_controltower » CfnLandingZoneProps |
Properties for defining a CfnLandingZone.
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';
declare const manifest: any;
const cfnLandingZoneProps: controltower.CfnLandingZoneProps = {
manifest: manifest,
version: 'version',
// the properties below are optional
remediationTypes: ['remediationTypes'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| manifest | any | The landing zone manifest JSON text file that specifies the landing zone configurations. |
| version | string | The landing zone's current deployed version. |
| remediation | string[] | The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement. |
| tags? | Cfn[] | Tags to be applied to the landing zone. |
manifest
Type:
any
The landing zone manifest JSON text file that specifies the landing zone configurations.
version
Type:
string
The landing zone's current deployed version.
remediationTypes?
Type:
string[]
(optional)
The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.
tags?
Type:
Cfn[]
(optional)
Tags to be applied to the landing zone.

.NET
Go
Java
Python
TypeScript