CfnSystemProps
- class aws_cdk.aws_resiliencehubv2.CfnSystemProps(*, name, description=None, kms_key_id=None, tags=None)
Bases:
objectProperties for defining a
CfnSystem.- Parameters:
name (
str) – The name of the system.description (
Optional[str]) – The description of the system.kms_key_id (
Optional[str]) – The KMS key ID for encrypting system data.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags assigned to the system.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_resiliencehubv2 as resiliencehubv2 cfn_system_props = resiliencehubv2.CfnSystemProps( name="name", # the properties below are optional description="description", kms_key_id="kmsKeyId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the system.
- kms_key_id
The KMS key ID for encrypting system data.
- name
The name of the system.
- tags
Tags assigned to the system.