Class: Aws::GeoRoutes::Types::RouteTaxiOverviewSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteTaxiOverviewSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Summary including duration and distance for the entire leg.
Constant Summary collapse
- SENSITIVE =
[:duration, :distance]
Instance Attribute Summary collapse
-
#distance ⇒ Integer
Distance of the entire leg.
-
#duration ⇒ Integer
Duration of the entire leg.
Instance Attribute Details
#distance ⇒ Integer
Distance of the entire leg.
Unit: ‘meters`
6326 6327 6328 6329 6330 6331 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6326 class RouteTaxiOverviewSummary < Struct.new( :duration, :distance) SENSITIVE = [:duration, :distance] include Aws::Structure end |
#duration ⇒ Integer
Duration of the entire leg.
Unit: ‘seconds`
6326 6327 6328 6329 6330 6331 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6326 class RouteTaxiOverviewSummary < Struct.new( :duration, :distance) SENSITIVE = [:duration, :distance] include Aws::Structure end |