Class: Aws::WAFRegional::Types::UpdateGeoMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::UpdateGeoMatchSetRequest
- Defined in:
- gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb
Overview
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 update. -
#updates ⇒ Array<Types::GeoMatchSetUpdate>
An array of
GeoMatchSetUpdate
objects that you want to insert into or delete from an GeoMatchSet.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
5437 5438 5439 5440 5441 5442 5443 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5437 class UpdateGeoMatchSetRequest < Struct.new( :geo_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#geo_match_set_id ⇒ String
The GeoMatchSetId
of the GeoMatchSet that you want to update.
GeoMatchSetId
is returned by CreateGeoMatchSet and by
ListGeoMatchSets.
5437 5438 5439 5440 5441 5442 5443 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5437 class UpdateGeoMatchSetRequest < Struct.new( :geo_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::GeoMatchSetUpdate>
An array of GeoMatchSetUpdate
objects that you want to insert into
or delete from an GeoMatchSet. For more information, see the
applicable data types:
GeoMatchSetUpdate: Contains
Action
andGeoMatchConstraint
GeoMatchConstraint: Contains
Type
andValue
You can have only one
Type
andValue
perGeoMatchConstraint
. To add multiple countries, include multipleGeoMatchSetUpdate
objects in your request.
5437 5438 5439 5440 5441 5442 5443 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 5437 class UpdateGeoMatchSetRequest < Struct.new( :geo_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |