Class: Aws::WAF::Types::UpdateRuleGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-waf/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#change_tokenString

The value returned by the most recent call to GetChangeToken.

Returns:

  • (String)


5528
5529
5530
5531
5532
5533
5534
# File 'lib/aws-sdk-waf/types.rb', line 5528

class UpdateRuleGroupRequest < Struct.new(
  :rule_group_id,
  :updates,
  :change_token)
  SENSITIVE = []
  include Aws::Structure
end

#rule_group_idString

The ‘RuleGroupId` of the RuleGroup that you want to update. `RuleGroupId` is returned by CreateRuleGroup and by ListRuleGroups.

Returns:

  • (String)


5528
5529
5530
5531
5532
5533
5534
# File 'lib/aws-sdk-waf/types.rb', line 5528

class UpdateRuleGroupRequest < Struct.new(
  :rule_group_id,
  :updates,
  :change_token)
  SENSITIVE = []
  include Aws::Structure
end

#updatesArray<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`.

Returns:



5528
5529
5530
5531
5532
5533
5534
# File 'lib/aws-sdk-waf/types.rb', line 5528

class UpdateRuleGroupRequest < Struct.new(
  :rule_group_id,
  :updates,
  :change_token)
  SENSITIVE = []
  include Aws::Structure
end