Class: Aws::WAF::Types::GetGeoMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetGeoMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetGeoMatchSetRequest data as a hash:
{
geo_match_set_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#geo_match_set_id ⇒ String
The
GeoMatchSetId
of the GeoMatchSet that you want to get.
Instance Attribute Details
#geo_match_set_id ⇒ String
The GeoMatchSetId
of the GeoMatchSet that you want to get.
GeoMatchSetId
is returned by CreateGeoMatchSet and by
ListGeoMatchSets.
2262 2263 2264 2265 2266 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2262 class GetGeoMatchSetRequest < Struct.new( :geo_match_set_id) SENSITIVE = [] include Aws::Structure end |