Class: Aws::GeoRoutes::Types::RouteRentalOverviewSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteRentalOverviewSummary
- 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`
5522 5523 5524 5525 5526 5527 |
# File 'lib/aws-sdk-georoutes/types.rb', line 5522 class RouteRentalOverviewSummary < Struct.new( :duration, :distance) SENSITIVE = [:duration, :distance] include Aws::Structure end |
#duration ⇒ Integer
Duration of the entire leg.
Unit: ‘seconds`
5522 5523 5524 5525 5526 5527 |
# File 'lib/aws-sdk-georoutes/types.rb', line 5522 class RouteRentalOverviewSummary < Struct.new( :duration, :distance) SENSITIVE = [:duration, :distance] include Aws::Structure end |