Class: Aws::LocationService::Types::CalculateRouteCarModeOptions

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

Overview

Contains details about additional route preferences for requests that specify TravelMode as Car.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#avoid_ferriesBoolean

Avoids ferries when calculating routes.

Default Value: false

Valid Values: false | true

Returns:

  • (Boolean)


634
635
636
637
638
639
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 634

class CalculateRouteCarModeOptions < Struct.new(
  :avoid_ferries,
  :avoid_tolls)
  SENSITIVE = []
  include Aws::Structure
end

#avoid_tollsBoolean

Avoids tolls when calculating routes.

Default Value: false

Valid Values: false | true

Returns:

  • (Boolean)


634
635
636
637
638
639
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 634

class CalculateRouteCarModeOptions < Struct.new(
  :avoid_ferries,
  :avoid_tolls)
  SENSITIVE = []
  include Aws::Structure
end