Class: Aws::DeviceFarm::Types::Location

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devicefarm/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

Instance Attribute Details

#latitudeFloat

The latitude.

Returns:

  • (Float)


3816
3817
3818
3819
3820
3821
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3816

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

#longitudeFloat

The longitude.

Returns:

  • (Float)


3816
3817
3818
3819
3820
3821
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3816

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