Class: Aws::GeoPlaces::Types::Region
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Region
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
The region or state results should be to be present in.
Example: North Rhine-Westphalia.
Constant Summary collapse
- SENSITIVE =
[:code, :name]
Instance Attribute Summary collapse
-
#code ⇒ String
Abbreviated code for a the state, province or region of the country.
-
#name ⇒ String
Name for a the state, province, or region of the country.
Instance Attribute Details
#code ⇒ String
Abbreviated code for a the state, province or region of the country.
Not available in ap-southeast-1 and ap-southeast-5 regions for
GrabMaps customers.
Example: BC.
2068 2069 2070 2071 2072 2073 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 2068 class Region < Struct.new( :code, :name) SENSITIVE = [:code, :name] include Aws::Structure end |