Class: Aws::Route53RecoveryCluster::Types::UpdateRoutingControlStateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53RecoveryCluster::Types::UpdateRoutingControlStateRequest
- Defined in:
- gems/aws-sdk-route53recoverycluster/lib/aws-sdk-route53recoverycluster/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#routing_control_arn ⇒ String
The Amazon Resource Name (ARN) for the routing control that you want to update the state for.
-
#routing_control_state ⇒ String
The state of the routing control.
-
#safety_rules_to_override ⇒ Array<String>
The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating the state of a routing control.
Instance Attribute Details
#routing_control_arn ⇒ String
The Amazon Resource Name (ARN) for the routing control that you want to update the state for.
327 328 329 330 331 332 333 |
# File 'gems/aws-sdk-route53recoverycluster/lib/aws-sdk-route53recoverycluster/types.rb', line 327 class UpdateRoutingControlStateRequest < Struct.new( :routing_control_arn, :routing_control_state, :safety_rules_to_override) SENSITIVE = [] include Aws::Structure end |
#routing_control_state ⇒ String
The state of the routing control. You can set the value to ON or OFF.
327 328 329 330 331 332 333 |
# File 'gems/aws-sdk-route53recoverycluster/lib/aws-sdk-route53recoverycluster/types.rb', line 327 class UpdateRoutingControlStateRequest < Struct.new( :routing_control_arn, :routing_control_state, :safety_rules_to_override) SENSITIVE = [] include Aws::Structure end |
#safety_rules_to_override ⇒ Array<String>
The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating the state of a routing control. You can override one safety rule or multiple safety rules by including one or more ARNs, separated by commas.
For more information, see Override safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide.
327 328 329 330 331 332 333 |
# File 'gems/aws-sdk-route53recoverycluster/lib/aws-sdk-route53recoverycluster/types.rb', line 327 class UpdateRoutingControlStateRequest < Struct.new( :routing_control_arn, :routing_control_state, :safety_rules_to_override) SENSITIVE = [] include Aws::Structure end |