interface CfnRoutingControlMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53RecoveryControl.CfnRoutingControlMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53recoverycontrol#CfnRoutingControlMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53recoverycontrol.CfnRoutingControlMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53recoverycontrol.CfnRoutingControlMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53recoverycontrol » CfnRoutingControlMixinProps |
Properties for CfnRoutingControlPropsMixin.
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/cfn-property-mixins';
const cfnRoutingControlMixinProps: route53recoverycontrol.CfnRoutingControlMixinProps = {
clusterArn: 'clusterArn',
controlPanelArn: 'controlPanelArn',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | string | The name of the routing control. |
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.
name?
Type:
string
(optional)
The name of the routing control.
You can use any non-white space character in the name.

.NET
Go
Java
Python
TypeScript