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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#codeString

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

Example: BC.

Returns:

  • (String)


1906
1907
1908
1909
1910
1911
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1906

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

#nameString

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

Example: British Columbia.

Returns:

  • (String)


1906
1907
1908
1909
1910
1911
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1906

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