Interface CfnLandingZoneMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLandingZoneMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:24.467Z")
@Stability(Stable)
public interface CfnLandingZoneMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLandingZonePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.controltower.mixins.*;
Object manifest;
CfnLandingZoneMixinProps cfnLandingZoneMixinProps = CfnLandingZoneMixinProps.builder()
.manifest(manifest)
.remediationTypes(List.of("remediationTypes"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLandingZoneMixinPropsstatic final classAn implementation forCfnLandingZoneMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe 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.default StringThe 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:
-
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:
-
getVersion
The landing zone's current deployed version.- See Also:
-
builder
- Returns:
- a
CfnLandingZoneMixinProps.BuilderofCfnLandingZoneMixinProps
-