Class: Aws::LocationService::Types::CalculateRouteMatrixSummary
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::LocationService::Types::CalculateRouteMatrixSummary
 
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
A summary of the calculated route matrix.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #data_source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data provider of traffic and road network data used to calculate the routes. 
- 
  
    
      #distance_unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unit of measurement for route distances. 
- 
  
    
      #error_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The count of error results in the route matrix. 
- 
  
    
      #route_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The count of cells in the route matrix. 
Instance Attribute Details
#data_source ⇒ String
The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers:
- Esri
- Grab
- Here
For more information about data providers, see Amazon Location Service data providers.
| 976 977 978 979 980 981 982 983 | # File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 976 class CalculateRouteMatrixSummary < Struct.new( :data_source, :route_count, :error_count, :distance_unit) SENSITIVE = [] include Aws::Structure end | 
#distance_unit ⇒ String
The unit of measurement for route distances.
| 976 977 978 979 980 981 982 983 | # File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 976 class CalculateRouteMatrixSummary < Struct.new( :data_source, :route_count, :error_count, :distance_unit) SENSITIVE = [] include Aws::Structure end | 
#error_count ⇒ Integer
The count of error results in the route matrix. If this number is 0, all routes were calculated successfully.
| 976 977 978 979 980 981 982 983 | # File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 976 class CalculateRouteMatrixSummary < Struct.new( :data_source, :route_count, :error_count, :distance_unit) SENSITIVE = [] include Aws::Structure end | 
#route_count ⇒ Integer
The count of cells in the route matrix. Equal to the number of
DeparturePositions multiplied by the number of
DestinationPositions.
| 976 977 978 979 980 981 982 983 | # File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 976 class CalculateRouteMatrixSummary < Struct.new( :data_source, :route_count, :error_count, :distance_unit) SENSITIVE = [] include Aws::Structure end |