Class: Aws::GeoRoutes::Types::RouteSpanDynamicSpeedDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteSpanDynamicSpeedDetails
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Details about the dynamic speed.
Unit: KilometersPerHour
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#best_case_speed ⇒ Float
Estimated speed while traversing the span without traffic congestion.
-
#turn_duration ⇒ Integer
Estimated time to turn from this span into the next.
-
#typical_speed ⇒ Float
Estimated speed while traversing the span under typical traffic congestion.
Instance Attribute Details
#best_case_speed ⇒ Float
Estimated speed while traversing the span without traffic congestion.
Unit: KilometersPerHour
4411 4412 4413 4414 4415 4416 4417 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4411 class RouteSpanDynamicSpeedDetails < Struct.new( :best_case_speed, :turn_duration, :typical_speed) SENSITIVE = [] include Aws::Structure end |
#turn_duration ⇒ Integer
Estimated time to turn from this span into the next.
Unit: seconds
4411 4412 4413 4414 4415 4416 4417 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4411 class RouteSpanDynamicSpeedDetails < Struct.new( :best_case_speed, :turn_duration, :typical_speed) SENSITIVE = [] include Aws::Structure end |
#typical_speed ⇒ Float
Estimated speed while traversing the span under typical traffic congestion.
Unit: KilometersPerHour
4411 4412 4413 4414 4415 4416 4417 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4411 class RouteSpanDynamicSpeedDetails < Struct.new( :best_case_speed, :turn_duration, :typical_speed) SENSITIVE = [] include Aws::Structure end |