CfnSystemMixinProps

class aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnSystemMixinProps(*, description=None, kms_key_id=None, name=None, sharing_enabled=None, tags=None)

Bases: object

Properties for CfnSystemPropsMixin.

Parameters:
  • description (Optional[str]) – The description of the system.

  • kms_key_id (Optional[str]) – The KMS key ID for encrypting system data.

  • name (Optional[str]) – The name of the system.

  • sharing_enabled (Union[bool, IResolvable, None]) – Whether the system is enabled to be shared with other members of the Organization. Only applicable if the system owner is a management account or delegated admin. Default: - false

  • 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.cfn_property_mixins import aws_resiliencehubv2 as resiliencehubv2

cfn_system_mixin_props = resiliencehubv2.CfnSystemMixinProps(
    description="description",
    kms_key_id="kmsKeyId",
    name="name",
    sharing_enabled=False,
    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

sharing_enabled

Whether the system is enabled to be shared with other members of the Organization.

Only applicable if the system owner is a management account or delegated admin.

Default:
  • false

See:

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

tags

Tags assigned to the system.

See:

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