Class: Aws::Route53RecoveryControlConfig::Types::UpdateSafetyRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53RecoveryControlConfig::Types::UpdateSafetyRuleRequest
- Defined in:
- gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb
Overview
Note:
When making an API call, you may pass UpdateSafetyRuleRequest data as a hash:
{
assertion_rule_update: {
name: "__stringMin1Max64PatternS", # required
safety_rule_arn: "__stringMin1Max256PatternAZaZ09", # required
wait_period_ms: 1, # required
},
gating_rule_update: {
name: "__stringMin1Max64PatternS", # required
safety_rule_arn: "__stringMin1Max256PatternAZaZ09", # required
wait_period_ms: 1, # required
},
}
Request to update a safety rule. A safety rule can be an assertion rule or a gating rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assertion_rule_update ⇒ Types::AssertionRuleUpdate
The assertion rule to update.
-
#gating_rule_update ⇒ Types::GatingRuleUpdate
The gating rule to update.
Instance Attribute Details
#assertion_rule_update ⇒ Types::AssertionRuleUpdate
The assertion rule to update.
1593 1594 1595 1596 1597 1598 |
# File 'gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 1593 class UpdateSafetyRuleRequest < Struct.new( :assertion_rule_update, :gating_rule_update) SENSITIVE = [] include Aws::Structure end |
#gating_rule_update ⇒ Types::GatingRuleUpdate
The gating rule to update.
1593 1594 1595 1596 1597 1598 |
# File 'gems/aws-sdk-route53recoverycontrolconfig/lib/aws-sdk-route53recoverycontrolconfig/types.rb', line 1593 class UpdateSafetyRuleRequest < Struct.new( :assertion_rule_update, :gating_rule_update) SENSITIVE = [] include Aws::Structure end |