Interface CfnLandingZoneProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLandingZoneProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:57.168Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLandingZoneProps
static final class
An implementation forCfnLandingZoneProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLandingZoneProps.Builder
builder()
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.Builder
ofCfnLandingZoneProps
-