Class: Aws::WAFRegional::Types::UpdateRateBasedRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::UpdateRateBasedRuleRequest
- Defined in:
- gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#rate_limit ⇒ Integer
The maximum number of requests, which have an identical value in the field specified by the
RateKey
, allowed in a five-minute period. -
#rule_id ⇒ String
The
RuleId
of theRateBasedRule
that you want to update. -
#updates ⇒ Array<Types::RuleUpdate>
An array of
RuleUpdate
objects that you want to insert into or delete from a RateBasedRule.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
5529 5530 5531 5532 5533 5534 5535 5536 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5529 class UpdateRateBasedRuleRequest < Struct.new( :rule_id, :change_token, :updates, :rate_limit) SENSITIVE = [] include Aws::Structure end |
#rate_limit ⇒ Integer
The maximum number of requests, which have an identical value in the
field specified by the RateKey
, allowed in a five-minute period.
If the number of requests exceeds the RateLimit
and the other
predicates specified in the rule are also met, AWS WAF triggers the
action that is specified for this rule.
5529 5530 5531 5532 5533 5534 5535 5536 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5529 class UpdateRateBasedRuleRequest < Struct.new( :rule_id, :change_token, :updates, :rate_limit) SENSITIVE = [] include Aws::Structure end |
#rule_id ⇒ String
The RuleId
of the RateBasedRule
that you want to update.
RuleId
is returned by CreateRateBasedRule
and by
ListRateBasedRules.
5529 5530 5531 5532 5533 5534 5535 5536 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5529 class UpdateRateBasedRuleRequest < Struct.new( :rule_id, :change_token, :updates, :rate_limit) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::RuleUpdate>
An array of RuleUpdate
objects that you want to insert into or
delete from a RateBasedRule.
5529 5530 5531 5532 5533 5534 5535 5536 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5529 class UpdateRateBasedRuleRequest < Struct.new( :rule_id, :change_token, :updates, :rate_limit) SENSITIVE = [] include Aws::Structure end |