interface CfnCellMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53RecoveryReadiness.CfnCellMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53recoveryreadiness#CfnCellMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53recoveryreadiness.CfnCellMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53recoveryreadiness.CfnCellMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53recoveryreadiness » 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 { aws_route53recoveryreadiness as route53recoveryreadiness } from '@aws-cdk/cfn-property-mixins';
const cfnCellMixinProps: route53recoveryreadiness.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