CfnLandingZoneMixinProps

class aws_cdk.mixins_preview.aws_controltower.mixins.CfnLandingZoneMixinProps(*, manifest=None, remediation_types=None, tags=None, version=None)

Bases: object

Properties for CfnLandingZonePropsMixin.

Parameters:
  • manifest (Any) – The landing zone manifest JSON text file that specifies the landing zone configurations.

  • remediation_types (Optional[Sequence[str]]) – The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to be applied to the landing zone.

  • version (Optional[str]) – The landing zone’s current deployed version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-landingzone.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_controltower import mixins as controltower_mixins

# manifest: Any

cfn_landing_zone_mixin_props = controltower_mixins.CfnLandingZoneMixinProps(
    manifest=manifest,
    remediation_types=["remediationTypes"],
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    version="version"
)

Attributes

manifest

The landing zone manifest JSON text file that specifies the landing zone configurations.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-landingzone.html#cfn-controltower-landingzone-manifest

remediation_types

The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-landingzone.html#cfn-controltower-landingzone-remediationtypes

tags

Tags to be applied to the landing zone.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-landingzone.html#cfn-controltower-landingzone-tags

version

The landing zone’s current deployed version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-landingzone.html#cfn-controltower-landingzone-version