CfnLandingZoneProps
- class aws_cdk.aws_controltower.CfnLandingZoneProps(*, manifest, version, remediation_types=None, tags=None)
Bases:
objectProperties 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:
- 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.
- remediation_types
The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.
- tags
Tags to be applied to the landing zone.
- version
The landing zone’s current deployed version.