Class: Aws::GeoRoutes::Types::IsolineAllowOptions

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

Overview

Special road types or features that should be considered available for routing. For example, this attribute can be used to allow the use of HOV (high-occupancy vehicle) or HOT (high-occupancy toll) lanes, even if they would otherwise not be.

Constant Summary collapse

SENSITIVE =
[:hot, :hov]

Instance Attribute Summary collapse

Instance Attribute Details

#hotBoolean

When true, allows the use of HOT (high-occupancy toll) lanes, which may affect travel times and reachable areas.

Default value: false

Returns:

  • (Boolean)


986
987
988
989
990
991
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 986

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

#hovBoolean

When true, allows the use of HOV (high-occupancy vehicle) lanes, which may affect travel times and reachable areas.

Default value: false

Returns:

  • (Boolean)


986
987
988
989
990
991
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 986

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