Class: Aws::GeoRoutes::Types::RouteMatrixAllowOptions

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

Overview

Allow Options related to the route matrix.

Constant Summary collapse

SENSITIVE =
[:hot, :hov]

Instance Attribute Summary collapse

Instance Attribute Details

#hotBoolean

Allow Hot (High Occupancy Toll) lanes while calculating the route.

Default value: false

Returns:

  • (Boolean)


3480
3481
3482
3483
3484
3485
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3480

class RouteMatrixAllowOptions < Struct.new(
  :hot,
  :hov)
  SENSITIVE = [:hot, :hov]
  include Aws::Structure
end

#hovBoolean

Allow Hov (High Occupancy vehicle) lanes while calculating the route.

Default value: false

Returns:

  • (Boolean)


3480
3481
3482
3483
3484
3485
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3480

class RouteMatrixAllowOptions < Struct.new(
  :hot,
  :hov)
  SENSITIVE = [:hot, :hov]
  include Aws::Structure
end