Class: Aws::Pinpoint::Types::GPSCoordinates

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

Overview

Note:

When making an API call, you may pass GPSCoordinates data as a hash:

{
  latitude: 1.0, # required
  longitude: 1.0, # required
}

Specifies the GPS coordinates of a location.

Instance Attribute Summary collapse

Instance Attribute Details

#latitudeFloat

The latitude coordinate of the location.

Returns:

  • (Float)


7805
7806
7807
7808
7809
# File 'lib/aws-sdk-pinpoint/types.rb', line 7805

class GPSCoordinates < Struct.new(
  :latitude,
  :longitude)
  include Aws::Structure
end

#longitudeFloat

The longitude coordinate of the location.

Returns:

  • (Float)


7805
7806
7807
7808
7809
# File 'lib/aws-sdk-pinpoint/types.rb', line 7805

class GPSCoordinates < Struct.new(
  :latitude,
  :longitude)
  include Aws::Structure
end