Class: Aws::GeoRoutes::Types::IsolineTravelModeOptions

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#carTypes::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

#scooterTypes::IsolineScooterOptions

Options specific to scooter routing (Scooter, such as vehicle characteristics and license plate restrictions.

When using the 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

#truckTypes::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