interface CfnLandingZoneMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ControlTower.Mixins.CfnLandingZoneMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscontroltower/mixins#CfnLandingZoneMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.controltower.mixins.CfnLandingZoneMixinProps |
Python | aws_cdk.mixins_preview.aws_controltower.mixins.CfnLandingZoneMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_controltower » mixins » CfnLandingZoneMixinProps |
Properties for CfnLandingZonePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as controltower_mixins } from '@aws-cdk/mixins-preview/aws-controltower';
declare const manifest: any;
const cfnLandingZoneMixinProps: controltower_mixins.CfnLandingZoneMixinProps = {
manifest: manifest,
remediationTypes: ['remediationTypes'],
tags: [{
key: 'key',
value: 'value',
}],
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| manifest? | any | The landing zone manifest JSON text file that specifies the landing zone configurations. |
| 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. |
| version? | string | The landing zone's current deployed version. |
manifest?
Type:
any
(optional)
The landing zone manifest JSON text file that specifies the landing zone configurations.
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.
version?
Type:
string
(optional)
The landing zone's current deployed version.

.NET
Go
Java
Python
TypeScript