Class: Aws::LocationService::Types::RouteMatrixEntry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LocationService::Types::RouteMatrixEntry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-locationservice/types.rb
 
Overview
The result for the calculated route of one ‘DeparturePosition` `DestinationPosition` pair.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #distance  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total distance of travel for the route.
 - 
  
    
      #duration_seconds  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The expected duration of travel for the route.
 - 
  
    
      #error  ⇒ Types::RouteMatrixEntryError 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An error corresponding to the calculation of a route between the ‘DeparturePosition` and `DestinationPosition`.
 
Instance Attribute Details
#distance ⇒ Float
The total distance of travel for the route.
      5477 5478 5479 5480 5481 5482 5483  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 5477 class RouteMatrixEntry < Struct.new( :distance, :duration_seconds, :error) SENSITIVE = [] include Aws::Structure end  | 
  
#duration_seconds ⇒ Float
The expected duration of travel for the route.
      5477 5478 5479 5480 5481 5482 5483  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 5477 class RouteMatrixEntry < Struct.new( :distance, :duration_seconds, :error) SENSITIVE = [] include Aws::Structure end  | 
  
#error ⇒ Types::RouteMatrixEntryError
An error corresponding to the calculation of a route between the ‘DeparturePosition` and `DestinationPosition`.
      5477 5478 5479 5480 5481 5482 5483  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 5477 class RouteMatrixEntry < Struct.new( :distance, :duration_seconds, :error) SENSITIVE = [] include Aws::Structure end  |