Interface CfnLandingZoneProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLandingZoneProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:07.844Z")
@Stability(Stable)
public interface CfnLandingZoneProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLandingZone.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.controltower.*;
Object manifest;
CfnLandingZoneProps cfnLandingZoneProps = CfnLandingZoneProps.builder()
.manifest(manifest)
.version("version")
// the properties below are optional
.remediationTypes(List.of("remediationTypes"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLandingZonePropsstatic final classAn implementation forCfnLandingZoneProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLandingZoneProps.Builderbuilder()The landing zone manifest JSON text file that specifies the landing zone configurations.The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.getTags()Tags to be applied to the landing zone.The landing zone's current deployed version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifest
The landing zone manifest JSON text file that specifies the landing zone configurations.- See Also:
-
getVersion
The landing zone's current deployed version.- See Also:
-
getRemediationTypes
The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.- See Also:
-
getTags
Tags to be applied to the landing zone.- See Also:
-
builder
- Returns:
- a
CfnLandingZoneProps.BuilderofCfnLandingZoneProps
-