CfnCellProps

class aws_cdk.aws_route53recoveryreadiness.CfnCellProps(*, cell_name=None, cells=None, tags=None)

Bases: object

Properties for defining a CfnCell.

Parameters:
  • cell_name (Optional[str]) – The name of the cell to create.

  • cells (Optional[Sequence[str]]) – 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 (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A collection of tags associated with a resource.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_route53recoveryreadiness as route53recoveryreadiness

cfn_cell_props = route53recoveryreadiness.CfnCellProps(
    cell_name="cellName",
    cells=["cells"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

cell_name

The name of the cell to create.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-cellname

cells

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 .

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-cells

tags

A collection of tags associated with a resource.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-tags