CfnLandingZoneProps

class aws_cdk.aws_controltower.CfnLandingZoneProps(*, manifest, version, remediation_types=None, tags=None)

Bases: object

Properties for defining a CfnLandingZone.

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

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

  • 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.

See:

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

ExampleMetadata:

fixture=_generated

Example:

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

# manifest: Any

cfn_landing_zone_props = controltower.CfnLandingZoneProps(
    manifest=manifest,
    version="version",

    # the properties below are optional
    remediation_types=["remediationTypes"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

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