interface CfnCellMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnCellMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnCellMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnCellMixinProps |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnCellMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » CfnCellMixinProps |
Properties for CfnCellPropsMixin.
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 cfnCellMixinProps: route53recoveryreadiness_mixins.CfnCellMixinProps = {
cellName: 'cellName',
cells: ['cells'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cell | string | The name of the cell to create. |
| cells? | string[] | A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells. |
| tags? | Cfn[] | A collection of tags associated with a resource. |
cellName?
Type:
string
(optional)
The name of the cell to create.
cells?
Type:
string[]
(optional)
A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.
For example, Availability Zones within specific AWS Regions .
tags?
Type:
Cfn[]
(optional)
A collection of tags associated with a resource.

.NET
Go
Java
Python
TypeScript