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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2940
2941
2942
2943
2944
2945
# File 'lib/aws-sdk-georoutes/types.rb', line 2940

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)


2940
2941
2942
2943
2944
2945
# File 'lib/aws-sdk-georoutes/types.rb', line 2940

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