Class: Aws::GeoRoutes::Types::RouteDriverScheduleInterval

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

Overview

Interval of the driver work-rest schedule. Stops are added to fulfil the provided rest schedule.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#drive_durationInteger

Maximum allowed driving time before stopping to rest.

Unit: ‘seconds`

Returns:

  • (Integer)


2221
2222
2223
2224
2225
2226
# File 'lib/aws-sdk-georoutes/types.rb', line 2221

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

#rest_durationInteger

Resting time before the driver can continue driving.

Unit: ‘seconds`

Returns:

  • (Integer)


2221
2222
2223
2224
2225
2226
# File 'lib/aws-sdk-georoutes/types.rb', line 2221

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