Class: Aws::Route53RecoveryControlConfig::Types::AssertionRuleUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53RecoveryControlConfig::Types::AssertionRuleUpdate
- Defined in:
- gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb
Overview
When making an API call, you may pass AssertionRuleUpdate data as a hash:
{
name: "__stringMin1Max64PatternS", # required
safety_rule_arn: "__stringMin1Max256PatternAZaZ09", # required
wait_period_ms: 1, # required
}
An update to an assertion 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 of the assertion rule.
-
#safety_rule_arn ⇒ String
The Amazon Resource Name (ARN) of the assertion 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 of the assertion rule. You can use any non-white space character in the name.
122 123 124 125 126 127 128 |
# File 'gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 122 class AssertionRuleUpdate < 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 assertion rule.
122 123 124 125 126 127 128 |
# File 'gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 122 class AssertionRuleUpdate < 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.
122 123 124 125 126 127 128 |
# File 'gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 122 class AssertionRuleUpdate < Struct.new( :name, :safety_rule_arn, :wait_period_ms) SENSITIVE = [] include Aws::Structure end |