Class: Aws::GeoPlaces::Types::SubRegion

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-geoplaces/types.rb

Overview

The sub-region.

Constant Summary collapse

SENSITIVE =
[:code, :name]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

Abbreviated code for the county or sub-region. Not available in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

Returns:

  • (String)


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

#nameString

Name for the county or sub-region.

Returns:

  • (String)


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