Class: Aws::GeoPlaces::Types::SubRegion
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::SubRegion
- Defined in:
- gems/aws-sdk-geoplaces/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.
3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3150 class SubRegion < Struct.new( :code, :name) SENSITIVE = [:code, :name] include Aws::Structure end |