CfnRecoveryGroupMixinProps
- class aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnRecoveryGroupMixinProps(*, cells=None, recovery_group_name=None, tags=None)
Bases:
objectProperties 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:
- 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.
- recovery_group_name
The name of the recovery group to create.
- tags
A collection of tags associated with a resource.