Class: Aws::WAF::Types::DeleteIPSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::DeleteIPSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass DeleteIPSetRequest data as a hash:
{
ip_set_id: "ResourceId", # required
change_token: "ChangeToken", # required
}
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 delete.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1408 1409 1410 1411 1412 1413 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1408 class DeleteIPSetRequest < Struct.new( :ip_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |
#ip_set_id ⇒ String
The IPSetId
of the IPSet that you want to delete. IPSetId
is
returned by CreateIPSet and by ListIPSets.
1408 1409 1410 1411 1412 1413 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1408 class DeleteIPSetRequest < Struct.new( :ip_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |