Interface CfnSystemMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSystemMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:46.582Z")
@Stability(Stable)
public interface CfnSystemMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSystemPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.*;
CfnSystemMixinProps cfnSystemMixinProps = CfnSystemMixinProps.builder()
.description("description")
.kmsKeyId("kmsKeyId")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSystemMixinPropsstatic final classAn implementation forCfnSystemMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the system.- See Also:
-
getKmsKeyId
The KMS key ID for encrypting system data.- See Also:
-
getName
The name of the system.- See Also:
-
getTags
Tags assigned to the system.- See Also:
-
builder
- Returns:
- a
CfnSystemMixinProps.BuilderofCfnSystemMixinProps
-