CfnRecoveryGroupMixinProps

class aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnRecoveryGroupMixinProps(*, cells=None, recovery_group_name=None, tags=None)

Bases: object

Properties for CfnRecoveryGroupPropsMixin.

Parameters:
  • cells (Optional[Sequence[str]]) – A list of the cell Amazon Resource Names (ARNs) in the recovery group.

  • recovery_group_name (Optional[str]) – The name of the recovery group to create.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A collection of tags associated with a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_route53recoveryreadiness import mixins as route53recoveryreadiness_mixins

cfn_recovery_group_mixin_props = route53recoveryreadiness_mixins.CfnRecoveryGroupMixinProps(
    cells=["cells"],
    recovery_group_name="recoveryGroupName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

cells

A list of the cell Amazon Resource Names (ARNs) in the recovery group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-cells

recovery_group_name

The name of the recovery group to create.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-recoverygroupname

tags

A collection of tags associated with a resource.

See:

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