Class: Aws::GeoRoutes::Types::IsolineAllowOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineAllowOptions
- 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
-
#hot ⇒ Boolean
When true, allows the use of HOT (high-occupancy toll) lanes, which may affect travel times and reachable areas.
-
#hov ⇒ Boolean
When true, allows the use of HOV (high-occupancy vehicle) lanes, which may affect travel times and reachable areas.
Instance Attribute Details
#hot ⇒ Boolean
When true, allows the use of HOT (high-occupancy toll) lanes, which may affect travel times and reachable areas.
Default value: false
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 |
#hov ⇒ Boolean
When true, allows the use of HOV (high-occupancy vehicle) lanes, which may affect travel times and reachable areas.
Default value: false
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 |