Class: Aws::GeoRoutes::Types::WaypointOptimizationRestCycleDurations

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-georoutes/types.rb

Overview

Driver work-rest schedules defined by a short and long cycle. A rest needs to be taken after the short work duration. The short cycle can be repeated until you hit the long work duration, at which point the long rest duration should be taken before restarting.

Unit: ‘seconds`

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_durationInteger

Resting phase of the cycle.

Unit: ‘seconds`

Returns:

  • (Integer)


6480
6481
6482
6483
6484
6485
# File 'lib/aws-sdk-georoutes/types.rb', line 6480

class WaypointOptimizationRestCycleDurations < Struct.new(
  :rest_duration,
  :work_duration)
  SENSITIVE = []
  include Aws::Structure
end

#work_durationInteger

Working phase of the cycle.

Unit: ‘seconds`

Returns:

  • (Integer)


6480
6481
6482
6483
6484
6485
# File 'lib/aws-sdk-georoutes/types.rb', line 6480

class WaypointOptimizationRestCycleDurations < Struct.new(
  :rest_duration,
  :work_duration)
  SENSITIVE = []
  include Aws::Structure
end