CfnSystemProps

class aws_cdk.aws_resiliencehubv2.CfnSystemProps(*, name, description=None, kms_key_id=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html#cfn-resiliencehubv2-system-description

kms_key_id

The KMS key ID for encrypting system data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html#cfn-resiliencehubv2-system-kmskeyid

name

The name of the system.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html#cfn-resiliencehubv2-system-name

tags

Tags assigned to the system.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html#cfn-resiliencehubv2-system-tags