Interface CfnSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSystemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:31.948Z")
@Stability(Stable)
public interface CfnSystemProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSystem.
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.resiliencehubv2.*;
CfnSystemProps cfnSystemProps = CfnSystemProps.builder()
.name("name")
// the properties below are optional
.description("description")
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSystemPropsstatic final classAn implementation forCfnSystemProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the system.- See Also:
-
getDescription
The description of the system.- See Also:
-
getKmsKeyId
The KMS key ID for encrypting system data.- See Also:
-
getTags
Tags assigned to the system.- See Also:
-
builder
- Returns:
- a
CfnSystemProps.BuilderofCfnSystemProps
-