Route53 Recovery Cluster

This page documents function available when using the Route53_Recovery_Cluster module, created with @service Route53_Recovery_Cluster.

Index

Documentation

Main.Route53_Recovery_Cluster.get_routing_control_stateMethod
get_routing_control_state(routing_control_arn)
get_routing_control_state(routing_control_arn, params::Dict{String,<:Any})

Get the state for a routing control. A routing control is a simple on/off switch that you can use to route traffic to cells. When the state is On, traffic flows to a cell. When it's off, traffic does not flow. Before you can create a routing control, you first must create a cluster to host the control. For more information, see CreateCluster. Access one of the endpoints for the cluster to get or update the routing control state to redirect traffic. For more information about working with routing controls, see Routing control in the Route 53 Application Recovery Controller Developer Guide.

Arguments

  • routing_control_arn: The Amazon Resource Number (ARN) for the routing control that you want to get the state for.
source
Main.Route53_Recovery_Cluster.update_routing_control_stateMethod
update_routing_control_state(routing_control_arn, routing_control_state)
update_routing_control_state(routing_control_arn, routing_control_state, params::Dict{String,<:Any})

Set the state of the routing control to reroute traffic. You can set the value to be On or Off. When the state is On, traffic flows to a cell. When it's off, traffic does not flow. For more information about working with routing controls, see Routing control in the Route 53 Application Recovery Controller Developer Guide.

Arguments

  • routing_control_arn: The Amazon Resource Number (ARN) for the routing control that you want to update the state for.
  • routing_control_state: The state of the routing control. You can set the value to be On or Off.
source
Main.Route53_Recovery_Cluster.update_routing_control_statesMethod
update_routing_control_states(update_routing_control_state_entries)
update_routing_control_states(update_routing_control_state_entries, params::Dict{String,<:Any})

Set multiple routing control states. You can set the value for each state to be On or Off. When the state is On, traffic flows to a cell. When it's off, traffic does not flow. For more information about working with routing controls, see Routing control in the Route 53 Application Recovery Controller Developer Guide.

Arguments

  • update_routing_control_state_entries: A set of routing control entries that you want to update.
source