Class: Aws::GeoPlaces::Types::Region

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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 =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

Abbreviated code for a the state, province or region of the country.

Example: ‘BC`.

Returns:

  • (String)


1559
1560
1561
1562
1563
1564
# File 'lib/aws-sdk-geoplaces/types.rb', line 1559

class Region < Struct.new(
  :code,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

Name for a the state, province, or region of the country.

Example: ‘British Columbia`.

Returns:

  • (String)


1559
1560
1561
1562
1563
1564
# File 'lib/aws-sdk-geoplaces/types.rb', line 1559

class Region < Struct.new(
  :code,
  :name)
  SENSITIVE = []
  include Aws::Structure
end