Class: Aws::WAF::Types::UpdateIPSetRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAF::Types::UpdateIPSetRequest
 
 
- 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.
 - 
  
    
      #ip_set_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘IPSetId` of the IPSet that you want to update.
 - 
  
    
      #updates  ⇒ Array<Types::IPSetUpdate> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of ‘IPSetUpdate` objects that you want to insert into or delete from an IPSet.
 
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
      5354 5355 5356 5357 5358 5359 5360  | 
    
      # File 'lib/aws-sdk-waf/types.rb', line 5354 class UpdateIPSetRequest < Struct.new( :ip_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end  | 
  
#ip_set_id ⇒ String
The ‘IPSetId` of the IPSet that you want to update. `IPSetId` is returned by CreateIPSet and by ListIPSets.
      5354 5355 5356 5357 5358 5359 5360  | 
    
      # File 'lib/aws-sdk-waf/types.rb', line 5354 class UpdateIPSetRequest < Struct.new( :ip_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end  | 
  
#updates ⇒ Array<Types::IPSetUpdate>
An array of ‘IPSetUpdate` objects that you want to insert into or delete from an IPSet. For more information, see the applicable data types:
- 
IPSetUpdate: Contains ‘Action` and `IPSetDescriptor`
 - 
IPSetDescriptor: Contains ‘Type` and `Value`
 
You can insert a maximum of 1000 addresses in a single request.
      5354 5355 5356 5357 5358 5359 5360  | 
    
      # File 'lib/aws-sdk-waf/types.rb', line 5354 class UpdateIPSetRequest < Struct.new( :ip_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end  |