Class: Aws::GeoPlaces::Types::SubRegion
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::SubRegion
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
The sub-region.
Constant Summary collapse
- SENSITIVE =
[:code, :name]
Instance Attribute Summary collapse
-
#code ⇒ String
Abbreviated code for the county or sub-region.
-
#name ⇒ String
Name for the county or sub-region.
Instance Attribute Details
#code ⇒ String
Abbreviated code for the county or sub-region. Not available in
ap-southeast-1 and ap-southeast-5 regions for GrabMaps
customers.
3356 3357 3358 3359 3360 3361 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 3356 class SubRegion < Struct.new( :code, :name) SENSITIVE = [:code, :name] include Aws::Structure end |