CellReference
- class aws_cdk.aws_route53recoveryreadiness.CellReference(*, cell_arn, cell_name)
Bases:
object
A reference to a Cell resource.
- Parameters:
cell_arn (
str
) – The ARN of the Cell resource.cell_name (
str
) – The CellName of the Cell resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53recoveryreadiness as route53recoveryreadiness cell_reference = route53recoveryreadiness.CellReference( cell_arn="cellArn", cell_name="cellName" )
Attributes
- cell_arn
The ARN of the Cell resource.
- cell_name
The CellName of the Cell resource.