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)


3770
3771
3772
3773
3774
3775
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3770

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

#longitudeFloat

The longitude.

Returns:

  • (Float)


3770
3771
3772
3773
3774
3775
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3770

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