List Routing Controls
| route53recoverycontrolconfig_list_routing_controls | R Documentation |
Returns an array of routing controls for a control panel¶
Description¶
Returns an array of routing controls for a control panel. A routing control is an Amazon Route 53 Application Recovery Controller construct that has one of two states: ON and OFF. You can map the routing control state to the state of an Amazon Route 53 health check, which can be used to control routing.
Usage¶
Arguments¶
ControlPanelArn[required] The Amazon Resource Name (ARN) of the control panel.
MaxResultsThe number of objects that you want to return with this call.
NextTokenThe token that identifies which batch of results you want to see.
Value¶
A list with the following syntax:
list(
NextToken = "string",
RoutingControls = list(
list(
ControlPanelArn = "string",
Name = "string",
RoutingControlArn = "string",
Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
Owner = "string"
)
)
)