Class: Aws::GeoRoutes::Types::WaypointOptimizationConnection
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::WaypointOptimizationConnection
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
This contains information such as distance and duration from one waypoint to the next waypoint in the sequence.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#distance ⇒ Integer
Distance of the step.
-
#from ⇒ String
contains the ID of the starting waypoint in this connection.
-
#rest_duration ⇒ Integer
Resting time before the driver can continue driving.
-
#to ⇒ String
Contains the ID of the ending waypoint in this connection.
-
#travel_duration ⇒ Integer
Total duration.
-
#wait_duration ⇒ Integer
Duration of a wait step.
Instance Attribute Details
#distance ⇒ Integer
Distance of the step.
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |
#from ⇒ String
contains the ID of the starting waypoint in this connection.
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |
#rest_duration ⇒ Integer
Resting time before the driver can continue driving.
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |
#to ⇒ String
Contains the ID of the ending waypoint in this connection.
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |
#travel_duration ⇒ Integer
Total duration.
Unit: ‘seconds`
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |
#wait_duration ⇒ Integer
Duration of a wait step.
Unit: ‘seconds`
6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6240 class WaypointOptimizationConnection < Struct.new( :distance, :from, :rest_duration, :to, :travel_duration, :wait_duration) SENSITIVE = [] include Aws::Structure end |