Interface CfnLandingZoneProps
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnLandingZoneProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:35.783Z")
@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
         .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.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:
 
 - 
getTags
Tags to be applied to the landing zone.- See Also:
 
 - 
builder
- Returns:
 - a 
CfnLandingZoneProps.BuilderofCfnLandingZoneProps 
 
 -