interface CfnRecoveryGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnRecoveryGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnRecoveryGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnRecoveryGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnRecoveryGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » CfnRecoveryGroupMixinProps |
Properties for CfnRecoveryGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53recoveryreadiness_mixins } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const cfnRecoveryGroupMixinProps: route53recoveryreadiness_mixins.CfnRecoveryGroupMixinProps = {
cells: ['cells'],
recoveryGroupName: 'recoveryGroupName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cells? | string[] | A list of the cell Amazon Resource Names (ARNs) in the recovery group. |
| recovery | string | The name of the recovery group to create. |
| tags? | Cfn[] | A collection of tags associated with a resource. |
cells?
Type:
string[]
(optional)
A list of the cell Amazon Resource Names (ARNs) in the recovery group.
recoveryGroupName?
Type:
string
(optional)
The name of the recovery group to create.
tags?
Type:
Cfn[]
(optional)
A collection of tags associated with a resource.

.NET
Go
Java
Python
TypeScript