Class: Aws::GeoRoutes::Types::RouteTransitOverviewSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteTransitOverviewSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Summary including duration and distance for the entire leg.
Constant Summary collapse
- SENSITIVE =
[:distance, :duration]
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`
7368 7369 7370 7371 7372 7373 |
# File 'lib/aws-sdk-georoutes/types.rb', line 7368 class RouteTransitOverviewSummary < Struct.new( :distance, :duration) SENSITIVE = [:distance, :duration] include Aws::Structure end |
#duration ⇒ Integer
Duration of the entire leg.
Unit: ‘seconds`
7368 7369 7370 7371 7372 7373 |
# File 'lib/aws-sdk-georoutes/types.rb', line 7368 class RouteTransitOverviewSummary < Struct.new( :distance, :duration) SENSITIVE = [:distance, :duration] include Aws::Structure end |