Class: Aws::WAF::Types::DeleteGeoMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::DeleteGeoMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass DeleteGeoMatchSetRequest data as a hash:
{
geo_match_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.
-
#geo_match_set_id ⇒ String
The
GeoMatchSetID
of the GeoMatchSet that you want to delete.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1368 1369 1370 1371 1372 1373 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1368 class DeleteGeoMatchSetRequest < Struct.new( :geo_match_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |
#geo_match_set_id ⇒ String
The GeoMatchSetID
of the GeoMatchSet that you want to delete.
GeoMatchSetId
is returned by CreateGeoMatchSet and by
ListGeoMatchSets.
1368 1369 1370 1371 1372 1373 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1368 class DeleteGeoMatchSetRequest < Struct.new( :geo_match_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |