CfnSystemMixinProps
- class aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnSystemMixinProps(*, description=None, kms_key_id=None, name=None, sharing_enabled=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.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: - falsetags (
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", sharing_enabled=False, 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.
- 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.
- tags
Tags assigned to the system.