pub struct CalculateRouteMatrix { /* private fields */ }Expand description
Fluent builder constructing a request to CalculateRouteMatrix.
Calculates a route matrix given the following required parameters: DeparturePositions and DestinationPositions. CalculateRouteMatrix calculates routes and returns the travel time and travel distance from each departure position to each destination position in the request. For example, given departure positions A and B, and destination positions X and Y, CalculateRouteMatrix will return time and distance for routes from A to X, A to Y, B to X, and B to Y (in that order). The number of results returned (and routes calculated) will be the number of DeparturePositions times the number of DestinationPositions.
Your account is charged for each route calculated, not the number of requests.
Requires that you first create a route calculator resource.
By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating routes.
Additional options include:
-
Specifying a departure time using either
DepartureTimeorDepartNow. This calculates routes based on predictive traffic data at the given time.You can't specify both
DepartureTimeandDepartNowin a single request. Specifying both parameters returns a validation error. -
Specifying a travel mode using TravelMode sets the transportation mode used to calculate the routes. This also lets you specify additional route preferences in
CarModeOptionsif traveling byCar, orTruckModeOptionsif traveling byTruck.
Implementations
sourceimpl CalculateRouteMatrix
impl CalculateRouteMatrix
sourcepub async fn send(
self
) -> Result<CalculateRouteMatrixOutput, SdkError<CalculateRouteMatrixError>>
pub async fn send(
self
) -> Result<CalculateRouteMatrixOutput, SdkError<CalculateRouteMatrixError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn calculator_name(self, input: impl Into<String>) -> Self
pub fn calculator_name(self, input: impl Into<String>) -> Self
The name of the route calculator resource that you want to use to calculate the route matrix.
sourcepub fn set_calculator_name(self, input: Option<String>) -> Self
pub fn set_calculator_name(self, input: Option<String>) -> Self
The name of the route calculator resource that you want to use to calculate the route matrix.
sourcepub fn departure_positions(self, input: Vec<f64>) -> Self
pub fn departure_positions(self, input: Vec<f64>) -> Self
Appends an item to DeparturePositions.
To override the contents of this collection use set_departure_positions.
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]
sourcepub fn set_departure_positions(self, input: Option<Vec<Vec<f64>>>) -> Self
pub fn set_departure_positions(self, input: Option<Vec<Vec<f64>>>) -> Self
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]
sourcepub fn destination_positions(self, input: Vec<f64>) -> Self
pub fn destination_positions(self, input: Vec<f64>) -> Self
Appends an item to DestinationPositions.
To override the contents of this collection use set_destination_positions.
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]
sourcepub fn set_destination_positions(self, input: Option<Vec<Vec<f64>>>) -> Self
pub fn set_destination_positions(self, input: Option<Vec<Vec<f64>>>) -> Self
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]
sourcepub fn travel_mode(self, input: TravelMode) -> Self
pub fn travel_mode(self, input: TravelMode) -> Self
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
Caruse theCarModeOptionsparameter. -
If traveling by
Truckuse theTruckModeOptionsparameter.
Default Value: Car
sourcepub fn set_travel_mode(self, input: Option<TravelMode>) -> Self
pub fn set_travel_mode(self, input: Option<TravelMode>) -> Self
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
Caruse theCarModeOptionsparameter. -
If traveling by
Truckuse theTruckModeOptionsparameter.
Default Value: Car
sourcepub fn departure_time(self, input: DateTime) -> Self
pub fn departure_time(self, input: DateTime) -> Self
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
sourcepub fn set_departure_time(self, input: Option<DateTime>) -> Self
pub fn set_departure_time(self, input: Option<DateTime>) -> Self
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
sourcepub fn depart_now(self, input: bool) -> Self
pub fn depart_now(self, input: bool) -> Self
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
sourcepub fn set_depart_now(self, input: Option<bool>) -> Self
pub fn set_depart_now(self, input: Option<bool>) -> Self
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
sourcepub fn distance_unit(self, input: DistanceUnit) -> Self
pub fn distance_unit(self, input: DistanceUnit) -> Self
Set the unit system to specify the distance.
Default Value: Kilometers
sourcepub fn set_distance_unit(self, input: Option<DistanceUnit>) -> Self
pub fn set_distance_unit(self, input: Option<DistanceUnit>) -> Self
Set the unit system to specify the distance.
Default Value: Kilometers
sourcepub fn car_mode_options(self, input: CalculateRouteCarModeOptions) -> Self
pub fn car_mode_options(self, input: CalculateRouteCarModeOptions) -> Self
Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode must be specified as Car.
sourcepub fn set_car_mode_options(
self,
input: Option<CalculateRouteCarModeOptions>
) -> Self
pub fn set_car_mode_options(
self,
input: Option<CalculateRouteCarModeOptions>
) -> Self
Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode must be specified as Car.
sourcepub fn truck_mode_options(self, input: CalculateRouteTruckModeOptions) -> Self
pub fn truck_mode_options(self, input: CalculateRouteTruckModeOptions) -> Self
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.
sourcepub fn set_truck_mode_options(
self,
input: Option<CalculateRouteTruckModeOptions>
) -> Self
pub fn set_truck_mode_options(
self,
input: Option<CalculateRouteTruckModeOptions>
) -> Self
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.
Trait Implementations
sourceimpl Clone for CalculateRouteMatrix
impl Clone for CalculateRouteMatrix
sourcefn clone(&self) -> CalculateRouteMatrix
fn clone(&self) -> CalculateRouteMatrix
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for CalculateRouteMatrix
impl Send for CalculateRouteMatrix
impl Sync for CalculateRouteMatrix
impl Unpin for CalculateRouteMatrix
impl !UnwindSafe for CalculateRouteMatrix
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more