Class: Aws::GeoRoutes::Types::RouteSpanDynamicSpeedDetails

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

Overview

Details about the dynamic speed.

Unit: kilometers per hour

Constant Summary collapse

SENSITIVE =
[:best_case_speed, :turn_duration, :typical_speed]

Instance Attribute Summary collapse

Instance Attribute Details

#best_case_speedFloat

Estimated speed while traversing the span without traffic congestion.

Unit: kilometers per hour

Returns:

  • (Float)


5105
5106
5107
5108
5109
5110
5111
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5105

class RouteSpanDynamicSpeedDetails < Struct.new(
  :best_case_speed,
  :turn_duration,
  :typical_speed)
  SENSITIVE = [:best_case_speed, :turn_duration, :typical_speed]
  include Aws::Structure
end

#turn_durationInteger

Estimated time to turn from this span into the next.

Unit: seconds

Returns:

  • (Integer)


5105
5106
5107
5108
5109
5110
5111
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5105

class RouteSpanDynamicSpeedDetails < Struct.new(
  :best_case_speed,
  :turn_duration,
  :typical_speed)
  SENSITIVE = [:best_case_speed, :turn_duration, :typical_speed]
  include Aws::Structure
end

#typical_speedFloat

Estimated speed while traversing the span under typical traffic congestion.

Unit: kilometers per hour

Returns:

  • (Float)


5105
5106
5107
5108
5109
5110
5111
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5105

class RouteSpanDynamicSpeedDetails < Struct.new(
  :best_case_speed,
  :turn_duration,
  :typical_speed)
  SENSITIVE = [:best_case_speed, :turn_duration, :typical_speed]
  include Aws::Structure
end