Class: Aws::WAF::Types::UpdateRuleGroupRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAF::Types::UpdateRuleGroupRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-waf/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.
      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_id ⇒ String
The ‘RuleGroupId` of the RuleGroup that you want to update. `RuleGroupId` is returned by CreateRuleGroup and by ListRuleGroups.
      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  | 
  
#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`.
      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  |