Class: Aws::Route53RecoveryControlConfig::Types::GatingRuleUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53RecoveryControlConfig::Types::GatingRuleUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53recoverycontrolconfig/types.rb
Overview
Update to a gating rule. You can update the name or the evaluation period (wait period). If you don’t specify one of the items to update, the item is unchanged.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name for the gating rule.
-
#safety_rule_arn ⇒ String
The Amazon Resource Name (ARN) of the gating rule.
-
#wait_period_ms ⇒ Integer
An evaluation period, in milliseconds (ms), during which any request against the target routing controls will fail.
Instance Attribute Details
#name ⇒ String
The name for the gating rule. You can use any non-white space character in the name.
732 733 734 735 736 737 738 |
# File 'lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 732 class GatingRuleUpdate < Struct.new( :name, :safety_rule_arn, :wait_period_ms) SENSITIVE = [] include Aws::Structure end |
#safety_rule_arn ⇒ String
The Amazon Resource Name (ARN) of the gating rule.
732 733 734 735 736 737 738 |
# File 'lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 732 class GatingRuleUpdate < Struct.new( :name, :safety_rule_arn, :wait_period_ms) SENSITIVE = [] include Aws::Structure end |
#wait_period_ms ⇒ Integer
An evaluation period, in milliseconds (ms), during which any request against the target routing controls will fail. This helps prevent “flapping” of state. The wait period is 5000 ms by default, but you can choose a custom value.
732 733 734 735 736 737 738 |
# File 'lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 732 class GatingRuleUpdate < Struct.new( :name, :safety_rule_arn, :wait_period_ms) SENSITIVE = [] include Aws::Structure end |