interface CfnSystemProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnSystemProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnSystemProps |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnSystemProps |
Python | aws_cdk.aws_resiliencehubv2.CfnSystemProps |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnSystemProps |
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 { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const cfnSystemProps: resiliencehubv2.CfnSystemProps = {
name: 'name',
// the properties below are optional
description: 'description',
kmsKeyId: 'kmsKeyId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the system. |
| description? | string | The description of the system. |
| kms | string | The KMS key ID for encrypting system data. |
| tags? | Cfn[] | Tags assigned to the system. |
name
Type:
string
The name of the system.
description?
Type:
string
(optional)
The description of the system.
kmsKeyId?
Type:
string
(optional)
The KMS key ID for encrypting system data.
tags?
Type:
Cfn[]
(optional)
Tags assigned to the system.

.NET
Go
Java
Python
TypeScript