CfnCellProps
- class aws_cdk.aws_route53recoveryreadiness.CfnCellProps(*, cell_name=None, cells=None, tags=None)
Bases:
objectProperties 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:
- 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.
- 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 .
- tags
A collection of tags associated with a resource.