Class: Aws::Pinpoint::Types::GPSCoordinates
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::GPSCoordinates
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Specifies the GPS coordinates of a location.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #latitude  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The latitude coordinate of the location.
 - 
  
    
      #longitude  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The longitude coordinate of the location.
 
Instance Attribute Details
#latitude ⇒ Float
The latitude coordinate of the location.
      6004 6005 6006 6007 6008 6009  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 6004 class GPSCoordinates < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end  | 
  
#longitude ⇒ Float
The longitude coordinate of the location.
      6004 6005 6006 6007 6008 6009  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 6004 class GPSCoordinates < Struct.new( :latitude, :longitude) SENSITIVE = [] include Aws::Structure end  |