Class: Aws::WAFRegional::Types::UpdateIPSetRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-wafregional/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)


5482
5483
5484
5485
5486
5487
5488
# File 'lib/aws-sdk-wafregional/types.rb', line 5482

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

#ip_set_idString

The ‘IPSetId` of the IPSet that you want to update. `IPSetId` is returned by CreateIPSet and by ListIPSets.

Returns:

  • (String)


5482
5483
5484
5485
5486
5487
5488
# File 'lib/aws-sdk-wafregional/types.rb', line 5482

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

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

Returns:



5482
5483
5484
5485
5486
5487
5488
# File 'lib/aws-sdk-wafregional/types.rb', line 5482

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