interface CfnRoutingControlProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53RecoveryControl.CfnRoutingControlProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53recoverycontrol#CfnRoutingControlProps |
Java | software.amazon.awscdk.services.route53recoverycontrol.CfnRoutingControlProps |
Python | aws_cdk.aws_route53recoverycontrol.CfnRoutingControlProps |
TypeScript | aws-cdk-lib » aws_route53recoverycontrol » CfnRoutingControlProps |
Properties for defining a CfnRoutingControl.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53recoverycontrol as route53recoverycontrol } from 'aws-cdk-lib';
const cfnRoutingControlProps: route53recoverycontrol.CfnRoutingControlProps = {
name: 'name',
// the properties below are optional
clusterArn: 'clusterArn',
controlPanelArn: 'controlPanelArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the routing control. |
| cluster | string | ICluster | The Amazon Resource Name (ARN) of the cluster that hosts the routing control. |
| control | string | IControl | The Amazon Resource Name (ARN) of the control panel that includes the routing control. |
name
Type:
string
The name of the routing control.
You can use any non-white space character in the name.
clusterArn?
Type:
string | ICluster
(optional)
The Amazon Resource Name (ARN) of the cluster that hosts the routing control.
controlPanelArn?
Type:
string | IControl
(optional)
The Amazon Resource Name (ARN) of the control panel that includes the routing control.

.NET
Go
Java
Python
TypeScript