Class: Aws::GeoRoutes::Types::RouteSpanSpeedLimitDetails

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

Overview

Details about the speed limit corresponding to the span.

Unit: kilometers per hour

Constant Summary collapse

SENSITIVE =
[:max_speed, :unlimited]

Instance Attribute Summary collapse

Instance Attribute Details

#max_speedFloat

Maximum speed.

Unit: kilometers per hour

Returns:

  • (Float)


5129
5130
5131
5132
5133
5134
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5129

class RouteSpanSpeedLimitDetails < Struct.new(
  :max_speed,
  :unlimited)
  SENSITIVE = [:max_speed, :unlimited]
  include Aws::Structure
end

#unlimitedBoolean

If the span doesn't have a speed limit like the Autobahn.

Returns:

  • (Boolean)


5129
5130
5131
5132
5133
5134
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5129

class RouteSpanSpeedLimitDetails < Struct.new(
  :max_speed,
  :unlimited)
  SENSITIVE = [:max_speed, :unlimited]
  include Aws::Structure
end