Class: Aws::Route53::Types::GeoLocation

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

Overview

A complex type that contains information about a geographic location.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#continent_codeString

The two-letter code for the continent.

Amazon Route 53 supports the following continent codes:

  • AF: Africa

  • AN: Antarctica

  • AS: Asia

  • EU: Europe

  • OC: Oceania

  • NA: North America

  • SA: South America

Constraint: Specifying ‘ContinentCode` with either `CountryCode` or `SubdivisionCode` returns an `InvalidInput` error.

Returns:

  • (String)


2378
2379
2380
2381
2382
2383
2384
# File 'lib/aws-sdk-route53/types.rb', line 2378

class GeoLocation < Struct.new(
  :continent_code,
  :country_code,
  :subdivision_code)
  SENSITIVE = []
  include Aws::Structure
end

#country_codeString

For geolocation resource record sets, the two-letter code for a country.

Amazon Route 53 uses the two-letter country codes that are specified in [ISO standard 3166-1 alpha-2].

Route 53 also supports the country code UA for Ukraine.

[1]: en.wikipedia.org/wiki/ISO_3166-1_alpha-2

Returns:

  • (String)


2378
2379
2380
2381
2382
2383
2384
# File 'lib/aws-sdk-route53/types.rb', line 2378

class GeoLocation < Struct.new(
  :continent_code,
  :country_code,
  :subdivision_code)
  SENSITIVE = []
  include Aws::Structure
end

#subdivision_codeString

For geolocation resource record sets, the two-letter code for a state of the United States. Route 53 doesn’t support any other values for ‘SubdivisionCode`. For a list of state abbreviations, see

Appendix B: Two–Letter State and Possession Abbreviations][1

on

the United States Postal Service website.

If you specify ‘subdivisioncode`, you must also specify `US` for `CountryCode`.

[1]: pe.usps.com/text/pub28/28apb.htm

Returns:

  • (String)


2378
2379
2380
2381
2382
2383
2384
# File 'lib/aws-sdk-route53/types.rb', line 2378

class GeoLocation < Struct.new(
  :continent_code,
  :country_code,
  :subdivision_code)
  SENSITIVE = []
  include Aws::Structure
end