CfnRoutingControlProps
- class aws_cdk.aws_route53recoverycontrol.CfnRoutingControlProps(*, name, cluster_arn=None, control_panel_arn=None)
Bases:
object
Properties for defining a
CfnRoutingControl
.- Parameters:
name (
str
) – The name of the routing control. You can use any non-white space character in the name.cluster_arn (
Optional
[str
]) – The Amazon Resource Name (ARN) of the cluster that hosts the routing control.control_panel_arn (
Optional
[str
]) – The Amazon Resource Name (ARN) of the control panel that includes the routing control.
- See:
- 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_route53recoverycontrol as route53recoverycontrol cfn_routing_control_props = route53recoverycontrol.CfnRoutingControlProps( name="name", # the properties below are optional cluster_arn="clusterArn", control_panel_arn="controlPanelArn" )
Attributes
- cluster_arn
The Amazon Resource Name (ARN) of the cluster that hosts the routing control.
- control_panel_arn
The Amazon Resource Name (ARN) of the control panel that includes the routing control.
- name
The name of the routing control.
You can use any non-white space character in the name.