Class: Aws::WAFRegional::Types::UpdateRuleGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::UpdateRuleGroupRequest
- 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.
-
#rule_group_id ⇒ String
The
RuleGroupId
of the RuleGroup that you want to update. -
#updates ⇒ Array<Types::RuleGroupUpdate>
An array of
RuleGroupUpdate
objects that you want to insert into or delete from a RuleGroup.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
5656 5657 5658 5659 5660 5661 5662 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5656 class UpdateRuleGroupRequest < Struct.new( :rule_group_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |
#rule_group_id ⇒ String
The RuleGroupId
of the RuleGroup that you want to update.
RuleGroupId
is returned by CreateRuleGroup and by ListRuleGroups.
5656 5657 5658 5659 5660 5661 5662 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5656 class UpdateRuleGroupRequest < Struct.new( :rule_group_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::RuleGroupUpdate>
An array of RuleGroupUpdate
objects that you want to insert into
or delete from a RuleGroup.
You can only insert REGULAR
rules into a rule group.
ActivatedRule|OverrideAction
applies only when updating or adding
a RuleGroup
to a WebACL
. In this case you do not use
ActivatedRule|Action
. For all other update requests,
ActivatedRule|Action
is used instead of
ActivatedRule|OverrideAction
.
5656 5657 5658 5659 5660 5661 5662 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5656 class UpdateRuleGroupRequest < Struct.new( :rule_group_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |