Create a control panel
A control panel is a logical grouping for organizing your Amazon Route 53 Application Recovery Controller routing controls.
When you create a cluster, Amazon Route 53 Application Recovery Controller automatically provides a control panel for you called
DefaultControlPanel
. You can use this control panel right away.
Optionally, create your own control panel by calling create-control-panel
.
A control panel can only exist in one cluster. If you want to move a control panel to
another cluster, you must delete it and then create it in the second cluster.
The following is an example of a request to create a control panel in a cluster, and the response.
aws route53-recovery-control-config --region us-west-2 create-control-panel \ --control-panel-name NewControlPanel2 \ --cluster-arn arn:aws:route53-recovery-control::012345678901:cluster/abc123456-aa11-bb22-cc33-abc123456
{ "ControlPanel": { "ControlPanelArn": "arn:aws:route53-recovery-control::012345678901:controlpanel/d22190fdbfca4845804e3f76457d57c9", "ClusterArn": "arn:aws:route53-recovery-control::012345678901:cluster/abc123456-aa11-bb22-cc33-abc123456", "DefaultControlPanel": false, "Name": "NewControlPanel2", "RoutingControlCount": 0, "Status": "PENDING" } }