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

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

Overview

Specifies the GPS coordinates of a location.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latitudeFloat

The latitude coordinate of the location.

Returns:

  • (Float)


5981
5982
5983
5984
5985
5986
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 5981

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

#longitudeFloat

The longitude coordinate of the location.

Returns:

  • (Float)


5981
5982
5983
5984
5985
5986
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 5981

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