Class: Aws::LocationService::Types::CalculateRouteMatrixRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:key]

Instance Attribute Summary collapse

Instance Attribute Details

#calculator_nameString

The name of the route calculator resource that you want to use to calculate the route matrix.

Returns:

  • (String)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#car_mode_optionsTypes::CalculateRouteCarModeOptions

Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.

Requirements: TravelMode must be specified as Car.



792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#depart_nowBoolean

Sets the time of departure as the current time. Uses the current time to calculate the route matrix. You can't set both DepartureTime and DepartNow. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.

Default Value: false

Valid Values: false | true

Returns:

  • (Boolean)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#departure_positionsArray<Array<Float>>

The list of departure (origin) positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]. For example, [-123.115, 49.285].

Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.

For route calculators that use Esri as the data provider, if you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDeparturePositions.

Valid Values: [-180 to 180,-90 to 90]

Returns:

  • (Array<Array<Float>>)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#departure_timeTime

Specifies the desired time of departure. Uses the given time to calculate the route matrix. You can't set both DepartureTime and DepartNow. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.

Setting a departure time in the past returns a 400 ValidationException error.

  • In ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. For example, 2020–07-2T12:15:20.000Z+01:00

^

Returns:

  • (Time)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#destination_positionsArray<Array<Float>>

The list of destination positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]. For example, [-122.339, 47.615]

Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.

For route calculators that use Esri as the data provider, if you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDestinationPositions.

Valid Values: [-180 to 180,-90 to 90]

Returns:

  • (Array<Array<Float>>)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#distance_unitString

Set the unit system to specify the distance.

Default Value: Kilometers

Returns:

  • (String)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#keyString

The optional API key to authorize the request.

Returns:

  • (String)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#travel_modeString

Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.

The TravelMode you specify also determines how you specify route preferences:

  • If traveling by Car use the CarModeOptions parameter.

  • If traveling by Truck use the TruckModeOptions parameter.

Bicycle or Motorcycle are only valid when using Grab as a data provider, and only within Southeast Asia.

Truck is not available for Grab.

For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide.

Default Value: Car

Returns:

  • (String)


792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end

#truck_mode_optionsTypes::CalculateRouteTruckModeOptions

Specifies route preferences when traveling by Truck, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.

Requirements: TravelMode must be specified as Truck.



792
793
794
795
796
797
798
799
800
801
802
803
804
805
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 792

class CalculateRouteMatrixRequest < Struct.new(
  :calculator_name,
  :car_mode_options,
  :depart_now,
  :departure_positions,
  :departure_time,
  :destination_positions,
  :distance_unit,
  :key,
  :travel_mode,
  :truck_mode_options)
  SENSITIVE = [:key]
  include Aws::Structure
end