interface CellReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Route53RecoveryReadiness.CellReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsroute53recoveryreadiness#CellReference |
Java | software.amazon.awscdk.interfaces.route53recoveryreadiness.CellReference |
Python | aws_cdk.interfaces.aws_route53recoveryreadiness.CellReference |
TypeScript | aws-cdk-lib » interfaces » aws_route53recoveryreadiness » CellReference |
A reference to a Cell resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53recoveryreadiness as interfaces_route53recoveryreadiness } from 'aws-cdk-lib/interfaces';
const cellReference: interfaces_route53recoveryreadiness.CellReference = {
cellArn: 'cellArn',
cellName: 'cellName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cell | string | The ARN of the Cell resource. |
| cell | string | The CellName of the Cell resource. |
cellArn
Type:
string
The ARN of the Cell resource.
cellName
Type:
string
The CellName of the Cell resource.

.NET
Go
Java
Python
TypeScript