Class: Aws::GeoRoutes::Types::IsolineTravelModeOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineTravelModeOptions
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Mode-specific routing options that further refine how reachable areas are calculated. Options are only considered when they match the selected travel mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#car ⇒ Types::IsolineCarOptions
Options specific to passenger vehicle routing (
Car, such as vehicle characteristics and license plate restrictions.. -
#scooter ⇒ Types::IsolineScooterOptions
Options specific to scooter routing (
Scooter, such as vehicle characteristics and license plate restrictions. -
#truck ⇒ Types::IsolineTruckOptions
Options specific to commercial truck routing (
Truck, including vehicle dimensions, weight limits, and hazardous cargo specifications..
Instance Attribute Details
#car ⇒ Types::IsolineCarOptions
Options specific to passenger vehicle routing (Car, such as
vehicle characteristics and license plate restrictions.
1693 1694 1695 1696 1697 1698 1699 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1693 class IsolineTravelModeOptions < Struct.new( :car, :scooter, :truck) SENSITIVE = [] include Aws::Structure end |
#scooter ⇒ Types::IsolineScooterOptions
Options specific to scooter routing (Scooter, such as vehicle
characteristics and license plate restrictions.
Scooter travel mode, controlled-access highways are
automatically avoided unless explicitly allowed.
1693 1694 1695 1696 1697 1698 1699 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1693 class IsolineTravelModeOptions < Struct.new( :car, :scooter, :truck) SENSITIVE = [] include Aws::Structure end |
#truck ⇒ Types::IsolineTruckOptions
Options specific to commercial truck routing (Truck, including
vehicle dimensions, weight limits, and hazardous cargo
specifications.
1693 1694 1695 1696 1697 1698 1699 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1693 class IsolineTravelModeOptions < Struct.new( :car, :scooter, :truck) SENSITIVE = [] include Aws::Structure end |