CfnLandingZoneProps

class aws_cdk.aws_controltower.CfnLandingZoneProps(*, manifest, version, 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.

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

# 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
    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

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