Class: Aws::Route53::Types::Coordinates
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::Coordinates
- 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
-
#latitude ⇒ String
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
-
#longitude ⇒ String
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).
Instance Attribute Details
#latitude ⇒ String
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
1160 1161 1162 1163 1164 1165 |
# File 'lib/aws-sdk-route53/types.rb', line 1160 class Coordinates < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |
#longitude ⇒ String
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).
1160 1161 1162 1163 1164 1165 |
# File 'lib/aws-sdk-route53/types.rb', line 1160 class Coordinates < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |