class CfnCellPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnCellPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnCellPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnCellPropsMixin |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnCellPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » CfnCellPropsMixin |
Implements
IMixin
Extends
Mixin
Creates a cell in recovery group in Amazon Route 53 Application Recovery Controller.
A cell in Route 53 ARC represents replicas or independent units of failover in your application. It groups within it all the AWS resources that are necessary for your application to run independently. Typically, you would have define one set of resources in a primary cell and another set in a standby cell in your recovery group.
After you set up the cells for your application, you can create readiness checks in Route 53 ARC to continually audit readiness for AWS resource quotas, capacity, network routing policies, and other predefined rules.
You can set up notifications about changes that would affect your ability to fail over to a replica and recover. However, you should make decisions about whether to fail away from or to a replica based on your monitoring and health check systems. You should consider readiness checks as a complementary service to those systems.
Route 53 ARC Readiness supports us-east-1 and us-west-2 AWS Regions only.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as route53recoveryreadiness_mixins } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const cfnCellPropsMixin = new route53recoveryreadiness_mixins.CfnCellPropsMixin({
cellName: 'cellName',
cells: ['cells'],
tags: [{
key: 'key',
value: 'value',
}],
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnCellPropsMixin(props: CfnCellMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Cell Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::Route53RecoveryReadiness::Cell.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript