Class: Aws::DeviceFarm::Types::Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents a latitude and longitude pair, expressed in geographic coordinate system degrees (for example, 47.6204, -122.3491).
Elevation is currently not supported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#latitude ⇒ Float
The latitude.
-
#longitude ⇒ Float
The longitude.
Instance Attribute Details
#latitude ⇒ Float
The latitude.
3785 3786 3787 3788 3789 3790 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3785 class Location < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |
#longitude ⇒ Float
The longitude.
3785 3786 3787 3788 3789 3790 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3785 class Location < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |