Class: Aws::Route53::Types::Coordinates

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

Overview

A complex type that lists the coordinates for a geoproximity resource record.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latitudeString

Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).

Returns:

  • (String)


1162
1163
1164
1165
1166
1167
# File 'lib/aws-sdk-route53/types.rb', line 1162

class Coordinates < Struct.new(
  :latitude,
  :longitude)
  SENSITIVE = []
  include Aws::Structure
end

#longitudeString

Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).

Returns:

  • (String)


1162
1163
1164
1165
1166
1167
# File 'lib/aws-sdk-route53/types.rb', line 1162

class Coordinates < Struct.new(
  :latitude,
  :longitude)
  SENSITIVE = []
  include Aws::Structure
end