CfnSystemMixinProps
- class aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnSystemMixinProps(*, description=None, kms_key_id=None, name=None, tags=None)
Bases:
objectProperties 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.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.cfn_property_mixins import aws_resiliencehubv2 as resiliencehubv2 cfn_system_mixin_props = resiliencehubv2.CfnSystemMixinProps( description="description", kms_key_id="kmsKeyId", name="name", 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.