CfnLandingZoneMixinProps
- class aws_cdk.mixins_preview.aws_controltower.mixins.CfnLandingZoneMixinProps(*, manifest=None, remediation_types=None, tags=None, version=None)
Bases:
objectProperties 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:
- 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.
- 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.