@aws-sdk/client-geo-routes 3.873.0 → 3.879.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,31 +19,23 @@ export declare class AccessDeniedException extends __BaseException {
19
19
  */
20
20
  export interface IsolineAllowOptions {
21
21
  /**
22
- * <p>Allow Hot (High Occupancy Toll) lanes while calculating an isoline.</p>
23
- * <p>Default value: <code>false</code>
24
- * </p>
22
+ * <p>Allow Hot (High Occupancy Toll) lanes while calculating an isoline.</p> <p>Default value: <code>false</code> </p>
25
23
  * @public
26
24
  */
27
25
  Hot?: boolean | undefined;
28
26
  /**
29
- * <p>Allow Hov (High Occupancy vehicle) lanes while calculating an isoline.</p>
30
- * <p>Default value: <code>false</code>
31
- * </p>
27
+ * <p>Allow Hov (High Occupancy vehicle) lanes while calculating an isoline.</p> <p>Default value: <code>false</code> </p>
32
28
  * @public
33
29
  */
34
30
  Hov?: boolean | undefined;
35
31
  }
36
32
  /**
37
- * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of
38
- * the corridor.</p>
33
+ * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
39
34
  * @public
40
35
  */
41
36
  export interface Corridor {
42
37
  /**
43
- * <p>An ordered list of positions used to plot a route on a map.</p>
44
- * <note>
45
- * <p>LineString and Polyline are mutually exclusive properties.</p>
46
- * </note>
38
+ * <p>An ordered list of positions used to plot a route on a map.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
47
39
  * @public
48
40
  */
49
41
  LineString: number[][] | undefined;
@@ -54,26 +46,17 @@ export interface Corridor {
54
46
  Radius: number | undefined;
55
47
  }
56
48
  /**
57
- * <p>Geometry defined as an encoded corridor - an encoded polyline with a radius that defines
58
- * the width of the corridor.</p>
49
+ * <p>Geometry defined as an encoded corridor - an encoded polyline with a radius that defines the width of the corridor.</p>
59
50
  * @public
60
51
  */
61
52
  export interface PolylineCorridor {
62
53
  /**
63
- * <p>An ordered list of positions used to plot a route on a map in a lossy compression
64
- * format.</p>
65
- * <note>
66
- * <p>LineString and Polyline are mutually exclusive properties.</p>
67
- * </note>
54
+ * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
68
55
  * @public
69
56
  */
70
57
  Polyline: string | undefined;
71
58
  /**
72
- * <p>Considers all roads within the provided radius to match the provided destination to. The
73
- * roads that are considered are determined by the provided Strategy.</p>
74
- * <p>
75
- * <b>Unit</b>: <code>Meters</code>
76
- * </p>
59
+ * <p>Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.</p> <p> <b>Unit</b>: <code>Meters</code> </p>
77
60
  * @public
78
61
  */
79
62
  Radius: number | undefined;
@@ -84,33 +67,27 @@ export interface PolylineCorridor {
84
67
  */
85
68
  export interface IsolineAvoidanceAreaGeometry {
86
69
  /**
87
- * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
88
- * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
89
- * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
70
+ * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
90
71
  * @public
91
72
  */
92
73
  BoundingBox?: number[] | undefined;
93
74
  /**
94
- * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of
95
- * the corridor.</p>
75
+ * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
96
76
  * @public
97
77
  */
98
78
  Corridor?: Corridor | undefined;
99
79
  /**
100
- * <p>A list of Polygon will be excluded for calculating isolines, the list can only contain 1
101
- * polygon.</p>
80
+ * <p>A list of Polygon will be excluded for calculating isolines, the list can only contain 1 polygon.</p>
102
81
  * @public
103
82
  */
104
83
  Polygon?: number[][][] | undefined;
105
84
  /**
106
- * <p>Geometry defined as an encoded corridor – a polyline with a radius that defines the
107
- * width of the corridor. For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
85
+ * <p>Geometry defined as an encoded corridor – a polyline with a radius that defines the width of the corridor. For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
108
86
  * @public
109
87
  */
110
88
  PolylineCorridor?: PolylineCorridor | undefined;
111
89
  /**
112
- * <p>A list of PolylinePolygon's that are excluded for calculating isolines, the list can
113
- * only contain 1 polygon. For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>. </p>
90
+ * <p>A list of PolylinePolygon's that are excluded for calculating isolines, the list can only contain 1 polygon. For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>. </p>
114
91
  * @public
115
92
  */
116
93
  PolylinePolygon?: string[] | undefined;
@@ -121,8 +98,7 @@ export interface IsolineAvoidanceAreaGeometry {
121
98
  */
122
99
  export interface IsolineAvoidanceArea {
123
100
  /**
124
- * <p>Exceptions to the provided avoidance geometry, to be included while calculating an
125
- * isoline.</p>
101
+ * <p>Exceptions to the provided avoidance geometry, to be included while calculating an isoline.</p>
126
102
  * @public
127
103
  */
128
104
  Except?: IsolineAvoidanceAreaGeometry[] | undefined;
@@ -157,9 +133,7 @@ export interface IsolineAvoidanceZoneCategory {
157
133
  Category?: IsolineZoneCategory | undefined;
158
134
  }
159
135
  /**
160
- * <p>Features that are avoided while calculating isolines. Avoidance is on a best-case basis.
161
- * If an avoidance can't be satisfied for a particular case, it violates the avoidance and the
162
- * returned response produces a notice for the violation.</p>
136
+ * <p>Features that are avoided while calculating isolines. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.</p>
163
137
  * @public
164
138
  */
165
139
  export interface IsolineAvoidanceOptions {
@@ -204,11 +178,7 @@ export interface IsolineAvoidanceOptions {
204
178
  */
205
179
  TollTransponders?: boolean | undefined;
206
180
  /**
207
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
208
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
209
- * <note>
210
- * <p>There are currently no other supported values as of 26th April 2024.</p>
211
- * </note>
181
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
212
182
  * @public
213
183
  */
214
184
  TruckRoadTypes?: string[] | undefined;
@@ -251,27 +221,17 @@ export interface IsolineMatchingOptions {
251
221
  */
252
222
  NameHint?: string | undefined;
253
223
  /**
254
- * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint
255
- * will be snapped to the highway/bridge/tunnel/sliproad.</p>
256
- * <p>
257
- * <b>Unit</b>: <code>meters</code>
258
- * </p>
224
+ * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.</p> <p> <b>Unit</b>: <code>meters</code> </p>
259
225
  * @public
260
226
  */
261
227
  OnRoadThreshold?: number | undefined;
262
228
  /**
263
- * <p>Considers all roads within the provided radius to match the provided destination to. The
264
- * roads that are considered are determined by the provided Strategy.</p>
265
- * <p>
266
- * <b>Unit</b>: <code>Meters</code>
267
- * </p>
229
+ * <p>Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.</p> <p> <b>Unit</b>: <code>Meters</code> </p>
268
230
  * @public
269
231
  */
270
232
  Radius?: number | undefined;
271
233
  /**
272
- * <p>Strategy that defines matching of the position onto the road network. MatchAny considers
273
- * all roads possible, whereas MatchMostSignificantRoad matches to the most significant
274
- * road.</p>
234
+ * <p>Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.</p>
275
235
  * @public
276
236
  */
277
237
  Strategy?: MatchingStrategy | undefined;
@@ -299,10 +259,7 @@ export interface IsolineSideOfStreetOptions {
299
259
  */
300
260
  Position: number[] | undefined;
301
261
  /**
302
- * <p>Strategy that defines when the side of street position should be used. AnyStreet will
303
- * always use the provided position.</p>
304
- * <p>Default Value: <code>DividedStreetOnly</code>
305
- * </p>
262
+ * <p>Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.</p> <p>Default Value: <code>DividedStreetOnly</code> </p>
306
263
  * @public
307
264
  */
308
265
  UseWith?: SideOfStreetMatchingStrategy | undefined;
@@ -313,9 +270,7 @@ export interface IsolineSideOfStreetOptions {
313
270
  */
314
271
  export interface IsolineDestinationOptions {
315
272
  /**
316
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
317
- * moving vehicles who may not have sufficient time to make an action at an origin or a
318
- * destination.</p>
273
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
319
274
  * @public
320
275
  */
321
276
  AvoidActionsForDistance?: number | undefined;
@@ -358,10 +313,7 @@ export interface IsolineGranularityOptions {
358
313
  */
359
314
  MaxPoints?: number | undefined;
360
315
  /**
361
- * <p>Maximum resolution of the returned isoline.</p>
362
- * <p>
363
- * <b>Unit</b>: <code>meters</code>
364
- * </p>
316
+ * <p>Maximum resolution of the returned isoline.</p> <p> <b>Unit</b>: <code>meters</code> </p>
365
317
  * @public
366
318
  */
367
319
  MaxResolution?: number | undefined;
@@ -397,9 +349,7 @@ export type RoutingObjective = (typeof RoutingObjective)[keyof typeof RoutingObj
397
349
  */
398
350
  export interface IsolineOriginOptions {
399
351
  /**
400
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
401
- * moving vehicles who may not have sufficient time to make an action at an origin or a
402
- * destination.</p>
352
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
403
353
  * @public
404
354
  */
405
355
  AvoidActionsForDistance?: number | undefined;
@@ -420,8 +370,7 @@ export interface IsolineOriginOptions {
420
370
  SideOfStreet?: IsolineSideOfStreetOptions | undefined;
421
371
  }
422
372
  /**
423
- * <p>Threshold to be used for the isoline calculation. Up to 5 thresholds per provided type
424
- * can be requested.</p>
373
+ * <p>Threshold to be used for the isoline calculation. Up to 5 thresholds per provided type can be requested.</p>
425
374
  * @public
426
375
  */
427
376
  export interface IsolineThresholds {
@@ -454,20 +403,12 @@ export type TrafficUsage = (typeof TrafficUsage)[keyof typeof TrafficUsage];
454
403
  */
455
404
  export interface IsolineTrafficOptions {
456
405
  /**
457
- * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic
458
- * is used over historical traffic data. Flow traffic refers to congestion, which changes very
459
- * quickly. Duration in seconds for which flow traffic event would be considered valid. While
460
- * flow traffic event is valid it will be used over the historical traffic data. </p>
461
- * <p>
462
- * <b>Unit</b>: <code>seconds</code>
463
- * </p>
406
+ * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic is used over historical traffic data. Flow traffic refers to congestion, which changes very quickly. Duration in seconds for which flow traffic event would be considered valid. While flow traffic event is valid it will be used over the historical traffic data. </p> <p> <b>Unit</b>: <code>seconds</code> </p>
464
407
  * @public
465
408
  */
466
409
  FlowEventThresholdOverride?: number | undefined;
467
410
  /**
468
- * <p>Determines if traffic should be used or ignored while calculating the route.</p>
469
- * <p>Default Value: <code>UseTrafficData</code>
470
- * </p>
411
+ * <p>Determines if traffic should be used or ignored while calculating the route.</p> <p>Default Value: <code>UseTrafficData</code> </p>
471
412
  * @public
472
413
  */
473
414
  Usage?: TrafficUsage | undefined;
@@ -526,24 +467,18 @@ export interface IsolineCarOptions {
526
467
  */
527
468
  LicensePlate?: IsolineVehicleLicensePlate | undefined;
528
469
  /**
529
- * <p>Maximum speed.</p>
530
- * <p>
531
- * <b>Unit</b>: <code>KilometersPerHour</code>
532
- * </p>
470
+ * <p>Maximum speed.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
533
471
  * @public
534
472
  */
535
473
  MaxSpeed?: number | undefined;
536
474
  /**
537
- * <p>The number of occupants in the vehicle.</p>
538
- * <p>Default Value: <code>1</code>
539
- * </p>
475
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
540
476
  * @public
541
477
  */
542
478
  Occupancy?: number | undefined;
543
479
  }
544
480
  /**
545
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
546
- * </p>
481
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p>
547
482
  * @public
548
483
  */
549
484
  export interface IsolineScooterOptions {
@@ -558,17 +493,12 @@ export interface IsolineScooterOptions {
558
493
  */
559
494
  LicensePlate?: IsolineVehicleLicensePlate | undefined;
560
495
  /**
561
- * <p>Maximum speed specified.</p>
562
- * <p>
563
- * <b>Unit</b>: <code>KilometersPerHour</code>
564
- * </p>
496
+ * <p>Maximum speed specified.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
565
497
  * @public
566
498
  */
567
499
  MaxSpeed?: number | undefined;
568
500
  /**
569
- * <p>The number of occupants in the vehicle.</p>
570
- * <p>Default Value: <code>1</code>
571
- * </p>
501
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
572
502
  * @public
573
503
  */
574
504
  Occupancy?: number | undefined;
@@ -605,9 +535,7 @@ export interface IsolineTrailerOptions {
605
535
  */
606
536
  AxleCount?: number | undefined;
607
537
  /**
608
- * <p>Number of trailers attached to the vehicle.</p>
609
- * <p>Default Value: <code>0</code>
610
- * </p>
538
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
611
539
  * @public
612
540
  */
613
541
  TrailerCount?: number | undefined;
@@ -626,51 +554,32 @@ export declare const IsolineTruckType: {
626
554
  */
627
555
  export type IsolineTruckType = (typeof IsolineTruckType)[keyof typeof IsolineTruckType];
628
556
  /**
629
- * <p>Specifies the total weight for the specified axle group. Meant for usage in countries
630
- * that have different regulations based on the axle group type.</p>
631
- * <p>
632
- * <b>Unit</b>: <code>Kilograms</code>
633
- * </p>
557
+ * <p>Specifies the total weight for the specified axle group. Meant for usage in countries that have different regulations based on the axle group type.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
634
558
  * @public
635
559
  */
636
560
  export interface WeightPerAxleGroup {
637
561
  /**
638
- * <p>Weight for single axle group.</p>
639
- * <p>
640
- * <b>Unit</b>: <code>Kilograms</code>
641
- * </p>
562
+ * <p>Weight for single axle group.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
642
563
  * @public
643
564
  */
644
565
  Single?: number | undefined;
645
566
  /**
646
- * <p>Weight for tandem axle group.</p>
647
- * <p>
648
- * <b>Unit</b>: <code>Kilograms</code>
649
- * </p>
567
+ * <p>Weight for tandem axle group.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
650
568
  * @public
651
569
  */
652
570
  Tandem?: number | undefined;
653
571
  /**
654
- * <p>Weight for triple axle group.</p>
655
- * <p>
656
- * <b>Unit</b>: <code>Kilograms</code>
657
- * </p>
572
+ * <p>Weight for triple axle group.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
658
573
  * @public
659
574
  */
660
575
  Triple?: number | undefined;
661
576
  /**
662
- * <p>Weight for quad axle group.</p>
663
- * <p>
664
- * <b>Unit</b>: <code>Kilograms</code>
665
- * </p>
577
+ * <p>Weight for quad axle group.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
666
578
  * @public
667
579
  */
668
580
  Quad?: number | undefined;
669
581
  /**
670
- * <p>Weight for quad quint group.</p>
671
- * <p>
672
- * <b>Unit</b>: <code>Kilograms</code>
673
- * </p>
582
+ * <p>Weight for quad quint group.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
674
583
  * @public
675
584
  */
676
585
  Quint?: number | undefined;
@@ -691,10 +600,7 @@ export interface IsolineTruckOptions {
691
600
  */
692
601
  EngineType?: IsolineEngineType | undefined;
693
602
  /**
694
- * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
695
- * <p>
696
- * <b>Unit</b>: <code>Kilograms</code>
697
- * </p>
603
+ * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
698
604
  * @public
699
605
  */
700
606
  GrossWeight?: number | undefined;
@@ -704,34 +610,22 @@ export interface IsolineTruckOptions {
704
610
  */
705
611
  HazardousCargos?: IsolineHazardousCargoType[] | undefined;
706
612
  /**
707
- * <p>Height of the vehicle.</p>
708
- * <p>
709
- * <b>Unit</b>: <code>centimeters</code>
710
- * </p>
613
+ * <p>Height of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
711
614
  * @public
712
615
  */
713
616
  Height?: number | undefined;
714
617
  /**
715
- * <p>Height of the vehicle above its first axle.</p>
716
- * <p>
717
- * <b>Unit</b>: <code>centimeters</code>
718
- * </p>
618
+ * <p>Height of the vehicle above its first axle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
719
619
  * @public
720
620
  */
721
621
  HeightAboveFirstAxle?: number | undefined;
722
622
  /**
723
- * <p>Kingpin to rear axle length of the vehicle.</p>
724
- * <p>
725
- * <b>Unit</b>: <code>centimeters</code>
726
- * </p>
623
+ * <p>Kingpin to rear axle length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
727
624
  * @public
728
625
  */
729
626
  KpraLength?: number | undefined;
730
627
  /**
731
- * <p>Length of the vehicle.</p>
732
- * <p>
733
- * <b>Unit</b>: <code>centimeters</code>
734
- * </p>
628
+ * <p>Length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
735
629
  * @public
736
630
  */
737
631
  Length?: number | undefined;
@@ -741,25 +635,17 @@ export interface IsolineTruckOptions {
741
635
  */
742
636
  LicensePlate?: IsolineVehicleLicensePlate | undefined;
743
637
  /**
744
- * <p>Maximum speed specified.</p>
745
- * <p>
746
- * <b>Unit</b>: <code>KilometersPerHour</code>
747
- * </p>
638
+ * <p>Maximum speed specified.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
748
639
  * @public
749
640
  */
750
641
  MaxSpeed?: number | undefined;
751
642
  /**
752
- * <p>The number of occupants in the vehicle.</p>
753
- * <p>Default Value: <code>1</code>
754
- * </p>
643
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
755
644
  * @public
756
645
  */
757
646
  Occupancy?: number | undefined;
758
647
  /**
759
- * <p>Payload capacity of the vehicle and trailers attached.</p>
760
- * <p>
761
- * <b>Unit</b>: <code>kilograms</code>
762
- * </p>
648
+ * <p>Payload capacity of the vehicle and trailers attached.</p> <p> <b>Unit</b>: <code>kilograms</code> </p>
763
649
  * @public
764
650
  */
765
651
  PayloadCapacity?: number | undefined;
@@ -779,99 +665,22 @@ export interface IsolineTruckOptions {
779
665
  */
780
666
  TruckType?: IsolineTruckType | undefined;
781
667
  /**
782
- * <p>The tunnel restriction code.</p>
783
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
784
- * in Great Britain. They relate to the types of dangerous goods that can be transported
785
- * through them.</p>
786
- * <ul>
787
- * <li>
788
- * <p>
789
- * <i>Tunnel Category B</i>
790
- * </p>
791
- * <ul>
792
- * <li>
793
- * <p>
794
- * <i>Risk Level</i>: Limited risk</p>
795
- * </li>
796
- * <li>
797
- * <p>
798
- * <i>Restrictions</i>: Few restrictions</p>
799
- * </li>
800
- * </ul>
801
- * </li>
802
- * <li>
803
- * <p>
804
- * <i>Tunnel Category C</i>
805
- * </p>
806
- * <ul>
807
- * <li>
808
- * <p>
809
- * <i>Risk Level</i>: Medium risk</p>
810
- * </li>
811
- * <li>
812
- * <p>
813
- * <i>Restrictions</i>: Some restrictions</p>
814
- * </li>
815
- * </ul>
816
- * </li>
817
- * <li>
818
- * <p>
819
- * <i>Tunnel Category D</i>
820
- * </p>
821
- * <ul>
822
- * <li>
823
- * <p>
824
- * <i>Risk Level</i>: High risk</p>
825
- * </li>
826
- * <li>
827
- * <p>
828
- * <i>Restrictions</i>: Many restrictions occur</p>
829
- * </li>
830
- * </ul>
831
- * </li>
832
- * <li>
833
- * <p>
834
- * <i>Tunnel Category E</i>
835
- * </p>
836
- * <ul>
837
- * <li>
838
- * <p>
839
- * <i>Risk Level</i>: Very high risk</p>
840
- * </li>
841
- * <li>
842
- * <p>
843
- * <i>Restrictions</i>: Restricted tunnel</p>
844
- * </li>
845
- * </ul>
846
- * </li>
847
- * </ul>
668
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
848
669
  * @public
849
670
  */
850
671
  TunnelRestrictionCode?: string | undefined;
851
672
  /**
852
- * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for
853
- * usage in countries where the differences in axle types or axle groups are not
854
- * distinguished.</p>
855
- * <p>
856
- * <b>Unit</b>: <code>Kilograms</code>
857
- * </p>
673
+ * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for usage in countries where the differences in axle types or axle groups are not distinguished.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
858
674
  * @public
859
675
  */
860
676
  WeightPerAxle?: number | undefined;
861
677
  /**
862
- * <p>Specifies the total weight for the specified axle group. Meant for usage in countries
863
- * that have different regulations based on the axle group type.</p>
864
- * <p>
865
- * <b>Unit</b>: <code>Kilograms</code>
866
- * </p>
678
+ * <p>Specifies the total weight for the specified axle group. Meant for usage in countries that have different regulations based on the axle group type.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
867
679
  * @public
868
680
  */
869
681
  WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
870
682
  /**
871
- * <p>Width of the vehicle.</p>
872
- * <p>
873
- * <b>Unit</b>: <code>centimeters</code>
874
- * </p>
683
+ * <p>Width of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
875
684
  * @public
876
685
  */
877
686
  Width?: number | undefined;
@@ -887,12 +696,7 @@ export interface IsolineTravelModeOptions {
887
696
  */
888
697
  Car?: IsolineCarOptions | undefined;
889
698
  /**
890
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
891
- * </p>
892
- * <note>
893
- * <p>When travel mode is set to <code>Scooter</code>, then the avoidance option
894
- * <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p>
895
- * </note>
699
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p> <note> <p>When travel mode is set to <code>Scooter</code>, then the avoidance option <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p> </note>
896
700
  * @public
897
701
  */
898
702
  Scooter?: IsolineScooterOptions | undefined;
@@ -912,24 +716,12 @@ export interface CalculateIsolinesRequest {
912
716
  */
913
717
  Allow?: IsolineAllowOptions | undefined;
914
718
  /**
915
- * <p>Time of arrival at the destination.</p>
916
- * <p>Time format: <code>YYYY-MM-DDThh:mm:ss.sssZ |
917
- * YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
918
- * </p>
919
- * <p>Examples:</p>
920
- * <p>
921
- * <code>2020-04-22T17:57:24Z</code>
922
- * </p>
923
- * <p>
924
- * <code>2020-04-22T17:57:24+02:00</code>
925
- * </p>
719
+ * <p>Time of arrival at the destination.</p> <p>Time format: <code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
926
720
  * @public
927
721
  */
928
722
  ArrivalTime?: string | undefined;
929
723
  /**
930
- * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis.
931
- * If an avoidance can't be satisfied for a particular case, it violates the avoidance and the
932
- * returned response produces a notice for the violation.</p>
724
+ * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.</p>
933
725
  * @public
934
726
  */
935
727
  Avoid?: IsolineAvoidanceOptions | undefined;
@@ -939,22 +731,12 @@ export interface CalculateIsolinesRequest {
939
731
  */
940
732
  DepartNow?: boolean | undefined;
941
733
  /**
942
- * <p>Time of departure from thr origin.</p>
943
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
944
- * </p>
945
- * <p>Examples:</p>
946
- * <p>
947
- * <code>2020-04-22T17:57:24Z</code>
948
- * </p>
949
- * <p>
950
- * <code>2020-04-22T17:57:24+02:00</code>
951
- * </p>
734
+ * <p>Time of departure from thr origin.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
952
735
  * @public
953
736
  */
954
737
  DepartureTime?: string | undefined;
955
738
  /**
956
- * <p>The final position for the route. In the World Geodetic System (WGS 84) format:
957
- * <code>[longitude, latitude]</code>.</p>
739
+ * <p>The final position for the route. In the World Geodetic System (WGS 84) format: <code>[longitude, latitude]</code>.</p>
958
740
  * @public
959
741
  */
960
742
  Destination?: number[] | undefined;
@@ -964,9 +746,7 @@ export interface CalculateIsolinesRequest {
964
746
  */
965
747
  DestinationOptions?: IsolineDestinationOptions | undefined;
966
748
  /**
967
- * <p>The format of the returned IsolineGeometry. </p>
968
- * <p>Default Value:<code>FlexiblePolyline</code>
969
- * </p>
749
+ * <p>The format of the returned IsolineGeometry. </p> <p>Default Value:<code>FlexiblePolyline</code> </p>
970
750
  * @public
971
751
  */
972
752
  IsolineGeometryFormat?: GeometryFormat | undefined;
@@ -976,25 +756,17 @@ export interface CalculateIsolinesRequest {
976
756
  */
977
757
  IsolineGranularity?: IsolineGranularityOptions | undefined;
978
758
  /**
979
- * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
980
- * signature must be provided when making a request. </p>
759
+ * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request. </p>
981
760
  * @public
982
761
  */
983
762
  Key?: string | undefined;
984
763
  /**
985
- * <p>Specifies the optimization criteria for when calculating an isoline. AccurateCalculation
986
- * generates an isoline of higher granularity that is more precise. FastCalculation generates
987
- * an isoline faster by reducing the granularity, and in turn the quality of the isoline.
988
- * BalancedCalculation generates an isoline by balancing between quality and performance. </p>
989
- * <p>Default Value: <code>BalancedCalculation</code>
990
- * </p>
764
+ * <p>Specifies the optimization criteria for when calculating an isoline. AccurateCalculation generates an isoline of higher granularity that is more precise. FastCalculation generates an isoline faster by reducing the granularity, and in turn the quality of the isoline. BalancedCalculation generates an isoline by balancing between quality and performance. </p> <p>Default Value: <code>BalancedCalculation</code> </p>
991
765
  * @public
992
766
  */
993
767
  OptimizeIsolineFor?: IsolineOptimizationObjective | undefined;
994
768
  /**
995
- * <p>Specifies the optimization criteria for calculating a route.</p>
996
- * <p>Default Value: <code>FastestRoute</code>
997
- * </p>
769
+ * <p>Specifies the optimization criteria for calculating a route.</p> <p>Default Value: <code>FastestRoute</code> </p>
998
770
  * @public
999
771
  */
1000
772
  OptimizeRoutingFor?: RoutingObjective | undefined;
@@ -1009,12 +781,7 @@ export interface CalculateIsolinesRequest {
1009
781
  */
1010
782
  OriginOptions?: IsolineOriginOptions | undefined;
1011
783
  /**
1012
- * <p>Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type
1013
- * can be requested.</p>
1014
- * <p> You incur a calculation charge for each threshold. Using a large amount of thresholds in a
1015
- * request can lead you to incur unexpected charges. See
1016
- * <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`">
1017
- * Amazon Location's pricing page</a> for more information.</p>
784
+ * <p>Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type can be requested.</p> <p> You incur a calculation charge for each threshold. Using a large amount of thresholds in a request can lead you to incur unexpected charges. See <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`"> Amazon Location's pricing page</a> for more information.</p>
1018
785
  * @public
1019
786
  */
1020
787
  Thresholds: IsolineThresholds | undefined;
@@ -1024,14 +791,7 @@ export interface CalculateIsolinesRequest {
1024
791
  */
1025
792
  Traffic?: IsolineTrafficOptions | undefined;
1026
793
  /**
1027
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
1028
- * of travel and road compatibility.</p>
1029
- * <note>
1030
- * <p> The mode <code>Scooter</code> also applies to motorcycles, set to
1031
- * <code>Scooter</code> when wanted to calculate options for motorcycles.</p>
1032
- * </note>
1033
- * <p>Default Value: <code>Car</code>
1034
- * </p>
794
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <note> <p> The mode <code>Scooter</code> also applies to motorcycles, set to <code>Scooter</code> when wanted to calculate options for motorcycles.</p> </note> <p>Default Value: <code>Car</code> </p>
1035
795
  * @public
1036
796
  */
1037
797
  TravelMode?: IsolineTravelMode | undefined;
@@ -1047,33 +807,23 @@ export interface CalculateIsolinesRequest {
1047
807
  */
1048
808
  export interface IsolineConnectionGeometry {
1049
809
  /**
1050
- * <p>An ordered list of positions used to plot a route on a map.</p>
1051
- * <note>
1052
- * <p>LineString and Polyline are mutually exclusive properties.</p>
1053
- * </note>
810
+ * <p>An ordered list of positions used to plot a route on a map.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
1054
811
  * @public
1055
812
  */
1056
813
  LineString?: number[][] | undefined;
1057
814
  /**
1058
- * <p>An ordered list of positions used to plot a route on a map in a lossy compression
1059
- * format.</p>
1060
- * <note>
1061
- * <p>LineString and Polyline are mutually exclusive properties.</p>
1062
- * </note>
815
+ * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
1063
816
  * @public
1064
817
  */
1065
818
  Polyline?: string | undefined;
1066
819
  }
1067
820
  /**
1068
- * <p>Isolines may contain multiple components, if these components are connected by ferry
1069
- * links. These components are returned as separate polygons while the ferry links are
1070
- * returned as connections.</p>
821
+ * <p>Isolines may contain multiple components, if these components are connected by ferry links. These components are returned as separate polygons while the ferry links are returned as connections.</p>
1071
822
  * @public
1072
823
  */
1073
824
  export interface IsolineConnection {
1074
825
  /**
1075
- * <p>Index of the polygon corresponding to the "from" component of the connection.
1076
- * The polygon is available from <code>Isoline[].Geometries</code>.</p>
826
+ * <p>Index of the polygon corresponding to the "from" component of the connection. The polygon is available from <code>Isoline[].Geometries</code>.</p>
1077
827
  * @public
1078
828
  */
1079
829
  FromPolygonIndex: number | undefined;
@@ -1083,8 +833,7 @@ export interface IsolineConnection {
1083
833
  */
1084
834
  Geometry: IsolineConnectionGeometry | undefined;
1085
835
  /**
1086
- * <p>Index of the polygon corresponding to the "to" component of the connection.
1087
- * The polygon is available from <code>Isoline[].Geometries</code>.</p>
836
+ * <p>Index of the polygon corresponding to the "to" component of the connection. The polygon is available from <code>Isoline[].Geometries</code>.</p>
1088
837
  * @public
1089
838
  */
1090
839
  ToPolygonIndex: number | undefined;
@@ -1095,15 +844,12 @@ export interface IsolineConnection {
1095
844
  */
1096
845
  export interface IsolineShapeGeometry {
1097
846
  /**
1098
- * <p>A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first
1099
- * linear ring (the outer ring) and from 2nd item to the last item (the inner rings).</p>
847
+ * <p>A list of Isoline Polygons, for each isoline polygon, it contains polygons of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).</p>
1100
848
  * @public
1101
849
  */
1102
850
  Polygon?: number[][][] | undefined;
1103
851
  /**
1104
- * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains
1105
- * PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last
1106
- * item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
852
+ * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
1107
853
  * @public
1108
854
  */
1109
855
  PolylinePolygon?: string[] | undefined;
@@ -1114,9 +860,7 @@ export interface IsolineShapeGeometry {
1114
860
  */
1115
861
  export interface Isoline {
1116
862
  /**
1117
- * <p>Isolines may contain multiple components, if these components are connected by ferry
1118
- * links. These components are returned as separate polygons while the ferry links are
1119
- * returned as connections.</p>
863
+ * <p>Isolines may contain multiple components, if these components are connected by ferry links. These components are returned as separate polygons while the ferry links are returned as connections.</p>
1120
864
  * @public
1121
865
  */
1122
866
  Connections: IsolineConnection[] | undefined;
@@ -1141,38 +885,17 @@ export interface Isoline {
1141
885
  */
1142
886
  export interface CalculateIsolinesResponse {
1143
887
  /**
1144
- * <p>Time of arrival at the destination. This parameter is returned only if the Destination
1145
- * parameters was provided in the request. </p>
1146
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
1147
- * </p>
1148
- * <p>Examples:</p>
1149
- * <p>
1150
- * <code>2020-04-22T17:57:24Z</code>
1151
- * </p>
1152
- * <p>
1153
- * <code>2020-04-22T17:57:24+02:00</code>
1154
- * </p>
888
+ * <p>Time of arrival at the destination. This parameter is returned only if the Destination parameters was provided in the request. </p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
1155
889
  * @public
1156
890
  */
1157
891
  ArrivalTime?: string | undefined;
1158
892
  /**
1159
- * <p>Time of departure from thr origin.</p>
1160
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
1161
- * </p>
1162
- * <p>Examples:</p>
1163
- * <p>
1164
- * <code>2020-04-22T17:57:24Z</code>
1165
- * </p>
1166
- * <p>
1167
- * <code>2020-04-22T17:57:24+02:00</code>
1168
- * </p>
893
+ * <p>Time of departure from thr origin.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
1169
894
  * @public
1170
895
  */
1171
896
  DepartureTime?: string | undefined;
1172
897
  /**
1173
- * <p>The format of the returned IsolineGeometry. </p>
1174
- * <p>Default Value:<code>FlexiblePolyline</code>
1175
- * </p>
898
+ * <p>The format of the returned IsolineGeometry. </p> <p>Default Value:<code>FlexiblePolyline</code> </p>
1176
899
  * @public
1177
900
  */
1178
901
  IsolineGeometryFormat: GeometryFormat | undefined;
@@ -1198,8 +921,7 @@ export interface CalculateIsolinesResponse {
1198
921
  SnappedOrigin?: number[] | undefined;
1199
922
  }
1200
923
  /**
1201
- * <p>The request processing has failed because of an unknown error, exception or
1202
- * failure.</p>
924
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
1203
925
  * @public
1204
926
  */
1205
927
  export declare class InternalServerException extends __BaseException {
@@ -1227,8 +949,7 @@ export declare class ThrottlingException extends __BaseException {
1227
949
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1228
950
  }
1229
951
  /**
1230
- * <p>The input fails to satisfy the constraints specified by the Amazon Location
1231
- * service.</p>
952
+ * <p>The input fails to satisfy the constraints specified by the Amazon Location service.</p>
1232
953
  * @public
1233
954
  */
1234
955
  export interface ValidationExceptionField {
@@ -1310,16 +1031,12 @@ export declare class ValidationException extends __BaseException {
1310
1031
  */
1311
1032
  export interface RouteMatrixAllowOptions {
1312
1033
  /**
1313
- * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p>
1314
- * <p>Default value: <code>false</code>
1315
- * </p>
1034
+ * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p> <p>Default value: <code>false</code> </p>
1316
1035
  * @public
1317
1036
  */
1318
1037
  Hot?: boolean | undefined;
1319
1038
  /**
1320
- * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p>
1321
- * <p>Default value: <code>false</code>
1322
- * </p>
1039
+ * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p> <p>Default value: <code>false</code> </p>
1323
1040
  * @public
1324
1041
  */
1325
1042
  Hov?: boolean | undefined;
@@ -1330,9 +1047,7 @@ export interface RouteMatrixAllowOptions {
1330
1047
  */
1331
1048
  export interface RouteMatrixAvoidanceAreaGeometry {
1332
1049
  /**
1333
- * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
1334
- * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
1335
- * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1050
+ * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1336
1051
  * @public
1337
1052
  */
1338
1053
  BoundingBox?: number[] | undefined;
@@ -1342,9 +1057,7 @@ export interface RouteMatrixAvoidanceAreaGeometry {
1342
1057
  */
1343
1058
  Polygon?: number[][][] | undefined;
1344
1059
  /**
1345
- * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains
1346
- * PolylinePolygon of the first linear ring (the outer ring) and from second item to the last
1347
- * item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
1060
+ * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from second item to the last item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
1348
1061
  * @public
1349
1062
  */
1350
1063
  PolylinePolygon?: string[] | undefined;
@@ -1385,11 +1098,7 @@ export interface RouteMatrixAvoidanceZoneCategory {
1385
1098
  Category?: RouteMatrixZoneCategory | undefined;
1386
1099
  }
1387
1100
  /**
1388
- * <p>Specifies options for areas to avoid when calculating the route. This is a best-effort
1389
- * avoidance setting, meaning the router will try to honor the avoidance preferences but may
1390
- * still include restricted areas if no feasible alternative route exists. If avoidance
1391
- * options are not followed, the response will indicate that the avoidance criteria were
1392
- * violated.</p>
1101
+ * <p>Specifies options for areas to avoid when calculating the route. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.</p>
1393
1102
  * @public
1394
1103
  */
1395
1104
  export interface RouteMatrixAvoidanceOptions {
@@ -1429,11 +1138,7 @@ export interface RouteMatrixAvoidanceOptions {
1429
1138
  */
1430
1139
  TollTransponders?: boolean | undefined;
1431
1140
  /**
1432
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
1433
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
1434
- * <note>
1435
- * <p>There are currently no other supported values as of 26th April 2024.</p>
1436
- * </note>
1141
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
1437
1142
  * @public
1438
1143
  */
1439
1144
  TruckRoadTypes?: string[] | undefined;
@@ -1464,27 +1169,17 @@ export interface RouteMatrixMatchingOptions {
1464
1169
  */
1465
1170
  NameHint?: string | undefined;
1466
1171
  /**
1467
- * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint
1468
- * will be snapped to the highway/bridge/tunnel/sliproad.</p>
1469
- * <p>
1470
- * <b>Unit</b>: <code>meters</code>
1471
- * </p>
1172
+ * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.</p> <p> <b>Unit</b>: <code>meters</code> </p>
1472
1173
  * @public
1473
1174
  */
1474
1175
  OnRoadThreshold?: number | undefined;
1475
1176
  /**
1476
- * <p>Considers all roads within the provided radius to match the provided destination to. The
1477
- * roads that are considered are determined by the provided Strategy.</p>
1478
- * <p>
1479
- * <b>Unit</b>: <code>Meters</code>
1480
- * </p>
1177
+ * <p>Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.</p> <p> <b>Unit</b>: <code>Meters</code> </p>
1481
1178
  * @public
1482
1179
  */
1483
1180
  Radius?: number | undefined;
1484
1181
  /**
1485
- * <p>Strategy that defines matching of the position onto the road network. MatchAny considers
1486
- * all roads possible, whereas MatchMostSignificantRoad matches to the most significant
1487
- * road.</p>
1182
+ * <p>Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.</p>
1488
1183
  * @public
1489
1184
  */
1490
1185
  Strategy?: MatchingStrategy | undefined;
@@ -1500,10 +1195,7 @@ export interface RouteMatrixSideOfStreetOptions {
1500
1195
  */
1501
1196
  Position: number[] | undefined;
1502
1197
  /**
1503
- * <p>Strategy that defines when the side of street position should be used. AnyStreet will
1504
- * always use the provided position.</p>
1505
- * <p>Default Value: <code>DividedStreetOnly</code>
1506
- * </p>
1198
+ * <p>Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.</p> <p>Default Value: <code>DividedStreetOnly</code> </p>
1507
1199
  * @public
1508
1200
  */
1509
1201
  UseWith?: SideOfStreetMatchingStrategy | undefined;
@@ -1514,9 +1206,7 @@ export interface RouteMatrixSideOfStreetOptions {
1514
1206
  */
1515
1207
  export interface RouteMatrixDestinationOptions {
1516
1208
  /**
1517
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
1518
- * moving vehicles who may not have sufficient time to make an action at an origin or a
1519
- * destination.</p>
1209
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
1520
1210
  * @public
1521
1211
  */
1522
1212
  AvoidActionsForDistance?: number | undefined;
@@ -1553,15 +1243,12 @@ export interface RouteMatrixDestination {
1553
1243
  Position: number[] | undefined;
1554
1244
  }
1555
1245
  /**
1556
- * <p>Specifies strict exclusion options for the route calculation. This setting mandates that
1557
- * the router will avoid any routes that include the specified options, rather than merely
1558
- * attempting to minimize them.</p>
1246
+ * <p>Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.</p>
1559
1247
  * @public
1560
1248
  */
1561
1249
  export interface RouteMatrixExclusionOptions {
1562
1250
  /**
1563
- * <p>List of countries to be avoided defined by two-letter or three-letter country
1564
- * codes.</p>
1251
+ * <p>List of countries to be avoided defined by two-letter or three-letter country codes.</p>
1565
1252
  * @public
1566
1253
  */
1567
1254
  Countries: string[] | undefined;
@@ -1572,9 +1259,7 @@ export interface RouteMatrixExclusionOptions {
1572
1259
  */
1573
1260
  export interface RouteMatrixOriginOptions {
1574
1261
  /**
1575
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
1576
- * moving vehicles who may not have sufficient time to make an action at an origin or a
1577
- * destination.</p>
1262
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
1578
1263
  * @public
1579
1264
  */
1580
1265
  AvoidActionsForDistance?: number | undefined;
@@ -1627,24 +1312,17 @@ export interface RouteMatrixAutoCircle {
1627
1312
  MaxRadius?: number | undefined;
1628
1313
  }
1629
1314
  /**
1630
- * <p>Geometry defined as a circle. When request routing boundary was set as
1631
- * <code>AutoCircle</code>, the response routing boundary will return <code>Circle</code>
1632
- * derived from the <code>AutoCircle</code> settings.</p>
1315
+ * <p>Geometry defined as a circle. When request routing boundary was set as <code>AutoCircle</code>, the response routing boundary will return <code>Circle</code> derived from the <code>AutoCircle</code> settings.</p>
1633
1316
  * @public
1634
1317
  */
1635
1318
  export interface Circle {
1636
1319
  /**
1637
- * <p>Center of the Circle defined in longitude and latitude coordinates.</p>
1638
- * <p>Example: <code>[-123.1174, 49.2847]</code> represents the position with longitude
1639
- * <code>-123.1174</code> and latitude <code>49.2847</code>. </p>
1320
+ * <p>Center of the Circle defined in longitude and latitude coordinates.</p> <p>Example: <code>[-123.1174, 49.2847]</code> represents the position with longitude <code>-123.1174</code> and latitude <code>49.2847</code>. </p>
1640
1321
  * @public
1641
1322
  */
1642
1323
  Center: number[] | undefined;
1643
1324
  /**
1644
- * <p>Radius of the Circle.</p>
1645
- * <p>
1646
- * <b>Unit</b>: <code>meters</code>
1647
- * </p>
1325
+ * <p>Radius of the Circle.</p> <p> <b>Unit</b>: <code>meters</code> </p>
1648
1326
  * @public
1649
1327
  */
1650
1328
  Radius: number | undefined;
@@ -1660,16 +1338,12 @@ export interface RouteMatrixBoundaryGeometry {
1660
1338
  */
1661
1339
  AutoCircle?: RouteMatrixAutoCircle | undefined;
1662
1340
  /**
1663
- * <p>Geometry defined as a circle. When request routing boundary was set as
1664
- * <code>AutoCircle</code>, the response routing boundary will return <code>Circle</code>
1665
- * derived from the <code>AutoCircle</code> settings.</p>
1341
+ * <p>Geometry defined as a circle. When request routing boundary was set as <code>AutoCircle</code>, the response routing boundary will return <code>Circle</code> derived from the <code>AutoCircle</code> settings.</p>
1666
1342
  * @public
1667
1343
  */
1668
1344
  Circle?: Circle | undefined;
1669
1345
  /**
1670
- * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
1671
- * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
1672
- * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1346
+ * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1673
1347
  * @public
1674
1348
  */
1675
1349
  BoundingBox?: number[] | undefined;
@@ -1680,8 +1354,7 @@ export interface RouteMatrixBoundaryGeometry {
1680
1354
  Polygon?: number[][][] | undefined;
1681
1355
  }
1682
1356
  /**
1683
- * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations
1684
- * outside the boundary are considered invalid.</p>
1357
+ * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations outside the boundary are considered invalid.</p>
1685
1358
  * @public
1686
1359
  */
1687
1360
  export interface RouteMatrixBoundary {
@@ -1691,8 +1364,7 @@ export interface RouteMatrixBoundary {
1691
1364
  */
1692
1365
  Geometry?: RouteMatrixBoundaryGeometry | undefined;
1693
1366
  /**
1694
- * <p>No restrictions in terms of a routing boundary, and is typically used for longer
1695
- * routes.</p>
1367
+ * <p>No restrictions in terms of a routing boundary, and is typically used for longer routes.</p>
1696
1368
  * @public
1697
1369
  */
1698
1370
  Unbounded?: boolean | undefined;
@@ -1703,17 +1375,12 @@ export interface RouteMatrixBoundary {
1703
1375
  */
1704
1376
  export interface RouteMatrixTrafficOptions {
1705
1377
  /**
1706
- * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic
1707
- * is used over historical traffic data. Flow traffic refers to congestion, which changes very
1708
- * quickly. Duration in seconds for which flow traffic event would be considered valid. While
1709
- * flow traffic event is valid it will be used over the historical traffic data. </p>
1378
+ * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic is used over historical traffic data. Flow traffic refers to congestion, which changes very quickly. Duration in seconds for which flow traffic event would be considered valid. While flow traffic event is valid it will be used over the historical traffic data. </p>
1710
1379
  * @public
1711
1380
  */
1712
1381
  FlowEventThresholdOverride?: number | undefined;
1713
1382
  /**
1714
- * <p>Determines if traffic should be used or ignored while calculating the route.</p>
1715
- * <p>Default Value: <code>UseTrafficData</code>
1716
- * </p>
1383
+ * <p>Determines if traffic should be used or ignored while calculating the route.</p> <p>Default Value: <code>UseTrafficData</code> </p>
1717
1384
  * @public
1718
1385
  */
1719
1386
  Usage?: TrafficUsage | undefined;
@@ -1754,24 +1421,18 @@ export interface RouteMatrixCarOptions {
1754
1421
  */
1755
1422
  LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1756
1423
  /**
1757
- * <p>Maximum speed</p>
1758
- * <p>
1759
- * <b>Unit</b>: <code>KilometersPerHour</code>
1760
- * </p>
1424
+ * <p>Maximum speed</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
1761
1425
  * @public
1762
1426
  */
1763
1427
  MaxSpeed?: number | undefined;
1764
1428
  /**
1765
- * <p>The number of occupants in the vehicle.</p>
1766
- * <p>Default Value: <code>1</code>
1767
- * </p>
1429
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
1768
1430
  * @public
1769
1431
  */
1770
1432
  Occupancy?: number | undefined;
1771
1433
  }
1772
1434
  /**
1773
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
1774
- * </p>
1435
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p>
1775
1436
  * @public
1776
1437
  */
1777
1438
  export interface RouteMatrixScooterOptions {
@@ -1781,17 +1442,12 @@ export interface RouteMatrixScooterOptions {
1781
1442
  */
1782
1443
  LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1783
1444
  /**
1784
- * <p>Maximum speed.</p>
1785
- * <p>
1786
- * <b>Unit</b>: <code>KilometersPerHour</code>
1787
- * </p>
1445
+ * <p>Maximum speed.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
1788
1446
  * @public
1789
1447
  */
1790
1448
  MaxSpeed?: number | undefined;
1791
1449
  /**
1792
- * <p>The number of occupants in the vehicle.</p>
1793
- * <p>Default Value: <code>1</code>
1794
- * </p>
1450
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
1795
1451
  * @public
1796
1452
  */
1797
1453
  Occupancy?: number | undefined;
@@ -1823,9 +1479,7 @@ export type RouteMatrixHazardousCargoType = (typeof RouteMatrixHazardousCargoTyp
1823
1479
  */
1824
1480
  export interface RouteMatrixTrailerOptions {
1825
1481
  /**
1826
- * <p>Number of trailers attached to the vehicle.</p>
1827
- * <p>Default Value: <code>0</code>
1828
- * </p>
1482
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
1829
1483
  * @public
1830
1484
  */
1831
1485
  TrailerCount?: number | undefined;
@@ -1854,10 +1508,7 @@ export interface RouteMatrixTruckOptions {
1854
1508
  */
1855
1509
  AxleCount?: number | undefined;
1856
1510
  /**
1857
- * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
1858
- * <p>
1859
- * <b>Unit</b>: <code>Kilograms</code>
1860
- * </p>
1511
+ * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
1861
1512
  * @public
1862
1513
  */
1863
1514
  GrossWeight?: number | undefined;
@@ -1867,26 +1518,17 @@ export interface RouteMatrixTruckOptions {
1867
1518
  */
1868
1519
  HazardousCargos?: RouteMatrixHazardousCargoType[] | undefined;
1869
1520
  /**
1870
- * <p>Height of the vehicle.</p>
1871
- * <p>
1872
- * <b>Unit</b>: <code>centimeters</code>
1873
- * </p>
1521
+ * <p>Height of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
1874
1522
  * @public
1875
1523
  */
1876
1524
  Height?: number | undefined;
1877
1525
  /**
1878
- * <p>Kingpin to rear axle length of the vehicle</p>
1879
- * <p>
1880
- * <b>Unit</b>: <code>centimeters</code>
1881
- * </p>
1526
+ * <p>Kingpin to rear axle length of the vehicle</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
1882
1527
  * @public
1883
1528
  */
1884
1529
  KpraLength?: number | undefined;
1885
1530
  /**
1886
- * <p>Length of the vehicle.</p>
1887
- * <p>
1888
- * <b>Unit</b>: <code>centimeters</code>
1889
- * </p>
1531
+ * <p>Length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
1890
1532
  * @public
1891
1533
  */
1892
1534
  Length?: number | undefined;
@@ -1896,25 +1538,17 @@ export interface RouteMatrixTruckOptions {
1896
1538
  */
1897
1539
  LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1898
1540
  /**
1899
- * <p>Maximum speed</p>
1900
- * <p>
1901
- * <b>Unit</b>: <code>KilometersPerHour</code>
1902
- * </p>
1541
+ * <p>Maximum speed</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
1903
1542
  * @public
1904
1543
  */
1905
1544
  MaxSpeed?: number | undefined;
1906
1545
  /**
1907
- * <p>The number of occupants in the vehicle.</p>
1908
- * <p>Default Value: <code>1</code>
1909
- * </p>
1546
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
1910
1547
  * @public
1911
1548
  */
1912
1549
  Occupancy?: number | undefined;
1913
1550
  /**
1914
- * <p>Payload capacity of the vehicle and trailers attached.</p>
1915
- * <p>
1916
- * <b>Unit</b>: <code>kilograms</code>
1917
- * </p>
1551
+ * <p>Payload capacity of the vehicle and trailers attached.</p> <p> <b>Unit</b>: <code>kilograms</code> </p>
1918
1552
  * @public
1919
1553
  */
1920
1554
  PayloadCapacity?: number | undefined;
@@ -1929,96 +1563,22 @@ export interface RouteMatrixTruckOptions {
1929
1563
  */
1930
1564
  TruckType?: RouteMatrixTruckType | undefined;
1931
1565
  /**
1932
- * <p>The tunnel restriction code.</p>
1933
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
1934
- * in Great Britain. They relate to the types of dangerous goods that can be transported
1935
- * through them.</p>
1936
- * <ul>
1937
- * <li>
1938
- * <p>
1939
- * <i>Tunnel Category B</i>
1940
- * </p>
1941
- * <ul>
1942
- * <li>
1943
- * <p>
1944
- * <i>Risk Level</i>: Limited risk</p>
1945
- * </li>
1946
- * <li>
1947
- * <p>
1948
- * <i>Restrictions</i>: Few restrictions</p>
1949
- * </li>
1950
- * </ul>
1951
- * </li>
1952
- * <li>
1953
- * <p>
1954
- * <i>Tunnel Category C</i>
1955
- * </p>
1956
- * <ul>
1957
- * <li>
1958
- * <p>
1959
- * <i>Risk Level</i>: Medium risk</p>
1960
- * </li>
1961
- * <li>
1962
- * <p>
1963
- * <i>Restrictions</i>: Some restrictions</p>
1964
- * </li>
1965
- * </ul>
1966
- * </li>
1967
- * <li>
1968
- * <p>
1969
- * <i>Tunnel Category D</i>
1970
- * </p>
1971
- * <ul>
1972
- * <li>
1973
- * <p>
1974
- * <i>Risk Level</i>: High risk</p>
1975
- * </li>
1976
- * <li>
1977
- * <p>
1978
- * <i>Restrictions</i>: Many restrictions occur</p>
1979
- * </li>
1980
- * </ul>
1981
- * </li>
1982
- * <li>
1983
- * <p>
1984
- * <i>Tunnel Category E</i>
1985
- * </p>
1986
- * <ul>
1987
- * <li>
1988
- * <p>
1989
- * <i>Risk Level</i>: Very high risk</p>
1990
- * </li>
1991
- * <li>
1992
- * <p>
1993
- * <i>Restrictions</i>: Restricted tunnel</p>
1994
- * </li>
1995
- * </ul>
1996
- * </li>
1997
- * </ul>
1566
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
1998
1567
  * @public
1999
1568
  */
2000
1569
  TunnelRestrictionCode?: string | undefined;
2001
1570
  /**
2002
- * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for
2003
- * usage in countries where the differences in axle types or axle groups are not
2004
- * distinguished.</p>
2005
- * <p>
2006
- * <b>Unit</b>: <code>Kilograms</code>
2007
- * </p>
1571
+ * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for usage in countries where the differences in axle types or axle groups are not distinguished.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
2008
1572
  * @public
2009
1573
  */
2010
1574
  WeightPerAxle?: number | undefined;
2011
1575
  /**
2012
- * <p>Specifies the total weight for the specified axle group. Meant for usage in countries
2013
- * that have different regulations based on the axle group type.</p>
1576
+ * <p>Specifies the total weight for the specified axle group. Meant for usage in countries that have different regulations based on the axle group type.</p>
2014
1577
  * @public
2015
1578
  */
2016
1579
  WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
2017
1580
  /**
2018
- * <p>Width of the vehicle.</p>
2019
- * <p>
2020
- * <b>Unit</b>: <code>centimeters</code>
2021
- * </p>
1581
+ * <p>Width of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
2022
1582
  * @public
2023
1583
  */
2024
1584
  Width?: number | undefined;
@@ -2034,12 +1594,7 @@ export interface RouteMatrixTravelModeOptions {
2034
1594
  */
2035
1595
  Car?: RouteMatrixCarOptions | undefined;
2036
1596
  /**
2037
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
2038
- * </p>
2039
- * <note>
2040
- * <p>When travel mode is set to <code>Scooter</code>, then the avoidance option
2041
- * <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p>
2042
- * </note>
1597
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p> <note> <p>When travel mode is set to <code>Scooter</code>, then the avoidance option <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p> </note>
2043
1598
  * @public
2044
1599
  */
2045
1600
  Scooter?: RouteMatrixScooterOptions | undefined;
@@ -2059,9 +1614,7 @@ export interface CalculateRouteMatrixRequest {
2059
1614
  */
2060
1615
  Allow?: RouteMatrixAllowOptions | undefined;
2061
1616
  /**
2062
- * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis.
2063
- * If an avoidance can't be satisfied for a particular case, it violates the avoidance and the
2064
- * returned response produces a notice for the violation.</p>
1617
+ * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.</p>
2065
1618
  * @public
2066
1619
  */
2067
1620
  Avoid?: RouteMatrixAvoidanceOptions | undefined;
@@ -2071,26 +1624,12 @@ export interface CalculateRouteMatrixRequest {
2071
1624
  */
2072
1625
  DepartNow?: boolean | undefined;
2073
1626
  /**
2074
- * <p>Time of departure from thr origin.</p>
2075
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
2076
- * </p>
2077
- * <p>Examples:</p>
2078
- * <p>
2079
- * <code>2020-04-22T17:57:24Z</code>
2080
- * </p>
2081
- * <p>
2082
- * <code>2020-04-22T17:57:24+02:00</code>
2083
- * </p>
1627
+ * <p>Time of departure from thr origin.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
2084
1628
  * @public
2085
1629
  */
2086
1630
  DepartureTime?: string | undefined;
2087
1631
  /**
2088
- * <p>List of destinations for the route.</p>
2089
- * <note>
2090
- * <p>Route calculations are billed for each origin and destination pair. If you use a large matrix of origins and destinations, your costs will increase accordingly. See
2091
- * <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`">
2092
- * Amazon Location's pricing page</a> for more information.</p>
2093
- * </note>
1632
+ * <p>List of destinations for the route.</p> <note> <p>Route calculations are billed for each origin and destination pair. If you use a large matrix of origins and destinations, your costs will increase accordingly. See <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`"> Amazon Location's pricing page</a> for more information.</p> </note>
2094
1633
  * @public
2095
1634
  */
2096
1635
  Destinations: RouteMatrixDestination[] | undefined;
@@ -2100,36 +1639,22 @@ export interface CalculateRouteMatrixRequest {
2100
1639
  */
2101
1640
  Exclude?: RouteMatrixExclusionOptions | undefined;
2102
1641
  /**
2103
- * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
2104
- * signature must be provided when making a request. </p>
1642
+ * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request. </p>
2105
1643
  * @public
2106
1644
  */
2107
1645
  Key?: string | undefined;
2108
1646
  /**
2109
- * <p>Specifies the optimization criteria for calculating a route.</p>
2110
- * <p>Default Value: <code>FastestRoute</code>
2111
- * </p>
1647
+ * <p>Specifies the optimization criteria for calculating a route.</p> <p>Default Value: <code>FastestRoute</code> </p>
2112
1648
  * @public
2113
1649
  */
2114
1650
  OptimizeRoutingFor?: RoutingObjective | undefined;
2115
1651
  /**
2116
- * <p>The position in longitude and latitude for the origin.</p>
2117
- * <note>
2118
- * <p>Route calculations are billed for each origin and destination pair. Using a large amount of Origins in a
2119
- * request can lead you to incur unexpected charges. See
2120
- * <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`">
2121
- * Amazon Location's pricing page</a> for more information.</p>
2122
- * </note>
1652
+ * <p>The position in longitude and latitude for the origin.</p> <note> <p>Route calculations are billed for each origin and destination pair. Using a large amount of Origins in a request can lead you to incur unexpected charges. See <a href="https://docs.aws.amazon.com/location/latest/developerguide/routes-pricing.html`"> Amazon Location's pricing page</a> for more information.</p> </note>
2123
1653
  * @public
2124
1654
  */
2125
1655
  Origins: RouteMatrixOrigin[] | undefined;
2126
1656
  /**
2127
- * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations
2128
- * outside the boundary are considered invalid.</p>
2129
- * <note>
2130
- * <p>When request routing boundary was set as AutoCircle, the response routing boundary
2131
- * will return Circle derived from the AutoCircle settings.</p>
2132
- * </note>
1657
+ * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations outside the boundary are considered invalid.</p> <note> <p>When request routing boundary was set as AutoCircle, the response routing boundary will return Circle derived from the AutoCircle settings.</p> </note>
2133
1658
  * @public
2134
1659
  */
2135
1660
  RoutingBoundary: RouteMatrixBoundary | undefined;
@@ -2139,10 +1664,7 @@ export interface CalculateRouteMatrixRequest {
2139
1664
  */
2140
1665
  Traffic?: RouteMatrixTrafficOptions | undefined;
2141
1666
  /**
2142
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
2143
- * of travel and road compatibility.</p>
2144
- * <p>Default Value: <code>Car</code>
2145
- * </p>
1667
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <p>Default Value: <code>Car</code> </p>
2146
1668
  * @public
2147
1669
  */
2148
1670
  TravelMode?: RouteMatrixTravelMode | undefined;
@@ -2172,10 +1694,7 @@ export declare const RouteMatrixErrorCode: {
2172
1694
  */
2173
1695
  export type RouteMatrixErrorCode = (typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
2174
1696
  /**
2175
- * <p>The calculated route matrix containing the results for all pairs of Origins to
2176
- * Destination positions. Each row corresponds to one entry in Origins. Each entry in the row
2177
- * corresponds to the route from that entry in Origins to an entry in Destination
2178
- * positions.</p>
1697
+ * <p>The calculated route matrix containing the results for all pairs of Origins to Destination positions. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destination positions.</p>
2179
1698
  * @public
2180
1699
  */
2181
1700
  export interface RouteMatrixEntry {
@@ -2185,10 +1704,7 @@ export interface RouteMatrixEntry {
2185
1704
  */
2186
1705
  Distance: number | undefined;
2187
1706
  /**
2188
- * <p>The expected duration of travel for the route.</p>
2189
- * <p>
2190
- * <b>Unit</b>: <code>seconds</code>
2191
- * </p>
1707
+ * <p>The expected duration of travel for the route.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
2192
1708
  * @public
2193
1709
  */
2194
1710
  Duration: number | undefined;
@@ -2203,8 +1719,7 @@ export interface RouteMatrixEntry {
2203
1719
  */
2204
1720
  export interface CalculateRouteMatrixResponse {
2205
1721
  /**
2206
- * <p>The count of error results in the route matrix. If this number is 0, all routes were
2207
- * calculated successfully.</p>
1722
+ * <p>The count of error results in the route matrix. If this number is 0, all routes were calculated successfully.</p>
2208
1723
  * @public
2209
1724
  */
2210
1725
  ErrorCount: number | undefined;
@@ -2214,20 +1729,12 @@ export interface CalculateRouteMatrixResponse {
2214
1729
  */
2215
1730
  PricingBucket: string | undefined;
2216
1731
  /**
2217
- * <p>The calculated route matrix containing the results for all pairs of Origins to
2218
- * Destination positions. Each row corresponds to one entry in Origins. Each entry in the row
2219
- * corresponds to the route from that entry in Origins to an entry in Destination
2220
- * positions.</p>
1732
+ * <p>The calculated route matrix containing the results for all pairs of Origins to Destination positions. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destination positions.</p>
2221
1733
  * @public
2222
1734
  */
2223
1735
  RouteMatrix: RouteMatrixEntry[][] | undefined;
2224
1736
  /**
2225
- * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations
2226
- * outside the boundary are considered invalid.</p>
2227
- * <note>
2228
- * <p>When request routing boundary was set as AutoCircle, the response routing boundary
2229
- * will return Circle derived from the AutoCircle settings.</p>
2230
- * </note>
1737
+ * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations outside the boundary are considered invalid.</p> <note> <p>When request routing boundary was set as AutoCircle, the response routing boundary will return Circle derived from the AutoCircle settings.</p> </note>
2231
1738
  * @public
2232
1739
  */
2233
1740
  RoutingBoundary: RouteMatrixBoundary | undefined;
@@ -2238,16 +1745,12 @@ export interface CalculateRouteMatrixResponse {
2238
1745
  */
2239
1746
  export interface RouteAllowOptions {
2240
1747
  /**
2241
- * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p>
2242
- * <p>Default value: <code>false</code>
2243
- * </p>
1748
+ * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p> <p>Default value: <code>false</code> </p>
2244
1749
  * @public
2245
1750
  */
2246
1751
  Hot?: boolean | undefined;
2247
1752
  /**
2248
- * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p>
2249
- * <p>Default value: <code>false</code>
2250
- * </p>
1753
+ * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p> <p>Default value: <code>false</code> </p>
2251
1754
  * @public
2252
1755
  */
2253
1756
  Hov?: boolean | undefined;
@@ -2258,15 +1761,12 @@ export interface RouteAllowOptions {
2258
1761
  */
2259
1762
  export interface RouteAvoidanceAreaGeometry {
2260
1763
  /**
2261
- * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of
2262
- * the corridor.</p>
1764
+ * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
2263
1765
  * @public
2264
1766
  */
2265
1767
  Corridor?: Corridor | undefined;
2266
1768
  /**
2267
- * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
2268
- * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
2269
- * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1769
+ * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
2270
1770
  * @public
2271
1771
  */
2272
1772
  BoundingBox?: number[] | undefined;
@@ -2276,15 +1776,12 @@ export interface RouteAvoidanceAreaGeometry {
2276
1776
  */
2277
1777
  Polygon?: number[][][] | undefined;
2278
1778
  /**
2279
- * <p>Geometry defined as an encoded corridor - an encoded polyline with a radius that defines
2280
- * the width of the corridor.</p>
1779
+ * <p>Geometry defined as an encoded corridor - an encoded polyline with a radius that defines the width of the corridor.</p>
2281
1780
  * @public
2282
1781
  */
2283
1782
  PolylineCorridor?: PolylineCorridor | undefined;
2284
1783
  /**
2285
- * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains
2286
- * PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last
2287
- * item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
1784
+ * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
2288
1785
  * @public
2289
1786
  */
2290
1787
  PolylinePolygon?: string[] | undefined;
@@ -2295,8 +1792,7 @@ export interface RouteAvoidanceAreaGeometry {
2295
1792
  */
2296
1793
  export interface RouteAvoidanceArea {
2297
1794
  /**
2298
- * <p>Exceptions to the provided avoidance geometry, to be included while calculating the
2299
- * route.</p>
1795
+ * <p>Exceptions to the provided avoidance geometry, to be included while calculating the route.</p>
2300
1796
  * @public
2301
1797
  */
2302
1798
  Except?: RouteAvoidanceAreaGeometry[] | undefined;
@@ -2331,11 +1827,7 @@ export interface RouteAvoidanceZoneCategory {
2331
1827
  Category: RouteZoneCategory | undefined;
2332
1828
  }
2333
1829
  /**
2334
- * <p>Specifies options for areas to avoid when calculating the route. This is a best-effort
2335
- * avoidance setting, meaning the router will try to honor the avoidance preferences but may
2336
- * still include restricted areas if no feasible alternative route exists. If avoidance
2337
- * options are not followed, the response will indicate that the avoidance criteria were
2338
- * violated.</p>
1830
+ * <p>Specifies options for areas to avoid when calculating the route. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.</p>
2339
1831
  * @public
2340
1832
  */
2341
1833
  export interface RouteAvoidanceOptions {
@@ -2380,11 +1872,7 @@ export interface RouteAvoidanceOptions {
2380
1872
  */
2381
1873
  TollTransponders?: boolean | undefined;
2382
1874
  /**
2383
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
2384
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
2385
- * <note>
2386
- * <p>There are currently no other supported values as of 26th April 2024.</p>
2387
- * </note>
1875
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
2388
1876
  * @public
2389
1877
  */
2390
1878
  TruckRoadTypes?: string[] | undefined;
@@ -2415,27 +1903,17 @@ export interface RouteMatchingOptions {
2415
1903
  */
2416
1904
  NameHint?: string | undefined;
2417
1905
  /**
2418
- * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint
2419
- * will be snapped to the highway/bridge/tunnel/sliproad.</p>
2420
- * <p>
2421
- * <b>Unit</b>: <code>meters</code>
2422
- * </p>
1906
+ * <p>If the distance to a highway/bridge/tunnel/sliproad is within threshold, the waypoint will be snapped to the highway/bridge/tunnel/sliproad.</p> <p> <b>Unit</b>: <code>meters</code> </p>
2423
1907
  * @public
2424
1908
  */
2425
1909
  OnRoadThreshold?: number | undefined;
2426
1910
  /**
2427
- * <p>Considers all roads within the provided radius to match the provided destination to. The
2428
- * roads that are considered are determined by the provided Strategy.</p>
2429
- * <p>
2430
- * <b>Unit</b>: <code>Meters</code>
2431
- * </p>
1911
+ * <p>Considers all roads within the provided radius to match the provided destination to. The roads that are considered are determined by the provided Strategy.</p> <p> <b>Unit</b>: <code>Meters</code> </p>
2432
1912
  * @public
2433
1913
  */
2434
1914
  Radius?: number | undefined;
2435
1915
  /**
2436
- * <p>Strategy that defines matching of the position onto the road network. MatchAny considers
2437
- * all roads possible, whereas MatchMostSignificantRoad matches to the most significant
2438
- * road.</p>
1916
+ * <p>Strategy that defines matching of the position onto the road network. MatchAny considers all roads possible, whereas MatchMostSignificantRoad matches to the most significant road.</p>
2439
1917
  * @public
2440
1918
  */
2441
1919
  Strategy?: MatchingStrategy | undefined;
@@ -2451,9 +1929,7 @@ export interface RouteSideOfStreetOptions {
2451
1929
  */
2452
1930
  Position: number[] | undefined;
2453
1931
  /**
2454
- * <p>Strategy that defines when the side of street position should be used.</p>
2455
- * <p>Default Value: <code>DividedStreetOnly</code>
2456
- * </p>
1932
+ * <p>Strategy that defines when the side of street position should be used.</p> <p>Default Value: <code>DividedStreetOnly</code> </p>
2457
1933
  * @public
2458
1934
  */
2459
1935
  UseWith?: SideOfStreetMatchingStrategy | undefined;
@@ -2464,9 +1940,7 @@ export interface RouteSideOfStreetOptions {
2464
1940
  */
2465
1941
  export interface RouteDestinationOptions {
2466
1942
  /**
2467
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
2468
- * moving vehicles who may not have sufficient time to make an action at an origin or a
2469
- * destination.</p>
1943
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
2470
1944
  * @public
2471
1945
  */
2472
1946
  AvoidActionsForDistance?: number | undefined;
@@ -2491,33 +1965,23 @@ export interface RouteDestinationOptions {
2491
1965
  */
2492
1966
  SideOfStreet?: RouteSideOfStreetOptions | undefined;
2493
1967
  /**
2494
- * <p>Duration of the stop.</p>
2495
- * <p>
2496
- * <b>Unit</b>: <code>seconds</code>
2497
- * </p>
1968
+ * <p>Duration of the stop.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
2498
1969
  * @public
2499
1970
  */
2500
1971
  StopDuration?: number | undefined;
2501
1972
  }
2502
1973
  /**
2503
- * <p>Interval of the driver work-rest schedule. Stops are added to fulfil the provided rest
2504
- * schedule.</p>
1974
+ * <p>Interval of the driver work-rest schedule. Stops are added to fulfil the provided rest schedule.</p>
2505
1975
  * @public
2506
1976
  */
2507
1977
  export interface RouteDriverScheduleInterval {
2508
1978
  /**
2509
- * <p>Maximum allowed driving time before stopping to rest.</p>
2510
- * <p>
2511
- * <b>Unit</b>: <code>seconds</code>
2512
- * </p>
1979
+ * <p>Maximum allowed driving time before stopping to rest.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
2513
1980
  * @public
2514
1981
  */
2515
1982
  DriveDuration: number | undefined;
2516
1983
  /**
2517
- * <p>Resting time before the driver can continue driving.</p>
2518
- * <p>
2519
- * <b>Unit</b>: <code>seconds</code>
2520
- * </p>
1984
+ * <p>Resting time before the driver can continue driving.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
2521
1985
  * @public
2522
1986
  */
2523
1987
  RestDuration: number | undefined;
@@ -2534,15 +1998,12 @@ export interface RouteDriverOptions {
2534
1998
  Schedule?: RouteDriverScheduleInterval[] | undefined;
2535
1999
  }
2536
2000
  /**
2537
- * <p>Specifies strict exclusion options for the route calculation. This setting mandates that
2538
- * the router will avoid any routes that include the specified options, rather than merely
2539
- * attempting to minimize them.</p>
2001
+ * <p>Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.</p>
2540
2002
  * @public
2541
2003
  */
2542
2004
  export interface RouteExclusionOptions {
2543
2005
  /**
2544
- * <p>List of countries to be avoided defined by two-letter or three-letter country
2545
- * codes.</p>
2006
+ * <p>List of countries to be avoided defined by two-letter or three-letter country codes.</p>
2546
2007
  * @public
2547
2008
  */
2548
2009
  Countries: string[] | undefined;
@@ -2584,9 +2045,7 @@ export type RouteLegAdditionalFeature = (typeof RouteLegAdditionalFeature)[keyof
2584
2045
  */
2585
2046
  export interface RouteOriginOptions {
2586
2047
  /**
2587
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
2588
- * moving vehicles who may not have sufficient time to make an action at an origin or a
2589
- * destination.</p>
2048
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
2590
2049
  * @public
2591
2050
  */
2592
2051
  AvoidActionsForDistance?: number | undefined;
@@ -2646,11 +2105,7 @@ export declare const RouteSpanAdditionalFeature: {
2646
2105
  */
2647
2106
  export type RouteSpanAdditionalFeature = (typeof RouteSpanAdditionalFeature)[keyof typeof RouteSpanAdditionalFeature];
2648
2107
  /**
2649
- * <p>Type of the emission.</p>
2650
- * <p>
2651
- * <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5,
2652
- * Euro6, EuroEev</code>
2653
- * </p>
2108
+ * <p>Type of the emission.</p> <p> <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5, Euro6, EuroEev</code> </p>
2654
2109
  * @public
2655
2110
  */
2656
2111
  export interface RouteEmissionType {
@@ -2660,11 +2115,7 @@ export interface RouteEmissionType {
2660
2115
  */
2661
2116
  Co2EmissionClass?: string | undefined;
2662
2117
  /**
2663
- * <p>Type of the emission.</p>
2664
- * <p>
2665
- * <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5,
2666
- * Euro6, EuroEev</code>
2667
- * </p>
2118
+ * <p>Type of the emission.</p> <p> <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5, Euro6, EuroEev</code> </p>
2668
2119
  * @public
2669
2120
  */
2670
2121
  Type: string | undefined;
@@ -2686,30 +2137,22 @@ export type RouteTollVehicleCategory = (typeof RouteTollVehicleCategory)[keyof t
2686
2137
  */
2687
2138
  export interface RouteTollOptions {
2688
2139
  /**
2689
- * <p>Specifies if the user has valid transponder with access to all toll systems. This
2690
- * impacts toll calculation, and if true the price with transponders is used.</p>
2140
+ * <p>Specifies if the user has valid transponder with access to all toll systems. This impacts toll calculation, and if true the price with transponders is used.</p>
2691
2141
  * @public
2692
2142
  */
2693
2143
  AllTransponders?: boolean | undefined;
2694
2144
  /**
2695
- * <p>Specifies if the user has valid vignettes with access for all toll roads. If a user has
2696
- * a vignette for a toll road, then toll cost for that road is omitted since no further
2697
- * payment is necessary.</p>
2145
+ * <p>Specifies if the user has valid vignettes with access for all toll roads. If a user has a vignette for a toll road, then toll cost for that road is omitted since no further payment is necessary.</p>
2698
2146
  * @public
2699
2147
  */
2700
2148
  AllVignettes?: boolean | undefined;
2701
2149
  /**
2702
- * <p>Currency code corresponding to the price. This is the same as Currency specified in the
2703
- * request.</p>
2150
+ * <p>Currency code corresponding to the price. This is the same as Currency specified in the request.</p>
2704
2151
  * @public
2705
2152
  */
2706
2153
  Currency?: string | undefined;
2707
2154
  /**
2708
- * <p>Emission type of the vehicle for toll cost calculation.</p>
2709
- * <p>
2710
- * <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5,
2711
- * Euro6, EuroEev</code>
2712
- * </p>
2155
+ * <p>Emission type of the vehicle for toll cost calculation.</p> <p> <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5, Euro6, EuroEev</code> </p>
2713
2156
  * @public
2714
2157
  */
2715
2158
  EmissionType?: RouteEmissionType | undefined;
@@ -2725,17 +2168,12 @@ export interface RouteTollOptions {
2725
2168
  */
2726
2169
  export interface RouteTrafficOptions {
2727
2170
  /**
2728
- * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic
2729
- * is used over historical traffic data. Flow traffic refers to congestion, which changes very
2730
- * quickly. Duration in seconds for which flow traffic event would be considered valid. While
2731
- * flow traffic event is valid it will be used over the historical traffic data. </p>
2171
+ * <p>Duration for which flow traffic is considered valid. For this period, the flow traffic is used over historical traffic data. Flow traffic refers to congestion, which changes very quickly. Duration in seconds for which flow traffic event would be considered valid. While flow traffic event is valid it will be used over the historical traffic data. </p>
2732
2172
  * @public
2733
2173
  */
2734
2174
  FlowEventThresholdOverride?: number | undefined;
2735
2175
  /**
2736
- * <p>Determines if traffic should be used or ignored while calculating the route.</p>
2737
- * <p>Default Value: <code>UseTrafficData</code>
2738
- * </p>
2176
+ * <p>Determines if traffic should be used or ignored while calculating the route.</p> <p>Default Value: <code>UseTrafficData</code> </p>
2739
2177
  * @public
2740
2178
  */
2741
2179
  Usage?: TrafficUsage | undefined;
@@ -2768,8 +2206,7 @@ export declare const RouteEngineType: {
2768
2206
  */
2769
2207
  export type RouteEngineType = (typeof RouteEngineType)[keyof typeof RouteEngineType];
2770
2208
  /**
2771
- * <p>License plate information of the vehicle. Currently, only the last character is used
2772
- * where license plate based controlled access is enforced.</p>
2209
+ * <p>License plate information of the vehicle. Currently, only the last character is used where license plate based controlled access is enforced.</p>
2773
2210
  * @public
2774
2211
  */
2775
2212
  export interface RouteVehicleLicensePlate {
@@ -2795,17 +2232,12 @@ export interface RouteCarOptions {
2795
2232
  */
2796
2233
  LicensePlate?: RouteVehicleLicensePlate | undefined;
2797
2234
  /**
2798
- * <p>Maximum speed specified.</p>
2799
- * <p>
2800
- * <b>Unit</b>: <code>KilometersPerHour</code>
2801
- * </p>
2235
+ * <p>Maximum speed specified.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
2802
2236
  * @public
2803
2237
  */
2804
2238
  MaxSpeed?: number | undefined;
2805
2239
  /**
2806
- * <p>The number of occupants in the vehicle.</p>
2807
- * <p>Default Value: <code>1</code>
2808
- * </p>
2240
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
2809
2241
  * @public
2810
2242
  */
2811
2243
  Occupancy?: number | undefined;
@@ -2822,8 +2254,7 @@ export interface RoutePedestrianOptions {
2822
2254
  Speed?: number | undefined;
2823
2255
  }
2824
2256
  /**
2825
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
2826
- * </p>
2257
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p>
2827
2258
  * @public
2828
2259
  */
2829
2260
  export interface RouteScooterOptions {
@@ -2838,17 +2269,12 @@ export interface RouteScooterOptions {
2838
2269
  */
2839
2270
  LicensePlate?: RouteVehicleLicensePlate | undefined;
2840
2271
  /**
2841
- * <p>Maximum speed</p>
2842
- * <p>
2843
- * <b>Unit</b>: <code>KilometersPerHour</code>
2844
- * </p>
2272
+ * <p>Maximum speed</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
2845
2273
  * @public
2846
2274
  */
2847
2275
  MaxSpeed?: number | undefined;
2848
2276
  /**
2849
- * <p>The number of occupants in the vehicle.</p>
2850
- * <p>Default Value: <code>1</code>
2851
- * </p>
2277
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
2852
2278
  * @public
2853
2279
  */
2854
2280
  Occupancy?: number | undefined;
@@ -2885,9 +2311,7 @@ export interface RouteTrailerOptions {
2885
2311
  */
2886
2312
  AxleCount?: number | undefined;
2887
2313
  /**
2888
- * <p>Number of trailers attached to the vehicle.</p>
2889
- * <p>Default Value: <code>0</code>
2890
- * </p>
2314
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
2891
2315
  * @public
2892
2316
  */
2893
2317
  TrailerCount?: number | undefined;
@@ -2921,10 +2345,7 @@ export interface RouteTruckOptions {
2921
2345
  */
2922
2346
  EngineType?: RouteEngineType | undefined;
2923
2347
  /**
2924
- * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
2925
- * <p>
2926
- * <b>Unit</b>: <code>Kilograms</code>
2927
- * </p>
2348
+ * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
2928
2349
  * @public
2929
2350
  */
2930
2351
  GrossWeight?: number | undefined;
@@ -2934,34 +2355,22 @@ export interface RouteTruckOptions {
2934
2355
  */
2935
2356
  HazardousCargos?: RouteHazardousCargoType[] | undefined;
2936
2357
  /**
2937
- * <p>Height of the vehicle.</p>
2938
- * <p>
2939
- * <b>Unit</b>: <code>centimeters</code>
2940
- * </p>
2358
+ * <p>Height of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
2941
2359
  * @public
2942
2360
  */
2943
2361
  Height?: number | undefined;
2944
2362
  /**
2945
- * <p>Height of the vehicle above its first axle.</p>
2946
- * <p>
2947
- * <b>Unit</b>: <code>centimeters</code>
2948
- * </p>
2363
+ * <p>Height of the vehicle above its first axle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
2949
2364
  * @public
2950
2365
  */
2951
2366
  HeightAboveFirstAxle?: number | undefined;
2952
2367
  /**
2953
- * <p>Kingpin to rear axle length of the vehicle.</p>
2954
- * <p>
2955
- * <b>Unit</b>: <code>centimeters</code>
2956
- * </p>
2368
+ * <p>Kingpin to rear axle length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
2957
2369
  * @public
2958
2370
  */
2959
2371
  KpraLength?: number | undefined;
2960
2372
  /**
2961
- * <p>Length of the vehicle.</p>
2962
- * <p>
2963
- * <b>Unit</b>: <code>c</code>
2964
- * </p>
2373
+ * <p>Length of the vehicle.</p> <p> <b>Unit</b>: <code>c</code> </p>
2965
2374
  * @public
2966
2375
  */
2967
2376
  Length?: number | undefined;
@@ -2971,25 +2380,17 @@ export interface RouteTruckOptions {
2971
2380
  */
2972
2381
  LicensePlate?: RouteVehicleLicensePlate | undefined;
2973
2382
  /**
2974
- * <p>Maximum speed</p>
2975
- * <p>
2976
- * <b>Unit</b>: <code>KilometersPerHour</code>
2977
- * </p>
2383
+ * <p>Maximum speed</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
2978
2384
  * @public
2979
2385
  */
2980
2386
  MaxSpeed?: number | undefined;
2981
2387
  /**
2982
- * <p>The number of occupants in the vehicle.</p>
2983
- * <p>Default Value: <code>1</code>
2984
- * </p>
2388
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
2985
2389
  * @public
2986
2390
  */
2987
2391
  Occupancy?: number | undefined;
2988
2392
  /**
2989
- * <p>Payload capacity of the vehicle and trailers attached.</p>
2990
- * <p>
2991
- * <b>Unit</b>: <code>kilograms</code>
2992
- * </p>
2393
+ * <p>Payload capacity of the vehicle and trailers attached.</p> <p> <b>Unit</b>: <code>kilograms</code> </p>
2993
2394
  * @public
2994
2395
  */
2995
2396
  PayloadCapacity?: number | undefined;
@@ -3009,99 +2410,22 @@ export interface RouteTruckOptions {
3009
2410
  */
3010
2411
  TruckType?: RouteTruckType | undefined;
3011
2412
  /**
3012
- * <p>The tunnel restriction code.</p>
3013
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
3014
- * in Great Britain. They relate to the types of dangerous goods that can be transported
3015
- * through them.</p>
3016
- * <ul>
3017
- * <li>
3018
- * <p>
3019
- * <i>Tunnel Category B</i>
3020
- * </p>
3021
- * <ul>
3022
- * <li>
3023
- * <p>
3024
- * <i>Risk Level</i>: Limited risk</p>
3025
- * </li>
3026
- * <li>
3027
- * <p>
3028
- * <i>Restrictions</i>: Few restrictions</p>
3029
- * </li>
3030
- * </ul>
3031
- * </li>
3032
- * <li>
3033
- * <p>
3034
- * <i>Tunnel Category C</i>
3035
- * </p>
3036
- * <ul>
3037
- * <li>
3038
- * <p>
3039
- * <i>Risk Level</i>: Medium risk</p>
3040
- * </li>
3041
- * <li>
3042
- * <p>
3043
- * <i>Restrictions</i>: Some restrictions</p>
3044
- * </li>
3045
- * </ul>
3046
- * </li>
3047
- * <li>
3048
- * <p>
3049
- * <i>Tunnel Category D</i>
3050
- * </p>
3051
- * <ul>
3052
- * <li>
3053
- * <p>
3054
- * <i>Risk Level</i>: High risk</p>
3055
- * </li>
3056
- * <li>
3057
- * <p>
3058
- * <i>Restrictions</i>: Many restrictions occur</p>
3059
- * </li>
3060
- * </ul>
3061
- * </li>
3062
- * <li>
3063
- * <p>
3064
- * <i>Tunnel Category E</i>
3065
- * </p>
3066
- * <ul>
3067
- * <li>
3068
- * <p>
3069
- * <i>Risk Level</i>: Very high risk</p>
3070
- * </li>
3071
- * <li>
3072
- * <p>
3073
- * <i>Restrictions</i>: Restricted tunnel</p>
3074
- * </li>
3075
- * </ul>
3076
- * </li>
3077
- * </ul>
2413
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
3078
2414
  * @public
3079
2415
  */
3080
2416
  TunnelRestrictionCode?: string | undefined;
3081
2417
  /**
3082
- * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for
3083
- * usage in countries where the differences in axle types or axle groups are not
3084
- * distinguished.</p>
3085
- * <p>
3086
- * <b>Unit</b>: <code>Kilograms</code>
3087
- * </p>
2418
+ * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for usage in countries where the differences in axle types or axle groups are not distinguished.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
3088
2419
  * @public
3089
2420
  */
3090
2421
  WeightPerAxle?: number | undefined;
3091
2422
  /**
3092
- * <p>Specifies the total weight for the specified axle group. Meant for usage in countries
3093
- * that have different regulations based on the axle group type.</p>
3094
- * <p>
3095
- * <b>Unit</b>: <code>Kilograms</code>
3096
- * </p>
2423
+ * <p>Specifies the total weight for the specified axle group. Meant for usage in countries that have different regulations based on the axle group type.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
3097
2424
  * @public
3098
2425
  */
3099
2426
  WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
3100
2427
  /**
3101
- * <p>Width of the vehicle.</p>
3102
- * <p>
3103
- * <b>Unit</b>: <code>centimeters</code>
3104
- * </p>
2428
+ * <p>Width of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
3105
2429
  * @public
3106
2430
  */
3107
2431
  Width?: number | undefined;
@@ -3122,12 +2446,7 @@ export interface RouteTravelModeOptions {
3122
2446
  */
3123
2447
  Pedestrian?: RoutePedestrianOptions | undefined;
3124
2448
  /**
3125
- * <p>Travel mode options when the provided travel mode is <code>Scooter</code>
3126
- * </p>
3127
- * <note>
3128
- * <p>When travel mode is set to <code>Scooter</code>, then the avoidance option
3129
- * <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p>
3130
- * </note>
2449
+ * <p>Travel mode options when the provided travel mode is <code>Scooter</code> </p> <note> <p>When travel mode is set to <code>Scooter</code>, then the avoidance option <code>ControlledAccessHighways</code> defaults to <code>true</code>.</p> </note>
3131
2450
  * @public
3132
2451
  */
3133
2452
  Scooter?: RouteScooterOptions | undefined;
@@ -3155,9 +2474,7 @@ export type RouteTravelStepType = (typeof RouteTravelStepType)[keyof typeof Rout
3155
2474
  */
3156
2475
  export interface RouteWaypoint {
3157
2476
  /**
3158
- * <p>Avoids actions for the provided distance. This is typically to consider for users in
3159
- * moving vehicles who may not have sufficient time to make an action at an origin or a
3160
- * destination.</p>
2477
+ * <p>Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.</p>
3161
2478
  * @public
3162
2479
  */
3163
2480
  AvoidActionsForDistance?: number | undefined;
@@ -3177,8 +2494,7 @@ export interface RouteWaypoint {
3177
2494
  */
3178
2495
  Matching?: RouteMatchingOptions | undefined;
3179
2496
  /**
3180
- * <p>If the waypoint should not be treated as a stop. If yes, the waypoint is passed through
3181
- * and doesn't split the route into different legs.</p>
2497
+ * <p>If the waypoint should not be treated as a stop. If yes, the waypoint is passed through and doesn't split the route into different legs.</p>
3182
2498
  * @public
3183
2499
  */
3184
2500
  PassThrough?: boolean | undefined;
@@ -3193,10 +2509,7 @@ export interface RouteWaypoint {
3193
2509
  */
3194
2510
  SideOfStreet?: RouteSideOfStreetOptions | undefined;
3195
2511
  /**
3196
- * <p>Duration of the stop.</p>
3197
- * <p>
3198
- * <b>Unit</b>: <code>seconds</code>
3199
- * </p>
2512
+ * <p>Duration of the stop.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3200
2513
  * @public
3201
2514
  */
3202
2515
  StopDuration?: number | undefined;
@@ -3211,23 +2524,12 @@ export interface CalculateRoutesRequest {
3211
2524
  */
3212
2525
  Allow?: RouteAllowOptions | undefined;
3213
2526
  /**
3214
- * <p>Time of arrival at the destination.</p>
3215
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
3216
- * </p>
3217
- * <p>Examples:</p>
3218
- * <p>
3219
- * <code>2020-04-22T17:57:24Z</code>
3220
- * </p>
3221
- * <p>
3222
- * <code>2020-04-22T17:57:24+02:00</code>
3223
- * </p>
2527
+ * <p>Time of arrival at the destination.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
3224
2528
  * @public
3225
2529
  */
3226
2530
  ArrivalTime?: string | undefined;
3227
2531
  /**
3228
- * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis.
3229
- * If an avoidance can't be satisfied for a particular case, it violates the avoidance and the
3230
- * returned response produces a notice for the violation.</p>
2532
+ * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.</p>
3231
2533
  * @public
3232
2534
  */
3233
2535
  Avoid?: RouteAvoidanceOptions | undefined;
@@ -3237,22 +2539,12 @@ export interface CalculateRoutesRequest {
3237
2539
  */
3238
2540
  DepartNow?: boolean | undefined;
3239
2541
  /**
3240
- * <p>Time of departure from thr origin.</p>
3241
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
3242
- * </p>
3243
- * <p>Examples:</p>
3244
- * <p>
3245
- * <code>2020-04-22T17:57:24Z</code>
3246
- * </p>
3247
- * <p>
3248
- * <code>2020-04-22T17:57:24+02:00</code>
3249
- * </p>
2542
+ * <p>Time of departure from thr origin.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
3250
2543
  * @public
3251
2544
  */
3252
2545
  DepartureTime?: string | undefined;
3253
2546
  /**
3254
- * <p>The final position for the route. In the World Geodetic System (WGS 84) format:
3255
- * <code>[longitude, latitude]</code>.</p>
2547
+ * <p>The final position for the route. In the World Geodetic System (WGS 84) format: <code>[longitude, latitude]</code>.</p>
3256
2548
  * @public
3257
2549
  */
3258
2550
  Destination: number[] | undefined;
@@ -3277,95 +2569,32 @@ export interface CalculateRoutesRequest {
3277
2569
  */
3278
2570
  InstructionsMeasurementSystem?: MeasurementSystem | undefined;
3279
2571
  /**
3280
- * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
3281
- * signature must be provided when making a request. </p>
2572
+ * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request. </p>
3282
2573
  * @public
3283
2574
  */
3284
2575
  Key?: string | undefined;
3285
2576
  /**
3286
- * <p>List of languages for instructions within steps in the response.</p>
3287
- * <note>
3288
- * <p>Instructions in the requested language are returned only if they are
3289
- * available.</p>
3290
- * </note>
2577
+ * <p>List of languages for instructions within steps in the response.</p> <note> <p>Instructions in the requested language are returned only if they are available.</p> </note>
3291
2578
  * @public
3292
2579
  */
3293
2580
  Languages?: string[] | undefined;
3294
2581
  /**
3295
- * <p>A list of optional additional parameters such as timezone that can be requested for each
3296
- * result.</p>
3297
- * <ul>
3298
- * <li>
3299
- * <p>
3300
- * <code>Elevation</code>: Retrieves the elevation information for each
3301
- * location.</p>
3302
- * </li>
3303
- * <li>
3304
- * <p>
3305
- * <code>Incidents</code>: Provides information on traffic incidents along the
3306
- * route.</p>
3307
- * </li>
3308
- * <li>
3309
- * <p>
3310
- * <code>PassThroughWaypoints</code>: Indicates waypoints that are passed through
3311
- * without stopping.</p>
3312
- * </li>
3313
- * <li>
3314
- * <p>
3315
- * <code>Summary</code>: Returns a summary of the route, including distance and
3316
- * duration.</p>
3317
- * </li>
3318
- * <li>
3319
- * <p>
3320
- * <code>Tolls</code>: Supplies toll cost information along the route.</p>
3321
- * </li>
3322
- * <li>
3323
- * <p>
3324
- * <code>TravelStepInstructions</code>: Provides step-by-step instructions for travel
3325
- * along the route.</p>
3326
- * </li>
3327
- * <li>
3328
- * <p>
3329
- * <code>TruckRoadTypes</code>: Returns information about road types suitable for
3330
- * trucks.</p>
3331
- * </li>
3332
- * <li>
3333
- * <p>
3334
- * <code>TypicalDuration</code>: Gives typical travel duration based on historical
3335
- * data.</p>
3336
- * </li>
3337
- * <li>
3338
- * <p>
3339
- * <code>Zones</code>: Specifies the time zone information for each waypoint.</p>
3340
- * </li>
3341
- * </ul>
2582
+ * <p>A list of optional additional parameters such as timezone that can be requested for each result.</p> <ul> <li> <p> <code>Elevation</code>: Retrieves the elevation information for each location.</p> </li> <li> <p> <code>Incidents</code>: Provides information on traffic incidents along the route.</p> </li> <li> <p> <code>PassThroughWaypoints</code>: Indicates waypoints that are passed through without stopping.</p> </li> <li> <p> <code>Summary</code>: Returns a summary of the route, including distance and duration.</p> </li> <li> <p> <code>Tolls</code>: Supplies toll cost information along the route.</p> </li> <li> <p> <code>TravelStepInstructions</code>: Provides step-by-step instructions for travel along the route.</p> </li> <li> <p> <code>TruckRoadTypes</code>: Returns information about road types suitable for trucks.</p> </li> <li> <p> <code>TypicalDuration</code>: Gives typical travel duration based on historical data.</p> </li> <li> <p> <code>Zones</code>: Specifies the time zone information for each waypoint.</p> </li> </ul>
3342
2583
  * @public
3343
2584
  */
3344
2585
  LegAdditionalFeatures?: RouteLegAdditionalFeature[] | undefined;
3345
2586
  /**
3346
- * <p>Specifies the format of the geometry returned for each leg of the route. You can choose
3347
- * between two different geometry encoding formats.</p>
3348
- * <p>
3349
- * <code>FlexiblePolyline</code>: A compact and precise encoding format for the leg
3350
- * geometry. For more information on the format, see the GitHub repository for <a href="https://github.com/heremaps/flexible-polyline">
3351
- * <code>FlexiblePolyline</code>
3352
- * </a>.</p>
3353
- * <p>
3354
- * <code>Simple</code>: A less compact encoding, which is easier to decode but may be less
3355
- * precise and result in larger payloads.</p>
2587
+ * <p>Specifies the format of the geometry returned for each leg of the route. You can choose between two different geometry encoding formats.</p> <p> <code>FlexiblePolyline</code>: A compact and precise encoding format for the leg geometry. For more information on the format, see the GitHub repository for <a href="https://github.com/heremaps/flexible-polyline"> <code>FlexiblePolyline</code> </a>.</p> <p> <code>Simple</code>: A less compact encoding, which is easier to decode but may be less precise and result in larger payloads.</p>
3356
2588
  * @public
3357
2589
  */
3358
2590
  LegGeometryFormat?: GeometryFormat | undefined;
3359
2591
  /**
3360
- * <p>Maximum number of alternative routes to be provided in the response, if
3361
- * available.</p>
2592
+ * <p>Maximum number of alternative routes to be provided in the response, if available.</p>
3362
2593
  * @public
3363
2594
  */
3364
2595
  MaxAlternatives?: number | undefined;
3365
2596
  /**
3366
- * <p>Specifies the optimization criteria for calculating a route.</p>
3367
- * <p>Default Value: <code>FastestRoute</code>
3368
- * </p>
2597
+ * <p>Specifies the optimization criteria for calculating a route.</p> <p>Default Value: <code>FastestRoute</code> </p>
3369
2598
  * @public
3370
2599
  */
3371
2600
  OptimizeRoutingFor?: RoutingObjective | undefined;
@@ -3380,8 +2609,7 @@ export interface CalculateRoutesRequest {
3380
2609
  */
3381
2610
  OriginOptions?: RouteOriginOptions | undefined;
3382
2611
  /**
3383
- * <p>A list of optional features such as SpeedLimit that can be requested for a Span. A span
3384
- * is a section of a Leg for which the requested features have the same values.</p>
2612
+ * <p>A list of optional features such as SpeedLimit that can be requested for a Span. A span is a section of a Leg for which the requested features have the same values.</p>
3385
2613
  * @public
3386
2614
  */
3387
2615
  SpanAdditionalFeatures?: RouteSpanAdditionalFeature[] | undefined;
@@ -3396,10 +2624,7 @@ export interface CalculateRoutesRequest {
3396
2624
  */
3397
2625
  Traffic?: RouteTrafficOptions | undefined;
3398
2626
  /**
3399
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
3400
- * of travel and road compatibility.</p>
3401
- * <p>Default Value: <code>Car</code>
3402
- * </p>
2627
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <p>Default Value: <code>Car</code> </p>
3403
2628
  * @public
3404
2629
  */
3405
2630
  TravelMode?: RouteTravelMode | undefined;
@@ -3409,9 +2634,7 @@ export interface CalculateRoutesRequest {
3409
2634
  */
3410
2635
  TravelModeOptions?: RouteTravelModeOptions | undefined;
3411
2636
  /**
3412
- * <p>Type of step returned by the response. Default provides basic steps intended for web
3413
- * based applications. TurnByTurn provides detailed instructions with more granularity
3414
- * intended for a turn based navigation system.</p>
2637
+ * <p>Type of step returned by the response. Default provides basic steps intended for web based applications. TurnByTurn provides detailed instructions with more granularity intended for a turn based navigation system.</p>
3415
2638
  * @public
3416
2639
  */
3417
2640
  TravelStepType?: RouteTravelStepType | undefined;
@@ -3447,8 +2670,7 @@ export declare const RouteNoticeImpact: {
3447
2670
  */
3448
2671
  export type RouteNoticeImpact = (typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
3449
2672
  /**
3450
- * <p>Notices are additional information returned that indicate issues that occurred during
3451
- * route calculation.</p>
2673
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
3452
2674
  * @public
3453
2675
  */
3454
2676
  export interface RouteResponseNotice {
@@ -3458,8 +2680,7 @@ export interface RouteResponseNotice {
3458
2680
  */
3459
2681
  Code: RouteResponseNoticeCode | undefined;
3460
2682
  /**
3461
- * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High
3462
- * impact notices must be evaluated further to determine the impact.</p>
2683
+ * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.</p>
3463
2684
  * @public
3464
2685
  */
3465
2686
  Impact?: RouteNoticeImpact | undefined;
@@ -3481,18 +2702,12 @@ export type RouteFerryAfterTravelStepType = (typeof RouteFerryAfterTravelStepTyp
3481
2702
  */
3482
2703
  export interface RouteFerryAfterTravelStep {
3483
2704
  /**
3484
- * <p>Duration of the step.</p>
3485
- * <p>
3486
- * <b>Unit</b>: <code>seconds</code>
3487
- * </p>
2705
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3488
2706
  * @public
3489
2707
  */
3490
2708
  Duration: number | undefined;
3491
2709
  /**
3492
- * <p>Brief description of the step in the requested language.</p>
3493
- * <note>
3494
- * <p>Only available when the TravelStepType is Default.</p>
3495
- * </note>
2710
+ * <p>Brief description of the step in the requested language.</p> <note> <p>Only available when the TravelStepType is Default.</p> </note>
3496
2711
  * @public
3497
2712
  */
3498
2713
  Instruction?: string | undefined;
@@ -3561,18 +2776,12 @@ export type RouteFerryBeforeTravelStepType = (typeof RouteFerryBeforeTravelStepT
3561
2776
  */
3562
2777
  export interface RouteFerryBeforeTravelStep {
3563
2778
  /**
3564
- * <p>Duration of the step.</p>
3565
- * <p>
3566
- * <b>Unit</b>: <code>seconds</code>
3567
- * </p>
2779
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3568
2780
  * @public
3569
2781
  */
3570
2782
  Duration: number | undefined;
3571
2783
  /**
3572
- * <p>Brief description of the step in the requested language.</p>
3573
- * <note>
3574
- * <p>Only available when the TravelStepType is Default.</p>
3575
- * </note>
2784
+ * <p>Brief description of the step in the requested language.</p> <note> <p>Only available when the TravelStepType is Default.</p> </note>
3576
2785
  * @public
3577
2786
  */
3578
2787
  Instruction?: string | undefined;
@@ -3606,6 +2815,7 @@ export declare const RouteFerryNoticeCode: {
3606
2815
  readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
3607
2816
  readonly NO_SCHEDULE: "NoSchedule";
3608
2817
  readonly OTHER: "Other";
2818
+ readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
3609
2819
  readonly SEASONAL_CLOSURE: "SeasonalClosure";
3610
2820
  readonly VIOLATED_AVOID_FERRY: "ViolatedAvoidFerry";
3611
2821
  readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
@@ -3615,8 +2825,7 @@ export declare const RouteFerryNoticeCode: {
3615
2825
  */
3616
2826
  export type RouteFerryNoticeCode = (typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
3617
2827
  /**
3618
- * <p>Notices are additional information returned that indicate issues that occurred during
3619
- * route calculation.</p>
2828
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
3620
2829
  * @public
3621
2830
  */
3622
2831
  export interface RouteFerryNotice {
@@ -3626,8 +2835,7 @@ export interface RouteFerryNotice {
3626
2835
  */
3627
2836
  Code: RouteFerryNoticeCode | undefined;
3628
2837
  /**
3629
- * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High
3630
- * impact notices must be evaluated further to determine the impact.</p>
2838
+ * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.</p>
3631
2839
  * @public
3632
2840
  */
3633
2841
  Impact?: RouteNoticeImpact | undefined;
@@ -3654,8 +2862,7 @@ export interface RoutePassThroughPlace {
3654
2862
  WaypointIndex?: number | undefined;
3655
2863
  }
3656
2864
  /**
3657
- * <p>If the waypoint should be treated as a stop. If yes, the route is split up into
3658
- * different legs around the stop.</p>
2865
+ * <p>If the waypoint should be treated as a stop. If yes, the route is split up into different legs around the stop.</p>
3659
2866
  * @public
3660
2867
  */
3661
2868
  export interface RoutePassThroughWaypoint {
@@ -3676,9 +2883,7 @@ export interface RoutePassThroughWaypoint {
3676
2883
  */
3677
2884
  export interface LocalizedString {
3678
2885
  /**
3679
- * <p>A list of BCP 47 compliant language codes for the results to be rendered in. The request
3680
- * uses the regional default as the fallback if the requested language can't be
3681
- * provided.</p>
2886
+ * <p>A list of BCP 47 compliant language codes for the results to be rendered in. The request uses the regional default as the fallback if the requested language can't be provided.</p>
3682
2887
  * @public
3683
2888
  */
3684
2889
  Language?: string | undefined;
@@ -3699,20 +2904,12 @@ export interface RouteFerrySpan {
3699
2904
  */
3700
2905
  Country?: string | undefined;
3701
2906
  /**
3702
- * <p>Distance of the computed span. This feature doesn't split a span, but is always computed
3703
- * on a span split by other properties.</p>
3704
- * <p>
3705
- * <b>Unit</b>: <code>meters</code>
3706
- * </p>
2907
+ * <p>Distance of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p> <p> <b>Unit</b>: <code>meters</code> </p>
3707
2908
  * @public
3708
2909
  */
3709
2910
  Distance?: number | undefined;
3710
2911
  /**
3711
- * <p>Duration of the computed span. This feature doesn't split a span, but is always computed
3712
- * on a span split by other properties.</p>
3713
- * <p>
3714
- * <b>Unit</b>: <code>seconds</code>
3715
- * </p>
2912
+ * <p>Duration of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3716
2913
  * @public
3717
2914
  */
3718
2915
  Duration?: number | undefined;
@@ -3727,8 +2924,7 @@ export interface RouteFerrySpan {
3727
2924
  */
3728
2925
  Names?: LocalizedString[] | undefined;
3729
2926
  /**
3730
- * <p>2-3 letter Region code corresponding to the Span. This is either a province or a
3731
- * state.</p>
2927
+ * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
3732
2928
  * @public
3733
2929
  */
3734
2930
  Region?: string | undefined;
@@ -3744,45 +2940,34 @@ export interface RouteFerryOverviewSummary {
3744
2940
  */
3745
2941
  Distance: number | undefined;
3746
2942
  /**
3747
- * <p>Duration of the step.</p>
3748
- * <p>
3749
- * <b>Unit</b>: <code>seconds</code>
3750
- * </p>
2943
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3751
2944
  * @public
3752
2945
  */
3753
2946
  Duration: number | undefined;
3754
2947
  }
3755
2948
  /**
3756
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
3757
- * only portion of the journey is the same as the Distance within the Overview summary.</p>
2949
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is the same as the Distance within the Overview summary.</p>
3758
2950
  * @public
3759
2951
  */
3760
2952
  export interface RouteFerryTravelOnlySummary {
3761
2953
  /**
3762
- * <p>Total duration in free flowing traffic, which is the best case or shortest duration
3763
- * possible to cover the leg.</p>
3764
- * <p>
3765
- * <b>Unit</b>: <code>seconds</code>
3766
- * </p>
2954
+ * <p>Total duration in free flowing traffic, which is the best case or shortest duration possible to cover the leg.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3767
2955
  * @public
3768
2956
  */
3769
2957
  Duration: number | undefined;
3770
2958
  }
3771
2959
  /**
3772
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
3773
- * only portion of the journey is the same as the Distance within the Overview summary.</p>
2960
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is the same as the Distance within the Overview summary.</p>
3774
2961
  * @public
3775
2962
  */
3776
2963
  export interface RouteFerrySummary {
3777
2964
  /**
3778
- * <p>Summarized details for the leg including before travel, travel and after travel
3779
- * steps.</p>
2965
+ * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
3780
2966
  * @public
3781
2967
  */
3782
2968
  Overview?: RouteFerryOverviewSummary | undefined;
3783
2969
  /**
3784
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
3785
- * only portion of the journey is in meters</p>
2970
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
3786
2971
  * @public
3787
2972
  */
3788
2973
  TravelOnly?: RouteFerryTravelOnlySummary | undefined;
@@ -3811,10 +2996,7 @@ export interface RouteFerryTravelStep {
3811
2996
  */
3812
2997
  Distance?: number | undefined;
3813
2998
  /**
3814
- * <p>Duration of the step.</p>
3815
- * <p>
3816
- * <b>Unit</b>: <code>seconds</code>
3817
- * </p>
2999
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
3818
3000
  * @public
3819
3001
  */
3820
3002
  Duration: number | undefined;
@@ -3824,10 +3006,7 @@ export interface RouteFerryTravelStep {
3824
3006
  */
3825
3007
  GeometryOffset?: number | undefined;
3826
3008
  /**
3827
- * <p>Brief description of the step in the requested language.</p>
3828
- * <note>
3829
- * <p>Only available when the TravelStepType is Default.</p>
3830
- * </note>
3009
+ * <p>Brief description of the step in the requested language.</p> <note> <p>Only available when the TravelStepType is Default.</p> </note>
3831
3010
  * @public
3832
3011
  */
3833
3012
  Instruction?: string | undefined;
@@ -3838,8 +3017,7 @@ export interface RouteFerryTravelStep {
3838
3017
  Type: RouteFerryTravelStepType | undefined;
3839
3018
  }
3840
3019
  /**
3841
- * <p>FerryLegDetails is populated when the Leg type is Ferry, and provides additional
3842
- * information that is specific</p>
3020
+ * <p>FerryLegDetails is populated when the Leg type is Ferry, and provides additional information that is specific</p>
3843
3021
  * @public
3844
3022
  */
3845
3023
  export interface RouteFerryLegDetails {
@@ -3864,14 +3042,12 @@ export interface RouteFerryLegDetails {
3864
3042
  */
3865
3043
  Departure: RouteFerryDeparture | undefined;
3866
3044
  /**
3867
- * <p>Notices are additional information returned that indicate issues that occurred during
3868
- * route calculation.</p>
3045
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
3869
3046
  * @public
3870
3047
  */
3871
3048
  Notices: RouteFerryNotice[] | undefined;
3872
3049
  /**
3873
- * <p>Waypoints that were passed through during the leg. This includes the waypoints that were
3874
- * configured with the PassThrough option.</p>
3050
+ * <p>Waypoints that were passed through during the leg. This includes the waypoints that were configured with the PassThrough option.</p>
3875
3051
  * @public
3876
3052
  */
3877
3053
  PassThroughWaypoints: RoutePassThroughWaypoint[] | undefined;
@@ -3902,19 +3078,12 @@ export interface RouteFerryLegDetails {
3902
3078
  */
3903
3079
  export interface RouteLegGeometry {
3904
3080
  /**
3905
- * <p>An ordered list of positions used to plot a route on a map.</p>
3906
- * <note>
3907
- * <p>LineString and Polyline are mutually exclusive properties.</p>
3908
- * </note>
3081
+ * <p>An ordered list of positions used to plot a route on a map.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
3909
3082
  * @public
3910
3083
  */
3911
3084
  LineString?: number[][] | undefined;
3912
3085
  /**
3913
- * <p>An ordered list of positions used to plot a route on a map in a lossy compression
3914
- * format.</p>
3915
- * <note>
3916
- * <p>LineString and Polyline are mutually exclusive properties.</p>
3917
- * </note>
3086
+ * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
3918
3087
  * @public
3919
3088
  */
3920
3089
  Polyline?: string | undefined;
@@ -3963,16 +3132,7 @@ export interface RoutePedestrianPlace {
3963
3132
  WaypointIndex?: number | undefined;
3964
3133
  }
3965
3134
  /**
3966
- * <p>Details corresponding to the arrival for a leg.</p>
3967
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
3968
- * </p>
3969
- * <p>Examples:</p>
3970
- * <p>
3971
- * <code>2020-04-22T17:57:24Z</code>
3972
- * </p>
3973
- * <p>
3974
- * <code>2020-04-22T17:57:24+02:00</code>
3975
- * </p>
3135
+ * <p>Details corresponding to the arrival for a leg.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
3976
3136
  * @public
3977
3137
  */
3978
3138
  export interface RoutePedestrianArrival {
@@ -3988,16 +3148,7 @@ export interface RoutePedestrianArrival {
3988
3148
  Time?: string | undefined;
3989
3149
  }
3990
3150
  /**
3991
- * <p>Details corresponding to the departure for a leg.</p>
3992
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
3993
- * </p>
3994
- * <p>Examples:</p>
3995
- * <p>
3996
- * <code>2020-04-22T17:57:24Z</code>
3997
- * </p>
3998
- * <p>
3999
- * <code>2020-04-22T17:57:24+02:00</code>
4000
- * </p>
3151
+ * <p>Details corresponding to the departure for a leg.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
4001
3152
  * @public
4002
3153
  */
4003
3154
  export interface RoutePedestrianDeparture {
@@ -4028,8 +3179,7 @@ export declare const RoutePedestrianNoticeCode: {
4028
3179
  */
4029
3180
  export type RoutePedestrianNoticeCode = (typeof RoutePedestrianNoticeCode)[keyof typeof RoutePedestrianNoticeCode];
4030
3181
  /**
4031
- * <p>Notices are additional information returned that indicate issues that occurred during
4032
- * route calculation.</p>
3182
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
4033
3183
  * @public
4034
3184
  */
4035
3185
  export interface RoutePedestrianNotice {
@@ -4039,41 +3189,28 @@ export interface RoutePedestrianNotice {
4039
3189
  */
4040
3190
  Code: RoutePedestrianNoticeCode | undefined;
4041
3191
  /**
4042
- * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High
4043
- * impact notices must be evaluated further to determine the impact.</p>
3192
+ * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.</p>
4044
3193
  * @public
4045
3194
  */
4046
3195
  Impact?: RouteNoticeImpact | undefined;
4047
3196
  }
4048
3197
  /**
4049
- * <p>Details about the dynamic speed.</p>
4050
- * <p>
4051
- * <b>Unit</b>: <code>KilometersPerHour</code>
4052
- * </p>
3198
+ * <p>Details about the dynamic speed.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4053
3199
  * @public
4054
3200
  */
4055
3201
  export interface RouteSpanDynamicSpeedDetails {
4056
3202
  /**
4057
- * <p>Estimated speed while traversing the span without traffic congestion.</p>
4058
- * <p>
4059
- * <b>Unit</b>: <code>KilometersPerHour</code>
4060
- * </p>
3203
+ * <p>Estimated speed while traversing the span without traffic congestion.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4061
3204
  * @public
4062
3205
  */
4063
3206
  BestCaseSpeed?: number | undefined;
4064
3207
  /**
4065
- * <p>Estimated time to turn from this span into the next. </p>
4066
- * <p>
4067
- * <b>Unit</b>: <code>seconds</code>
4068
- * </p>
3208
+ * <p>Estimated time to turn from this span into the next. </p> <p> <b>Unit</b>: <code>seconds</code> </p>
4069
3209
  * @public
4070
3210
  */
4071
3211
  TurnDuration?: number | undefined;
4072
3212
  /**
4073
- * <p>Estimated speed while traversing the span under typical traffic congestion.</p>
4074
- * <p>
4075
- * <b>Unit</b>: <code>KilometersPerHour</code>
4076
- * </p>
3213
+ * <p>Estimated speed while traversing the span under typical traffic congestion.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4077
3214
  * @public
4078
3215
  */
4079
3216
  TypicalSpeed?: number | undefined;
@@ -4152,18 +3289,12 @@ export interface RouteNumber {
4152
3289
  Value: string | undefined;
4153
3290
  }
4154
3291
  /**
4155
- * <p>Details about the speed limit corresponding to the span.</p>
4156
- * <p>
4157
- * <b>Unit</b>: <code>KilometersPerHour</code>
4158
- * </p>
3292
+ * <p>Details about the speed limit corresponding to the span.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4159
3293
  * @public
4160
3294
  */
4161
3295
  export interface RouteSpanSpeedLimitDetails {
4162
3296
  /**
4163
- * <p>Maximum speed.</p>
4164
- * <p>
4165
- * <b>Unit</b>: <code>KilometersPerHour</code>
4166
- * </p>
3297
+ * <p>Maximum speed.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4167
3298
  * @public
4168
3299
  */
4169
3300
  MaxSpeed?: number | undefined;
@@ -4179,10 +3310,7 @@ export interface RouteSpanSpeedLimitDetails {
4179
3310
  */
4180
3311
  export interface RoutePedestrianSpan {
4181
3312
  /**
4182
- * <p>Duration of the computed span without traffic congestion.</p>
4183
- * <p>
4184
- * <b>Unit</b>: <code>seconds</code>
4185
- * </p>
3313
+ * <p>Duration of the computed span without traffic congestion.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
4186
3314
  * @public
4187
3315
  */
4188
3316
  BestCaseDuration?: number | undefined;
@@ -4192,25 +3320,17 @@ export interface RoutePedestrianSpan {
4192
3320
  */
4193
3321
  Country?: string | undefined;
4194
3322
  /**
4195
- * <p>Distance of the computed span. This feature doesn't split a span, but is always computed
4196
- * on a span split by other properties.</p>
3323
+ * <p>Distance of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p>
4197
3324
  * @public
4198
3325
  */
4199
3326
  Distance?: number | undefined;
4200
3327
  /**
4201
- * <p>Duration of the computed span. This feature doesn't split a span, but is always computed
4202
- * on a span split by other properties.</p>
4203
- * <p>
4204
- * <b>Unit</b>: <code>seconds</code>
4205
- * </p>
3328
+ * <p>Duration of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
4206
3329
  * @public
4207
3330
  */
4208
3331
  Duration?: number | undefined;
4209
3332
  /**
4210
- * <p>Dynamic speed details corresponding to the span.</p>
4211
- * <p>
4212
- * <b>Unit</b>: <code>KilometersPerHour</code>
4213
- * </p>
3333
+ * <p>Dynamic speed details corresponding to the span.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4214
3334
  * @public
4215
3335
  */
4216
3336
  DynamicSpeed?: RouteSpanDynamicSpeedDetails | undefined;
@@ -4225,8 +3345,7 @@ export interface RoutePedestrianSpan {
4225
3345
  */
4226
3346
  GeometryOffset?: number | undefined;
4227
3347
  /**
4228
- * <p>Incidents corresponding to the span. These index into the Incidents in the parent
4229
- * Leg.</p>
3348
+ * <p>Incidents corresponding to the span. These index into the Incidents in the parent Leg.</p>
4230
3349
  * @public
4231
3350
  */
4232
3351
  Incidents?: number[] | undefined;
@@ -4241,8 +3360,7 @@ export interface RoutePedestrianSpan {
4241
3360
  */
4242
3361
  PedestrianAccess?: RouteSpanPedestrianAccessAttribute[] | undefined;
4243
3362
  /**
4244
- * <p>2-3 letter Region code corresponding to the Span. This is either a province or a
4245
- * state.</p>
3363
+ * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
4246
3364
  * @public
4247
3365
  */
4248
3366
  Region?: string | undefined;
@@ -4257,18 +3375,12 @@ export interface RoutePedestrianSpan {
4257
3375
  */
4258
3376
  RouteNumbers?: RouteNumber[] | undefined;
4259
3377
  /**
4260
- * <p>Speed limit details corresponding to the span.</p>
4261
- * <p>
4262
- * <b>Unit</b>: <code>KilometersPerHour</code>
4263
- * </p>
3378
+ * <p>Speed limit details corresponding to the span.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
4264
3379
  * @public
4265
3380
  */
4266
3381
  SpeedLimit?: RouteSpanSpeedLimitDetails | undefined;
4267
3382
  /**
4268
- * <p>Duration of the computed span under typical traffic congestion.</p>
4269
- * <p>
4270
- * <b>Unit</b>: <code>seconds</code>
4271
- * </p>
3383
+ * <p>Duration of the computed span under typical traffic congestion.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
4272
3384
  * @public
4273
3385
  */
4274
3386
  TypicalDuration?: number | undefined;
@@ -4295,29 +3407,23 @@ export interface RoutePedestrianOverviewSummary {
4295
3407
  */
4296
3408
  export interface RoutePedestrianTravelOnlySummary {
4297
3409
  /**
4298
- * <p>Duration of the step.</p>
4299
- * <p>
4300
- * <b>Unit</b>: <code>seconds</code>
4301
- * </p>
3410
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
4302
3411
  * @public
4303
3412
  */
4304
3413
  Duration: number | undefined;
4305
3414
  }
4306
3415
  /**
4307
- * <p>Summarized details for the leg including before travel, travel and after travel
4308
- * steps.</p>
3416
+ * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
4309
3417
  * @public
4310
3418
  */
4311
3419
  export interface RoutePedestrianSummary {
4312
3420
  /**
4313
- * <p>Summarized details for the leg including before travel, travel and after travel
4314
- * steps.</p>
3421
+ * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
4315
3422
  * @public
4316
3423
  */
4317
3424
  Overview?: RoutePedestrianOverviewSummary | undefined;
4318
3425
  /**
4319
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
4320
- * only portion of the journey is in meters</p>
3426
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
4321
3427
  * @public
4322
3428
  */
4323
3429
  TravelOnly?: RoutePedestrianTravelOnlySummary | undefined;
@@ -4519,8 +3625,7 @@ export interface RouteSignpostLabel {
4519
3625
  Text?: LocalizedString | undefined;
4520
3626
  }
4521
3627
  /**
4522
- * <p>Sign post information of the action, applicable only for TurnByTurn steps. See
4523
- * RouteSignpost for details of sub-attributes.</p>
3628
+ * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
4524
3629
  * @public
4525
3630
  */
4526
3631
  export interface RouteSignpost {
@@ -4598,10 +3703,7 @@ export interface RoutePedestrianTravelStep {
4598
3703
  */
4599
3704
  Distance?: number | undefined;
4600
3705
  /**
4601
- * <p>Duration of the step.</p>
4602
- * <p>
4603
- * <b>Unit</b>: <code>seconds</code>
4604
- * </p>
3706
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
4605
3707
  * @public
4606
3708
  */
4607
3709
  Duration: number | undefined;
@@ -4616,10 +3718,7 @@ export interface RoutePedestrianTravelStep {
4616
3718
  */
4617
3719
  GeometryOffset?: number | undefined;
4618
3720
  /**
4619
- * <p>Brief description of the step in the requested language.</p>
4620
- * <note>
4621
- * <p>Only available when the TravelStepType is Default.</p>
4622
- * </note>
3721
+ * <p>Brief description of the step in the requested language.</p> <note> <p>Only available when the TravelStepType is Default.</p> </note>
4623
3722
  * @public
4624
3723
  */
4625
3724
  Instruction?: string | undefined;
@@ -4649,8 +3748,7 @@ export interface RoutePedestrianTravelStep {
4649
3748
  */
4650
3749
  RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails | undefined;
4651
3750
  /**
4652
- * <p>Sign post information of the action, applicable only for TurnByTurn steps. See
4653
- * RouteSignpost for details of sub-attributes.</p>
3751
+ * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
4654
3752
  * @public
4655
3753
  */
4656
3754
  Signpost?: RouteSignpost | undefined;
@@ -4681,14 +3779,12 @@ export interface RoutePedestrianLegDetails {
4681
3779
  */
4682
3780
  Departure: RoutePedestrianDeparture | undefined;
4683
3781
  /**
4684
- * <p>Notices are additional information returned that indicate issues that occurred during
4685
- * route calculation.</p>
3782
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
4686
3783
  * @public
4687
3784
  */
4688
3785
  Notices: RoutePedestrianNotice[] | undefined;
4689
3786
  /**
4690
- * <p>Waypoints that were passed through during the leg. This includes the waypoints that were
4691
- * configured with the PassThrough option.</p>
3787
+ * <p>Waypoints that were passed through during the leg. This includes the waypoints that were configured with the PassThrough option.</p>
4692
3788
  * @public
4693
3789
  */
4694
3790
  PassThroughWaypoints: RoutePassThroughWaypoint[] | undefined;
@@ -4851,10 +3947,7 @@ export interface RouteVehicleIncident {
4851
3947
  */
4852
3948
  EndTime?: string | undefined;
4853
3949
  /**
4854
- * <p>Severity of the incident Critical - The part of the route the incident affects is
4855
- * unusable. Major- Major impact on the leg duration, for example stop and go Minor- Minor
4856
- * impact on the leg duration, for example traffic jam Low - Low on duration, for example
4857
- * slightly increased traffic</p>
3950
+ * <p>Severity of the incident Critical - The part of the route the incident affects is unusable. Major- Major impact on the leg duration, for example stop and go Minor- Minor impact on the leg duration, for example traffic jam Low - Low on duration, for example slightly increased traffic</p>
4858
3951
  * @public
4859
3952
  */
4860
3953
  Severity?: RouteVehicleIncidentSeverity | undefined;
@@ -4936,10 +4029,7 @@ export declare const RouteWeightConstraintType: {
4936
4029
  */
4937
4030
  export type RouteWeightConstraintType = (typeof RouteWeightConstraintType)[keyof typeof RouteWeightConstraintType];
4938
4031
  /**
4939
- * <p>The weight constraint for the route.</p>
4940
- * <p>
4941
- * <b>Unit</b>: <code>Kilograms</code>
4942
- * </p>
4032
+ * <p>The weight constraint for the route.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
4943
4033
  * @public
4944
4034
  */
4945
4035
  export interface RouteWeightConstraint {
@@ -4949,10 +4039,7 @@ export interface RouteWeightConstraint {
4949
4039
  */
4950
4040
  Type: RouteWeightConstraintType | undefined;
4951
4041
  /**
4952
- * <p>The constraint value.</p>
4953
- * <p>
4954
- * <b>Unit</b>: <code>Kilograms</code>
4955
- * </p>
4042
+ * <p>The constraint value.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
4956
4043
  * @public
4957
4044
  */
4958
4045
  Value: number | undefined;
@@ -4963,8 +4050,7 @@ export interface RouteWeightConstraint {
4963
4050
  */
4964
4051
  export interface RouteViolatedConstraints {
4965
4052
  /**
4966
- * <p>This restriction applies to truck cargo, where the resulting route excludes roads on
4967
- * which hazardous materials are prohibited from being transported.</p>
4053
+ * <p>This restriction applies to truck cargo, where the resulting route excludes roads on which hazardous materials are prohibited from being transported.</p>
4968
4054
  * @public
4969
4055
  */
4970
4056
  AllHazardsRestricted?: boolean | undefined;
@@ -4984,10 +4070,7 @@ export interface RouteViolatedConstraints {
4984
4070
  */
4985
4071
  MaxHeight?: number | undefined;
4986
4072
  /**
4987
- * <p>The maximum Kpra length of the vehicle.</p>
4988
- * <p>
4989
- * <b>Unit</b>: <code>centimeters</code>
4990
- * </p>
4073
+ * <p>The maximum Kpra length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
4991
4074
  * @public
4992
4075
  */
4993
4076
  MaxKpraLength?: number | undefined;
@@ -4997,34 +4080,22 @@ export interface RouteViolatedConstraints {
4997
4080
  */
4998
4081
  MaxLength?: number | undefined;
4999
4082
  /**
5000
- * <p>The maximum load capacity of the vehicle.</p>
5001
- * <p>
5002
- * <b>Unit</b>: <code>kilograms</code>
5003
- * </p>
4083
+ * <p>The maximum load capacity of the vehicle.</p> <p> <b>Unit</b>: <code>kilograms</code> </p>
5004
4084
  * @public
5005
4085
  */
5006
4086
  MaxPayloadCapacity?: number | undefined;
5007
4087
  /**
5008
- * <p>The maximum weight of the route.</p>
5009
- * <p>
5010
- * <b>Unit</b>: <code>Kilograms</code>
5011
- * </p>
4088
+ * <p>The maximum weight of the route.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
5012
4089
  * @public
5013
4090
  */
5014
4091
  MaxWeight?: RouteWeightConstraint | undefined;
5015
4092
  /**
5016
- * <p>The maximum weight per axle of the vehicle.</p>
5017
- * <p>
5018
- * <b>Unit</b>: <code>Kilograms</code>
5019
- * </p>
4093
+ * <p>The maximum weight per axle of the vehicle.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
5020
4094
  * @public
5021
4095
  */
5022
4096
  MaxWeightPerAxle?: number | undefined;
5023
4097
  /**
5024
- * <p>The maximum weight per axle group of the vehicle.</p>
5025
- * <p>
5026
- * <b>Unit</b>: <code>Kilograms</code>
5027
- * </p>
4098
+ * <p>The maximum weight per axle group of the vehicle.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
5028
4099
  * @public
5029
4100
  */
5030
4101
  MaxWeightPerAxleGroup?: WeightPerAxleGroup | undefined;
@@ -5034,9 +4105,7 @@ export interface RouteViolatedConstraints {
5034
4105
  */
5035
4106
  MaxWidth?: number | undefined;
5036
4107
  /**
5037
- * <p>The number of occupants in the vehicle.</p>
5038
- * <p>Default Value: <code>1</code>
5039
- * </p>
4108
+ * <p>The number of occupants in the vehicle.</p> <p>Default Value: <code>1</code> </p>
5040
4109
  * @public
5041
4110
  */
5042
4111
  Occupancy?: RouteNoticeDetailRange | undefined;
@@ -5051,9 +4120,7 @@ export interface RouteViolatedConstraints {
5051
4120
  */
5052
4121
  TimeDependent?: boolean | undefined;
5053
4122
  /**
5054
- * <p>Number of trailers attached to the vehicle.</p>
5055
- * <p>Default Value: <code>0</code>
5056
- * </p>
4123
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
5057
4124
  * @public
5058
4125
  */
5059
4126
  TrailerCount?: RouteNoticeDetailRange | undefined;
@@ -5063,11 +4130,7 @@ export interface RouteViolatedConstraints {
5063
4130
  */
5064
4131
  TravelMode?: boolean | undefined;
5065
4132
  /**
5066
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
5067
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
5068
- * <note>
5069
- * <p>There are currently no other supported values as of 26th April 2024.</p>
5070
- * </note>
4133
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
5071
4134
  * @public
5072
4135
  */
5073
4136
  TruckRoadType?: string | undefined;
@@ -5077,72 +4140,7 @@ export interface RouteViolatedConstraints {
5077
4140
  */
5078
4141
  TruckType?: RouteTruckType | undefined;
5079
4142
  /**
5080
- * <p>The tunnel restriction code.</p>
5081
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
5082
- * in Great Britain. They relate to the types of dangerous goods that can be transported
5083
- * through them.</p>
5084
- * <ul>
5085
- * <li>
5086
- * <p>
5087
- * <i>Tunnel Category B</i>
5088
- * </p>
5089
- * <ul>
5090
- * <li>
5091
- * <p>
5092
- * <i>Risk Level</i>: Limited risk</p>
5093
- * </li>
5094
- * <li>
5095
- * <p>
5096
- * <i>Restrictions</i>: Few restrictions</p>
5097
- * </li>
5098
- * </ul>
5099
- * </li>
5100
- * <li>
5101
- * <p>
5102
- * <i>Tunnel Category C</i>
5103
- * </p>
5104
- * <ul>
5105
- * <li>
5106
- * <p>
5107
- * <i>Risk Level</i>: Medium risk</p>
5108
- * </li>
5109
- * <li>
5110
- * <p>
5111
- * <i>Restrictions</i>: Some restrictions</p>
5112
- * </li>
5113
- * </ul>
5114
- * </li>
5115
- * <li>
5116
- * <p>
5117
- * <i>Tunnel Category D</i>
5118
- * </p>
5119
- * <ul>
5120
- * <li>
5121
- * <p>
5122
- * <i>Risk Level</i>: High risk</p>
5123
- * </li>
5124
- * <li>
5125
- * <p>
5126
- * <i>Restrictions</i>: Many restrictions occur</p>
5127
- * </li>
5128
- * </ul>
5129
- * </li>
5130
- * <li>
5131
- * <p>
5132
- * <i>Tunnel Category E</i>
5133
- * </p>
5134
- * <ul>
5135
- * <li>
5136
- * <p>
5137
- * <i>Risk Level</i>: Very high risk</p>
5138
- * </li>
5139
- * <li>
5140
- * <p>
5141
- * <i>Restrictions</i>: Restricted tunnel</p>
5142
- * </li>
5143
- * </ul>
5144
- * </li>
5145
- * </ul>
4143
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
5146
4144
  * @public
5147
4145
  */
5148
4146
  TunnelRestrictionCode?: string | undefined;
@@ -5164,8 +4162,7 @@ export interface RouteVehicleNoticeDetail {
5164
4162
  ViolatedConstraints?: RouteViolatedConstraints | undefined;
5165
4163
  }
5166
4164
  /**
5167
- * <p>Notices are additional information returned that indicate issues that occurred during
5168
- * route calculation.</p>
4165
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
5169
4166
  * @public
5170
4167
  */
5171
4168
  export interface RouteVehicleNotice {
@@ -5180,8 +4177,7 @@ export interface RouteVehicleNotice {
5180
4177
  */
5181
4178
  Details: RouteVehicleNoticeDetail[] | undefined;
5182
4179
  /**
5183
- * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High
5184
- * impact notices must be evaluated further to determine the impact.</p>
4180
+ * <p>Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.</p>
5185
4181
  * @public
5186
4182
  */
5187
4183
  Impact?: RouteNoticeImpact | undefined;
@@ -5256,10 +4252,7 @@ export type RouteSpanTruckAccessAttribute = (typeof RouteSpanTruckAccessAttribut
5256
4252
  */
5257
4253
  export interface RouteVehicleSpan {
5258
4254
  /**
5259
- * <p>Duration of the computed span without traffic congestion.</p>
5260
- * <p>
5261
- * <b>Unit</b>: <code>seconds</code>
5262
- * </p>
4255
+ * <p>Duration of the computed span without traffic congestion.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5263
4256
  * @public
5264
4257
  */
5265
4258
  BestCaseDuration?: number | undefined;
@@ -5274,25 +4267,17 @@ export interface RouteVehicleSpan {
5274
4267
  */
5275
4268
  Country?: string | undefined;
5276
4269
  /**
5277
- * <p>Distance of the computed span. This feature doesn't split a span, but is always computed
5278
- * on a span split by other properties.</p>
4270
+ * <p>Distance of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p>
5279
4271
  * @public
5280
4272
  */
5281
4273
  Distance?: number | undefined;
5282
4274
  /**
5283
- * <p>Duration of the computed span. This feature doesn't split a span, but is always computed
5284
- * on a span split by other properties.</p>
5285
- * <p>
5286
- * <b>Unit</b>: <code>seconds</code>
5287
- * </p>
4275
+ * <p>Duration of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5288
4276
  * @public
5289
4277
  */
5290
4278
  Duration?: number | undefined;
5291
4279
  /**
5292
- * <p>Dynamic speed details corresponding to the span.</p>
5293
- * <p>
5294
- * <b>Unit</b>: <code>KilometersPerHour</code>
5295
- * </p>
4280
+ * <p>Dynamic speed details corresponding to the span.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
5296
4281
  * @public
5297
4282
  */
5298
4283
  DynamicSpeed?: RouteSpanDynamicSpeedDetails | undefined;
@@ -5302,8 +4287,7 @@ export interface RouteVehicleSpan {
5302
4287
  */
5303
4288
  FunctionalClassification?: number | undefined;
5304
4289
  /**
5305
- * <p>Attributes corresponding to a gate. The gate is present at the end of the returned
5306
- * span.</p>
4290
+ * <p>Attributes corresponding to a gate. The gate is present at the end of the returned span.</p>
5307
4291
  * @public
5308
4292
  */
5309
4293
  Gate?: RouteSpanGateAttribute | undefined;
@@ -5313,8 +4297,7 @@ export interface RouteVehicleSpan {
5313
4297
  */
5314
4298
  GeometryOffset?: number | undefined;
5315
4299
  /**
5316
- * <p>Incidents corresponding to the span. These index into the Incidents in the parent
5317
- * Leg.</p>
4300
+ * <p>Incidents corresponding to the span. These index into the Incidents in the parent Leg.</p>
5318
4301
  * @public
5319
4302
  */
5320
4303
  Incidents?: number[] | undefined;
@@ -5324,20 +4307,17 @@ export interface RouteVehicleSpan {
5324
4307
  */
5325
4308
  Names?: LocalizedString[] | undefined;
5326
4309
  /**
5327
- * <p>Notices are additional information returned that indicate issues that occurred during
5328
- * route calculation.</p>
4310
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
5329
4311
  * @public
5330
4312
  */
5331
4313
  Notices?: number[] | undefined;
5332
4314
  /**
5333
- * <p>Attributes corresponding to a railway crossing. The gate is present at the end of the
5334
- * returned span.</p>
4315
+ * <p>Attributes corresponding to a railway crossing. The gate is present at the end of the returned span.</p>
5335
4316
  * @public
5336
4317
  */
5337
4318
  RailwayCrossing?: RouteSpanRailwayCrossingAttribute | undefined;
5338
4319
  /**
5339
- * <p>2-3 letter Region code corresponding to the Span. This is either a province or a
5340
- * state.</p>
4320
+ * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
5341
4321
  * @public
5342
4322
  */
5343
4323
  Region?: string | undefined;
@@ -5357,10 +4337,7 @@ export interface RouteVehicleSpan {
5357
4337
  */
5358
4338
  ScooterAccess?: RouteSpanScooterAccessAttribute[] | undefined;
5359
4339
  /**
5360
- * <p>Speed limit details corresponding to the span.</p>
5361
- * <p>
5362
- * <b>Unit</b>: <code>KilometersPerHour</code>
5363
- * </p>
4340
+ * <p>Speed limit details corresponding to the span.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
5364
4341
  * @public
5365
4342
  */
5366
4343
  SpeedLimit?: RouteSpanSpeedLimitDetails | undefined;
@@ -5375,19 +4352,12 @@ export interface RouteVehicleSpan {
5375
4352
  */
5376
4353
  TruckAccess?: RouteSpanTruckAccessAttribute[] | undefined;
5377
4354
  /**
5378
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
5379
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
5380
- * <note>
5381
- * <p>There are currently no other supported values as of 26th April 2024.</p>
5382
- * </note>
4355
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
5383
4356
  * @public
5384
4357
  */
5385
4358
  TruckRoadTypes?: number[] | undefined;
5386
4359
  /**
5387
- * <p>Duration of the computed span under typical traffic congestion. </p>
5388
- * <p>
5389
- * <b>Unit</b>: <code>seconds</code>
5390
- * </p>
4360
+ * <p>Duration of the computed span under typical traffic congestion. </p> <p> <b>Unit</b>: <code>seconds</code> </p>
5391
4361
  * @public
5392
4362
  */
5393
4363
  TypicalDuration?: number | undefined;
@@ -5403,11 +4373,7 @@ export interface RouteVehicleSpan {
5403
4373
  */
5404
4374
  export interface RouteVehicleOverviewSummary {
5405
4375
  /**
5406
- * <p>Total duration in free flowing traffic, which is the best case or shortest duration
5407
- * possible to cover the leg.</p>
5408
- * <p>
5409
- * <b>Unit</b>: <code>seconds</code>
5410
- * </p>
4376
+ * <p>Total duration in free flowing traffic, which is the best case or shortest duration possible to cover the leg.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5411
4377
  * @public
5412
4378
  */
5413
4379
  BestCaseDuration?: number | undefined;
@@ -5417,18 +4383,12 @@ export interface RouteVehicleOverviewSummary {
5417
4383
  */
5418
4384
  Distance: number | undefined;
5419
4385
  /**
5420
- * <p>Duration of the step.</p>
5421
- * <p>
5422
- * <b>Unit</b>: <code>seconds</code>
5423
- * </p>
4386
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5424
4387
  * @public
5425
4388
  */
5426
4389
  Duration: number | undefined;
5427
4390
  /**
5428
- * <p>Duration of the computed span under typical traffic congestion. </p>
5429
- * <p>
5430
- * <b>Unit</b>: <code>seconds</code>
5431
- * </p>
4391
+ * <p>Duration of the computed span under typical traffic congestion. </p> <p> <b>Unit</b>: <code>seconds</code> </p>
5432
4392
  * @public
5433
4393
  */
5434
4394
  TypicalDuration?: number | undefined;
@@ -5439,27 +4399,17 @@ export interface RouteVehicleOverviewSummary {
5439
4399
  */
5440
4400
  export interface RouteVehicleTravelOnlySummary {
5441
4401
  /**
5442
- * <p>Total duration in free flowing traffic, which is the best case or shortest duration
5443
- * possible to cover the leg.</p>
5444
- * <p>
5445
- * <b>Unit</b>: <code>seconds</code>
5446
- * </p>
4402
+ * <p>Total duration in free flowing traffic, which is the best case or shortest duration possible to cover the leg.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5447
4403
  * @public
5448
4404
  */
5449
4405
  BestCaseDuration?: number | undefined;
5450
4406
  /**
5451
- * <p>Duration of the step.</p>
5452
- * <p>
5453
- * <b>Unit</b>: <code>seconds</code>
5454
- * </p>
4407
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5455
4408
  * @public
5456
4409
  */
5457
4410
  Duration: number | undefined;
5458
4411
  /**
5459
- * <p>Duration of the computed span under typical traffic congestion.</p>
5460
- * <p>
5461
- * <b>Unit</b>: <code>seconds</code>
5462
- * </p>
4412
+ * <p>Duration of the computed span under typical traffic congestion.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5463
4413
  * @public
5464
4414
  */
5465
4415
  TypicalDuration?: number | undefined;
@@ -5470,14 +4420,12 @@ export interface RouteVehicleTravelOnlySummary {
5470
4420
  */
5471
4421
  export interface RouteVehicleSummary {
5472
4422
  /**
5473
- * <p>Summarized details for the leg including before travel, travel and after travel
5474
- * steps.</p>
4423
+ * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
5475
4424
  * @public
5476
4425
  */
5477
4426
  Overview?: RouteVehicleOverviewSummary | undefined;
5478
4427
  /**
5479
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
5480
- * only portion of the journey is in meters</p>
4428
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
5481
4429
  * @public
5482
4430
  */
5483
4431
  TravelOnly?: RouteVehicleTravelOnlySummary | undefined;
@@ -5520,8 +4468,7 @@ export interface RouteTollPriceValueRange {
5520
4468
  */
5521
4469
  export interface RouteTollPrice {
5522
4470
  /**
5523
- * <p>Currency code corresponding to the price. This is the same as Currency specified in the
5524
- * request.</p>
4471
+ * <p>Currency code corresponding to the price. This is the same as Currency specified in the request.</p>
5525
4472
  * @public
5526
4473
  */
5527
4474
  Currency: string | undefined;
@@ -5531,16 +4478,12 @@ export interface RouteTollPrice {
5531
4478
  */
5532
4479
  Estimate: boolean | undefined;
5533
4480
  /**
5534
- * <p>Duration for which the price corresponds to.</p>
5535
- * <p>
5536
- * <b>Unit</b>: <code>seconds</code>
5537
- * </p>
4481
+ * <p>Duration for which the price corresponds to.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5538
4482
  * @public
5539
4483
  */
5540
4484
  PerDuration?: number | undefined;
5541
4485
  /**
5542
- * <p>If the price is a range or an exact value. If any of the toll fares making up the route
5543
- * is a range, the overall price is also a range.</p>
4486
+ * <p>If the price is a range or an exact value. If any of the toll fares making up the route is a range, the overall price is also a range.</p>
5544
4487
  * @public
5545
4488
  */
5546
4489
  Range: boolean | undefined;
@@ -5693,9 +4636,7 @@ export interface RouteTollRate {
5693
4636
  Transponders: RouteTransponder[] | undefined;
5694
4637
  }
5695
4638
  /**
5696
- * <p>Provides details about toll information along a route, including the payment sites,
5697
- * applicable toll rates, toll systems, and the country associated with the toll
5698
- * collection.</p>
4639
+ * <p>Provides details about toll information along a route, including the payment sites, applicable toll rates, toll systems, and the country associated with the toll collection.</p>
5699
4640
  * @public
5700
4641
  */
5701
4642
  export interface RouteToll {
@@ -5915,10 +4856,7 @@ export interface RouteVehicleTravelStep {
5915
4856
  */
5916
4857
  Distance?: number | undefined;
5917
4858
  /**
5918
- * <p>Duration of the step.</p>
5919
- * <p>
5920
- * <b>Unit</b>: <code>seconds</code>
5921
- * </p>
4859
+ * <p>Duration of the step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
5922
4860
  * @public
5923
4861
  */
5924
4862
  Duration: number | undefined;
@@ -5943,10 +4881,7 @@ export interface RouteVehicleTravelStep {
5943
4881
  */
5944
4882
  GeometryOffset?: number | undefined;
5945
4883
  /**
5946
- * <p>Brief description of the step in the requested language.</p>
5947
- * <note>
5948
- * <p>Only available when the TravelStepType is Default.</p>
5949
- * </note>
4884
+ * <p>Brief description of the step in the requested language.</p> <note> <p>Only available when the TravelStepType is Default.</p> </note>
5950
4885
  * @public
5951
4886
  */
5952
4887
  Instruction?: string | undefined;
@@ -5981,8 +4916,7 @@ export interface RouteVehicleTravelStep {
5981
4916
  */
5982
4917
  RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails | undefined;
5983
4918
  /**
5984
- * <p>Sign post information of the action, applicable only for TurnByTurn steps. See
5985
- * RouteSignpost for details of sub-attributes.</p>
4919
+ * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
5986
4920
  * @public
5987
4921
  */
5988
4922
  Signpost?: RouteSignpost | undefined;
@@ -6039,14 +4973,12 @@ export interface RouteVehicleLegDetails {
6039
4973
  */
6040
4974
  Incidents: RouteVehicleIncident[] | undefined;
6041
4975
  /**
6042
- * <p>Notices are additional information returned that indicate issues that occurred during
6043
- * route calculation.</p>
4976
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
6044
4977
  * @public
6045
4978
  */
6046
4979
  Notices: RouteVehicleNotice[] | undefined;
6047
4980
  /**
6048
- * <p>Waypoints that were passed through during the leg. This includes the waypoints that were
6049
- * configured with the PassThrough option.</p>
4981
+ * <p>Waypoints that were passed through during the leg. This includes the waypoints that were configured with the PassThrough option.</p>
6050
4982
  * @public
6051
4983
  */
6052
4984
  PassThroughWaypoints: RoutePassThroughWaypoint[] | undefined;
@@ -6076,11 +5008,7 @@ export interface RouteVehicleLegDetails {
6076
5008
  */
6077
5009
  TravelSteps: RouteVehicleTravelStep[] | undefined;
6078
5010
  /**
6079
- * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to
6080
- * Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
6081
- * <note>
6082
- * <p>There are currently no other supported values as of 26th April 2024.</p>
6083
- * </note>
5011
+ * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden. <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p> <note> <p>There are currently no other supported values as of 26th April 2024.</p> </note>
6084
5012
  * @public
6085
5013
  */
6086
5014
  TruckRoadTypes: string[] | undefined;
@@ -6091,17 +5019,12 @@ export interface RouteVehicleLegDetails {
6091
5019
  Zones: RouteZone[] | undefined;
6092
5020
  }
6093
5021
  /**
6094
- * <p>A leg is a section of a route from one waypoint to the next. A leg could be of type
6095
- * Vehicle, Pedestrian or Ferry. Legs of different types could occur together within a single
6096
- * route. For example, a car employing the use of a Ferry will contain Vehicle legs
6097
- * corresponding to journey on land, and Ferry legs corresponding to the journey via
6098
- * Ferry.</p>
5022
+ * <p>A leg is a section of a route from one waypoint to the next. A leg could be of type Vehicle, Pedestrian or Ferry. Legs of different types could occur together within a single route. For example, a car employing the use of a Ferry will contain Vehicle legs corresponding to journey on land, and Ferry legs corresponding to the journey via Ferry.</p>
6099
5023
  * @public
6100
5024
  */
6101
5025
  export interface RouteLeg {
6102
5026
  /**
6103
- * <p>FerryLegDetails is populated when the Leg type is Ferry, and provides additional
6104
- * information that is specific</p>
5027
+ * <p>FerryLegDetails is populated when the Leg type is Ferry, and provides additional information that is specific</p>
6105
5028
  * @public
6106
5029
  */
6107
5030
  FerryLegDetails?: RouteFerryLegDetails | undefined;
@@ -6121,10 +5044,7 @@ export interface RouteLeg {
6121
5044
  */
6122
5045
  PedestrianLegDetails?: RoutePedestrianLegDetails | undefined;
6123
5046
  /**
6124
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
6125
- * of travel and road compatibility.</p>
6126
- * <p>Default Value: <code>Car</code>
6127
- * </p>
5047
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <p>Default Value: <code>Car</code> </p>
6128
5048
  * @public
6129
5049
  */
6130
5050
  TravelMode: RouteLegTravelMode | undefined;
@@ -6140,8 +5060,7 @@ export interface RouteLeg {
6140
5060
  VehicleLegDetails?: RouteVehicleLegDetails | undefined;
6141
5061
  }
6142
5062
  /**
6143
- * <p>Important labels including names and route numbers that differentiate the current route
6144
- * from the alternatives presented.</p>
5063
+ * <p>Important labels including names and route numbers that differentiate the current route from the alternatives presented.</p>
6145
5064
  * @public
6146
5065
  */
6147
5066
  export interface RouteMajorRoadLabel {
@@ -6162,8 +5081,7 @@ export interface RouteMajorRoadLabel {
6162
5081
  */
6163
5082
  export interface RouteTollPriceSummary {
6164
5083
  /**
6165
- * <p>Currency code corresponding to the price. This is the same as Currency specified in the
6166
- * request.</p>
5084
+ * <p>Currency code corresponding to the price. This is the same as Currency specified in the request.</p>
6167
5085
  * @public
6168
5086
  */
6169
5087
  Currency: string | undefined;
@@ -6173,8 +5091,7 @@ export interface RouteTollPriceSummary {
6173
5091
  */
6174
5092
  Estimate: boolean | undefined;
6175
5093
  /**
6176
- * <p>If the price is a range or an exact value. If any of the toll fares making up the route
6177
- * is a range, the overall price is also a range.</p>
5094
+ * <p>If the price is a range or an exact value. If any of the toll fares making up the route is a range, the overall price is also a range.</p>
6178
5095
  * @public
6179
5096
  */
6180
5097
  Range: boolean | undefined;
@@ -6195,15 +5112,13 @@ export interface RouteTollPriceSummary {
6195
5112
  */
6196
5113
  export interface RouteTollSummary {
6197
5114
  /**
6198
- * <p>Total toll summary for the complete route. Total is the only summary available
6199
- * today.</p>
5115
+ * <p>Total toll summary for the complete route. Total is the only summary available today.</p>
6200
5116
  * @public
6201
5117
  */
6202
5118
  Total?: RouteTollPriceSummary | undefined;
6203
5119
  }
6204
5120
  /**
6205
- * <p>Summarized details for the leg including travel steps only. The Distance for the travel
6206
- * only portion of the journey is the same as the Distance within the Overview summary.</p>
5121
+ * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is the same as the Distance within the Overview summary.</p>
6207
5122
  * @public
6208
5123
  */
6209
5124
  export interface RouteSummary {
@@ -6213,10 +5128,7 @@ export interface RouteSummary {
6213
5128
  */
6214
5129
  Distance?: number | undefined;
6215
5130
  /**
6216
- * <p>Duration of the route.</p>
6217
- * <p>
6218
- * <b>Unit</b>: <code>seconds</code>
6219
- * </p>
5131
+ * <p>Duration of the route.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6220
5132
  * @public
6221
5133
  */
6222
5134
  Duration?: number | undefined;
@@ -6232,17 +5144,12 @@ export interface RouteSummary {
6232
5144
  */
6233
5145
  export interface Route {
6234
5146
  /**
6235
- * <p>A leg is a section of a route from one waypoint to the next. A leg could be of type
6236
- * Vehicle, Pedestrian or Ferry. Legs of different types could occur together within a single
6237
- * route. For example, a car employing the use of a Ferry will contain Vehicle legs
6238
- * corresponding to journey on land, and Ferry legs corresponding to the journey via
6239
- * Ferry.</p>
5147
+ * <p>A leg is a section of a route from one waypoint to the next. A leg could be of type Vehicle, Pedestrian or Ferry. Legs of different types could occur together within a single route. For example, a car employing the use of a Ferry will contain Vehicle legs corresponding to journey on land, and Ferry legs corresponding to the journey via Ferry.</p>
6240
5148
  * @public
6241
5149
  */
6242
5150
  Legs: RouteLeg[] | undefined;
6243
5151
  /**
6244
- * <p>Important labels including names and route numbers that differentiate the current route
6245
- * from the alternatives presented.</p>
5152
+ * <p>Important labels including names and route numbers that differentiate the current route from the alternatives presented.</p>
6246
5153
  * @public
6247
5154
  */
6248
5155
  MajorRoadLabels: RouteMajorRoadLabel[] | undefined;
@@ -6262,8 +5169,7 @@ export interface CalculateRoutesResponse {
6262
5169
  */
6263
5170
  LegGeometryFormat: GeometryFormat | undefined;
6264
5171
  /**
6265
- * <p>Notices are additional information returned that indicate issues that occurred during
6266
- * route calculation.</p>
5172
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
6267
5173
  * @public
6268
5174
  */
6269
5175
  Notices: RouteResponseNotice[] | undefined;
@@ -6301,9 +5207,7 @@ export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
6301
5207
  */
6302
5208
  export interface WaypointOptimizationAvoidanceAreaGeometry {
6303
5209
  /**
6304
- * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
6305
- * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
6306
- * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
5210
+ * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
6307
5211
  * @public
6308
5212
  */
6309
5213
  BoundingBox?: number[] | undefined;
@@ -6320,10 +5224,7 @@ export interface WaypointOptimizationAvoidanceArea {
6320
5224
  Geometry: WaypointOptimizationAvoidanceAreaGeometry | undefined;
6321
5225
  }
6322
5226
  /**
6323
- * <p>Specifies options for areas to avoid. This is a best-effort avoidance setting, meaning
6324
- * the router will try to honor the avoidance preferences but may still include restricted
6325
- * areas if no feasible alternative route exists. If avoidance options are not followed, the
6326
- * response will indicate that the avoidance criteria were violated.</p>
5227
+ * <p>Specifies options for areas to avoid. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.</p>
6327
5228
  * @public
6328
5229
  */
6329
5230
  export interface WaypointOptimizationAvoidanceOptions {
@@ -6386,8 +5287,7 @@ export type WaypointOptimizationClusteringAlgorithm = (typeof WaypointOptimizati
6386
5287
  */
6387
5288
  export interface WaypointOptimizationDrivingDistanceOptions {
6388
5289
  /**
6389
- * <p>DrivingDistance assigns all the waypoints that are within driving distance of each other
6390
- * into a single cluster.</p>
5290
+ * <p>DrivingDistance assigns all the waypoints that are within driving distance of each other into a single cluster.</p>
6391
5291
  * @public
6392
5292
  */
6393
5293
  DrivingDistance: number | undefined;
@@ -6398,17 +5298,12 @@ export interface WaypointOptimizationDrivingDistanceOptions {
6398
5298
  */
6399
5299
  export interface WaypointOptimizationClusteringOptions {
6400
5300
  /**
6401
- * <p>The algorithm to be used. <code>DrivingDistance</code> assigns all the waypoints that
6402
- * are within driving distance of each other into a single cluster.
6403
- * <code>TopologySegment</code> assigns all the waypoints that are within the same topology
6404
- * segment into a single cluster. A Topology segment is a linear stretch of road between two
6405
- * junctions.</p>
5301
+ * <p>The algorithm to be used. <code>DrivingDistance</code> assigns all the waypoints that are within driving distance of each other into a single cluster. <code>TopologySegment</code> assigns all the waypoints that are within the same topology segment into a single cluster. A Topology segment is a linear stretch of road between two junctions.</p>
6406
5302
  * @public
6407
5303
  */
6408
5304
  Algorithm: WaypointOptimizationClusteringAlgorithm | undefined;
6409
5305
  /**
6410
- * <p>Driving distance options to be used when the clustering algorithm is
6411
- * DrivingDistance.</p>
5306
+ * <p>Driving distance options to be used when the clustering algorithm is DrivingDistance.</p>
6412
5307
  * @public
6413
5308
  */
6414
5309
  DrivingDistanceOptions?: WaypointOptimizationDrivingDistanceOptions | undefined;
@@ -6456,10 +5351,7 @@ export interface WaypointOptimizationSideOfStreetOptions {
6456
5351
  */
6457
5352
  Position: number[] | undefined;
6458
5353
  /**
6459
- * <p>Strategy that defines when the side of street position should be used. AnyStreet will
6460
- * always use the provided position.</p>
6461
- * <p>Default Value: <code>DividedStreetOnly</code>
6462
- * </p>
5354
+ * <p>Strategy that defines when the side of street position should be used. AnyStreet will always use the provided position.</p> <p>Default Value: <code>DividedStreetOnly</code> </p>
6463
5355
  * @public
6464
5356
  */
6465
5357
  UseWith?: SideOfStreetMatchingStrategy | undefined;
@@ -6490,11 +5382,7 @@ export interface WaypointOptimizationDestinationOptions {
6490
5382
  */
6491
5383
  Id?: string | undefined;
6492
5384
  /**
6493
- * <p>Service time spent at the destination. At an appointment, the service time should be the
6494
- * appointment duration.</p>
6495
- * <p>
6496
- * <b>Unit</b>: <code>seconds</code>
6497
- * </p>
5385
+ * <p>Service time spent at the destination. At an appointment, the service time should be the appointment duration.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6498
5386
  * @public
6499
5387
  */
6500
5388
  ServiceDuration?: number | undefined;
@@ -6505,28 +5393,17 @@ export interface WaypointOptimizationDestinationOptions {
6505
5393
  SideOfStreet?: WaypointOptimizationSideOfStreetOptions | undefined;
6506
5394
  }
6507
5395
  /**
6508
- * <p>Driver work-rest schedules defined by a short and long cycle. A rest needs to be taken
6509
- * after the short work duration. The short cycle can be repeated until you hit the long work
6510
- * duration, at which point the long rest duration should be taken before restarting.</p>
6511
- * <p>
6512
- * <b>Unit</b>: <code>seconds</code>
6513
- * </p>
5396
+ * <p>Driver work-rest schedules defined by a short and long cycle. A rest needs to be taken after the short work duration. The short cycle can be repeated until you hit the long work duration, at which point the long rest duration should be taken before restarting.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6514
5397
  * @public
6515
5398
  */
6516
5399
  export interface WaypointOptimizationRestCycleDurations {
6517
5400
  /**
6518
- * <p>Resting phase of the cycle.</p>
6519
- * <p>
6520
- * <b>Unit</b>: <code>seconds</code>
6521
- * </p>
5401
+ * <p>Resting phase of the cycle.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6522
5402
  * @public
6523
5403
  */
6524
5404
  RestDuration: number | undefined;
6525
5405
  /**
6526
- * <p>Working phase of the cycle.</p>
6527
- * <p>
6528
- * <b>Unit</b>: <code>seconds</code>
6529
- * </p>
5406
+ * <p>Working phase of the cycle.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6530
5407
  * @public
6531
5408
  */
6532
5409
  WorkDuration: number | undefined;
@@ -6548,14 +5425,12 @@ export interface WaypointOptimizationRestCycles {
6548
5425
  ShortCycle: WaypointOptimizationRestCycleDurations | undefined;
6549
5426
  }
6550
5427
  /**
6551
- * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is
6552
- * EU.</p>
5428
+ * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is EU.</p>
6553
5429
  * @public
6554
5430
  */
6555
5431
  export interface WaypointOptimizationRestProfile {
6556
5432
  /**
6557
- * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is
6558
- * EU.</p>
5433
+ * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is EU.</p>
6559
5434
  * @public
6560
5435
  */
6561
5436
  Profile: string | undefined;
@@ -6578,35 +5453,28 @@ export type WaypointOptimizationServiceTimeTreatment = (typeof WaypointOptimizat
6578
5453
  */
6579
5454
  export interface WaypointOptimizationDriverOptions {
6580
5455
  /**
6581
- * <p>Driver work-rest schedules defined by a short and long cycle. A rest needs to be taken
6582
- * after the short work duration. The short cycle can be repeated until you hit the long work
6583
- * duration, at which point the long rest duration should be taken before restarting.</p>
5456
+ * <p>Driver work-rest schedules defined by a short and long cycle. A rest needs to be taken after the short work duration. The short cycle can be repeated until you hit the long work duration, at which point the long rest duration should be taken before restarting.</p>
6584
5457
  * @public
6585
5458
  */
6586
5459
  RestCycles?: WaypointOptimizationRestCycles | undefined;
6587
5460
  /**
6588
- * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is
6589
- * EU.</p>
5461
+ * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is EU.</p>
6590
5462
  * @public
6591
5463
  */
6592
5464
  RestProfile?: WaypointOptimizationRestProfile | undefined;
6593
5465
  /**
6594
- * <p>If the service time provided at a waypoint/destination should be considered as rest or
6595
- * work. This contributes to the total time breakdown returned within the response.</p>
5466
+ * <p>If the service time provided at a waypoint/destination should be considered as rest or work. This contributes to the total time breakdown returned within the response.</p>
6596
5467
  * @public
6597
5468
  */
6598
5469
  TreatServiceTimeAs?: WaypointOptimizationServiceTimeTreatment | undefined;
6599
5470
  }
6600
5471
  /**
6601
- * <p>Specifies strict exclusion options for the route calculation. This setting mandates that
6602
- * the router will avoid any routes that include the specified options, rather than merely
6603
- * attempting to minimize them.</p>
5472
+ * <p>Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.</p>
6604
5473
  * @public
6605
5474
  */
6606
5475
  export interface WaypointOptimizationExclusionOptions {
6607
5476
  /**
6608
- * <p>List of countries to be avoided defined by two-letter or three-letter country
6609
- * codes.</p>
5477
+ * <p>List of countries to be avoided defined by two-letter or three-letter country codes.</p>
6610
5478
  * @public
6611
5479
  */
6612
5480
  Countries: string[] | undefined;
@@ -6640,9 +5508,7 @@ export interface WaypointOptimizationOriginOptions {
6640
5508
  */
6641
5509
  export interface WaypointOptimizationTrafficOptions {
6642
5510
  /**
6643
- * <p>Determines if traffic should be used or ignored while calculating the route.</p>
6644
- * <p>Default Value: <code>UseTrafficData</code>
6645
- * </p>
5511
+ * <p>Determines if traffic should be used or ignored while calculating the route.</p> <p>Default Value: <code>UseTrafficData</code> </p>
6646
5512
  * @public
6647
5513
  */
6648
5514
  Usage?: TrafficUsage | undefined;
@@ -6667,10 +5533,7 @@ export type WaypointOptimizationTravelMode = (typeof WaypointOptimizationTravelM
6667
5533
  */
6668
5534
  export interface WaypointOptimizationPedestrianOptions {
6669
5535
  /**
6670
- * <p>Walking speed.</p>
6671
- * <p>
6672
- * <b>Unit</b>: <code>KilometersPerHour</code>
6673
- * </p>
5536
+ * <p>Walking speed.</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
6674
5537
  * @public
6675
5538
  */
6676
5539
  Speed?: number | undefined;
@@ -6702,9 +5565,7 @@ export type WaypointOptimizationHazardousCargoType = (typeof WaypointOptimizatio
6702
5565
  */
6703
5566
  export interface WaypointOptimizationTrailerOptions {
6704
5567
  /**
6705
- * <p>Number of trailers attached to the vehicle.</p>
6706
- * <p>Default Value: <code>0</code>
6707
- * </p>
5568
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
6708
5569
  * @public
6709
5570
  */
6710
5571
  TrailerCount?: number | undefined;
@@ -6727,10 +5588,7 @@ export type WaypointOptimizationTruckType = (typeof WaypointOptimizationTruckTyp
6727
5588
  */
6728
5589
  export interface WaypointOptimizationTruckOptions {
6729
5590
  /**
6730
- * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
6731
- * <p>
6732
- * <b>Unit</b>: <code>Kilograms</code>
6733
- * </p>
5591
+ * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
6734
5592
  * @public
6735
5593
  */
6736
5594
  GrossWeight?: number | undefined;
@@ -6740,18 +5598,12 @@ export interface WaypointOptimizationTruckOptions {
6740
5598
  */
6741
5599
  HazardousCargos?: WaypointOptimizationHazardousCargoType[] | undefined;
6742
5600
  /**
6743
- * <p>Height of the vehicle.</p>
6744
- * <p>
6745
- * <b>Unit</b>: <code>centimeters</code>
6746
- * </p>
5601
+ * <p>Height of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
6747
5602
  * @public
6748
5603
  */
6749
5604
  Height?: number | undefined;
6750
5605
  /**
6751
- * <p>Length of the vehicle.</p>
6752
- * <p>
6753
- * <b>Unit</b>: <code>centimeters</code>
6754
- * </p>
5606
+ * <p>Length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
6755
5607
  * @public
6756
5608
  */
6757
5609
  Length?: number | undefined;
@@ -6766,90 +5618,17 @@ export interface WaypointOptimizationTruckOptions {
6766
5618
  */
6767
5619
  TruckType?: WaypointOptimizationTruckType | undefined;
6768
5620
  /**
6769
- * <p>The tunnel restriction code.</p>
6770
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
6771
- * in Great Britain. They relate to the types of dangerous goods that can be transported
6772
- * through them.</p>
6773
- * <ul>
6774
- * <li>
6775
- * <p>
6776
- * <i>Tunnel Category B</i>
6777
- * </p>
6778
- * <ul>
6779
- * <li>
6780
- * <p>
6781
- * <i>Risk Level</i>: Limited risk</p>
6782
- * </li>
6783
- * <li>
6784
- * <p>
6785
- * <i>Restrictions</i>: Few restrictions</p>
6786
- * </li>
6787
- * </ul>
6788
- * </li>
6789
- * <li>
6790
- * <p>
6791
- * <i>Tunnel Category C</i>
6792
- * </p>
6793
- * <ul>
6794
- * <li>
6795
- * <p>
6796
- * <i>Risk Level</i>: Medium risk</p>
6797
- * </li>
6798
- * <li>
6799
- * <p>
6800
- * <i>Restrictions</i>: Some restrictions</p>
6801
- * </li>
6802
- * </ul>
6803
- * </li>
6804
- * <li>
6805
- * <p>
6806
- * <i>Tunnel Category D</i>
6807
- * </p>
6808
- * <ul>
6809
- * <li>
6810
- * <p>
6811
- * <i>Risk Level</i>: High risk</p>
6812
- * </li>
6813
- * <li>
6814
- * <p>
6815
- * <i>Restrictions</i>: Many restrictions occur</p>
6816
- * </li>
6817
- * </ul>
6818
- * </li>
6819
- * <li>
6820
- * <p>
6821
- * <i>Tunnel Category E</i>
6822
- * </p>
6823
- * <ul>
6824
- * <li>
6825
- * <p>
6826
- * <i>Risk Level</i>: Very high risk</p>
6827
- * </li>
6828
- * <li>
6829
- * <p>
6830
- * <i>Restrictions</i>: Restricted tunnel</p>
6831
- * </li>
6832
- * </ul>
6833
- * </li>
6834
- * </ul>
5621
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
6835
5622
  * @public
6836
5623
  */
6837
5624
  TunnelRestrictionCode?: string | undefined;
6838
5625
  /**
6839
- * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for
6840
- * usage in countries where the differences in axle types or axle groups are not
6841
- * distinguished.</p>
6842
- * <p>
6843
- * <b>Unit</b>: <code>Kilograms</code>
6844
- * </p>
5626
+ * <p>Heaviest weight per axle irrespective of the axle type or the axle group. Meant for usage in countries where the differences in axle types or axle groups are not distinguished.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
6845
5627
  * @public
6846
5628
  */
6847
5629
  WeightPerAxle?: number | undefined;
6848
5630
  /**
6849
- * <p>Width of the vehicle.</p>
6850
- * <p>
6851
- * <b>Unit</b>: <code>centimeters</code>
6852
- * </p>
5631
+ * <p>Width of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
6853
5632
  * @public
6854
5633
  */
6855
5634
  Width?: number | undefined;
@@ -6906,11 +5685,7 @@ export interface WaypointOptimizationWaypoint {
6906
5685
  */
6907
5686
  Position: number[] | undefined;
6908
5687
  /**
6909
- * <p>Service time spent at the waypoint. At an appointment, the service time should be the
6910
- * appointment duration.</p>
6911
- * <p>
6912
- * <b>Unit</b>: <code>seconds</code>
6913
- * </p>
5688
+ * <p>Service time spent at the waypoint. At an appointment, the service time should be the appointment duration.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
6914
5689
  * @public
6915
5690
  */
6916
5691
  ServiceDuration?: number | undefined;
@@ -6925,34 +5700,22 @@ export interface WaypointOptimizationWaypoint {
6925
5700
  */
6926
5701
  export interface OptimizeWaypointsRequest {
6927
5702
  /**
6928
- * <p>Features that are avoided. Avoidance is on a best-case basis. If an avoidance can't be
6929
- * satisfied for a particular case, this setting is ignored.</p>
5703
+ * <p>Features that are avoided. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, this setting is ignored.</p>
6930
5704
  * @public
6931
5705
  */
6932
5706
  Avoid?: WaypointOptimizationAvoidanceOptions | undefined;
6933
5707
  /**
6934
- * <p>Clustering allows you to specify how nearby waypoints can be clustered to improve the
6935
- * optimized sequence.</p>
5708
+ * <p>Clustering allows you to specify how nearby waypoints can be clustered to improve the optimized sequence.</p>
6936
5709
  * @public
6937
5710
  */
6938
5711
  Clustering?: WaypointOptimizationClusteringOptions | undefined;
6939
5712
  /**
6940
- * <p>Departure time from the waypoint.</p>
6941
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
6942
- * </p>
6943
- * <p>Examples:</p>
6944
- * <p>
6945
- * <code>2020-04-22T17:57:24Z</code>
6946
- * </p>
6947
- * <p>
6948
- * <code>2020-04-22T17:57:24+02:00</code>
6949
- * </p>
5713
+ * <p>Departure time from the waypoint.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
6950
5714
  * @public
6951
5715
  */
6952
5716
  DepartureTime?: string | undefined;
6953
5717
  /**
6954
- * <p>The final position for the route in the World Geodetic System (WGS 84) format:
6955
- * <code>[longitude, latitude]</code>.</p>
5718
+ * <p>The final position for the route in the World Geodetic System (WGS 84) format: <code>[longitude, latitude]</code>.</p>
6956
5719
  * @public
6957
5720
  */
6958
5721
  Destination?: number[] | undefined;
@@ -6972,14 +5735,12 @@ export interface OptimizeWaypointsRequest {
6972
5735
  */
6973
5736
  Exclude?: WaypointOptimizationExclusionOptions | undefined;
6974
5737
  /**
6975
- * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
6976
- * signature must be provided when making a request. </p>
5738
+ * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request. </p>
6977
5739
  * @public
6978
5740
  */
6979
5741
  Key?: string | undefined;
6980
5742
  /**
6981
- * <p>Specifies the optimization criteria for the calculated sequence.</p>
6982
- * <p>Default Value: <code>FastestRoute</code>.</p>
5743
+ * <p>Specifies the optimization criteria for the calculated sequence.</p> <p>Default Value: <code>FastestRoute</code>.</p>
6983
5744
  * @public
6984
5745
  */
6985
5746
  OptimizeSequencingFor?: WaypointOptimizationSequencingObjective | undefined;
@@ -6999,10 +5760,7 @@ export interface OptimizeWaypointsRequest {
6999
5760
  */
7000
5761
  Traffic?: WaypointOptimizationTrafficOptions | undefined;
7001
5762
  /**
7002
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
7003
- * of travel and road compatibility.</p>
7004
- * <p>Default Value: <code>Car</code>
7005
- * </p>
5763
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <p>Default Value: <code>Car</code> </p>
7006
5764
  * @public
7007
5765
  */
7008
5766
  TravelMode?: WaypointOptimizationTravelMode | undefined;
@@ -7018,8 +5776,7 @@ export interface OptimizeWaypointsRequest {
7018
5776
  Waypoints?: WaypointOptimizationWaypoint[] | undefined;
7019
5777
  }
7020
5778
  /**
7021
- * <p>This contains information such as distance and duration from one waypoint to the next
7022
- * waypoint in the sequence.</p>
5779
+ * <p>This contains information such as distance and duration from one waypoint to the next waypoint in the sequence.</p>
7023
5780
  * @public
7024
5781
  */
7025
5782
  export interface WaypointOptimizationConnection {
@@ -7044,18 +5801,12 @@ export interface WaypointOptimizationConnection {
7044
5801
  */
7045
5802
  To: string | undefined;
7046
5803
  /**
7047
- * <p>Total duration.</p>
7048
- * <p>
7049
- * <b>Unit</b>: <code>seconds</code>
7050
- * </p>
5804
+ * <p>Total duration.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7051
5805
  * @public
7052
5806
  */
7053
5807
  TravelDuration: number | undefined;
7054
5808
  /**
7055
- * <p>Duration of a wait step.</p>
7056
- * <p>
7057
- * <b>Unit</b>: <code>seconds</code>
7058
- * </p>
5809
+ * <p>Duration of a wait step.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7059
5810
  * @public
7060
5811
  */
7061
5812
  WaitDuration: number | undefined;
@@ -7119,16 +5870,7 @@ export interface WaypointOptimizationImpedingWaypoint {
7119
5870
  */
7120
5871
  export interface WaypointOptimizationOptimizedWaypoint {
7121
5872
  /**
7122
- * <p>Estimated time of arrival at the destination.</p>
7123
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
7124
- * </p>
7125
- * <p>Examples:</p>
7126
- * <p>
7127
- * <code>2020-04-22T17:57:24Z</code>
7128
- * </p>
7129
- * <p>
7130
- * <code>2020-04-22T17:57:24+02:00</code>
7131
- * </p>
5873
+ * <p>Estimated time of arrival at the destination.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
7132
5874
  * @public
7133
5875
  */
7134
5876
  ArrivalTime?: string | undefined;
@@ -7138,16 +5880,7 @@ export interface WaypointOptimizationOptimizedWaypoint {
7138
5880
  */
7139
5881
  ClusterIndex?: number | undefined;
7140
5882
  /**
7141
- * <p>Estimated time of departure from thr origin.</p>
7142
- * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
7143
- * </p>
7144
- * <p>Examples:</p>
7145
- * <p>
7146
- * <code>2020-04-22T17:57:24Z</code>
7147
- * </p>
7148
- * <p>
7149
- * <code>2020-04-22T17:57:24+02:00</code>
7150
- * </p>
5883
+ * <p>Estimated time of departure from thr origin.</p> <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code> </p> <p>Examples:</p> <p> <code>2020-04-22T17:57:24Z</code> </p> <p> <code>2020-04-22T17:57:24+02:00</code> </p>
7151
5884
  * @public
7152
5885
  */
7153
5886
  DepartureTime: string | undefined;
@@ -7168,35 +5901,22 @@ export interface WaypointOptimizationOptimizedWaypoint {
7168
5901
  */
7169
5902
  export interface WaypointOptimizationTimeBreakdown {
7170
5903
  /**
7171
- * <p>Resting phase of the cycle.</p>
7172
- * <p>
7173
- * <b>Unit</b>: <code>seconds</code>
7174
- * </p>
5904
+ * <p>Resting phase of the cycle.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7175
5905
  * @public
7176
5906
  */
7177
5907
  RestDuration: number | undefined;
7178
5908
  /**
7179
- * <p>Service time spent at the destination. At an appointment, the service time should be the
7180
- * appointment duration.</p>
7181
- * <p>
7182
- * <b>Unit</b>: <code>seconds</code>
7183
- * </p>
5909
+ * <p>Service time spent at the destination. At an appointment, the service time should be the appointment duration.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7184
5910
  * @public
7185
5911
  */
7186
5912
  ServiceDuration: number | undefined;
7187
5913
  /**
7188
- * <p>Traveling phase of the cycle.</p>
7189
- * <p>
7190
- * <b>Unit</b>: <code>seconds</code>
7191
- * </p>
5914
+ * <p>Traveling phase of the cycle.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7192
5915
  * @public
7193
5916
  */
7194
5917
  TravelDuration: number | undefined;
7195
5918
  /**
7196
- * <p>Waiting phase of the cycle.</p>
7197
- * <p>
7198
- * <b>Unit</b>: <code>seconds</code>
7199
- * </p>
5919
+ * <p>Waiting phase of the cycle.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7200
5920
  * @public
7201
5921
  */
7202
5922
  WaitDuration: number | undefined;
@@ -7206,8 +5926,7 @@ export interface WaypointOptimizationTimeBreakdown {
7206
5926
  */
7207
5927
  export interface OptimizeWaypointsResponse {
7208
5928
  /**
7209
- * <p>Details about the connection from one waypoint to the next, within the optimized
7210
- * sequence.</p>
5929
+ * <p>Details about the connection from one waypoint to the next, within the optimized sequence.</p>
7211
5930
  * @public
7212
5931
  */
7213
5932
  Connections: WaypointOptimizationConnection[] | undefined;
@@ -7217,16 +5936,12 @@ export interface OptimizeWaypointsResponse {
7217
5936
  */
7218
5937
  Distance: number | undefined;
7219
5938
  /**
7220
- * <p>Overall duration to travel the whole sequence.</p>
7221
- * <p>
7222
- * <b>Unit</b>: <code>seconds</code>
7223
- * </p>
5939
+ * <p>Overall duration to travel the whole sequence.</p> <p> <b>Unit</b>: <code>seconds</code> </p>
7224
5940
  * @public
7225
5941
  */
7226
5942
  Duration: number | undefined;
7227
5943
  /**
7228
- * <p>Returns waypoints that caused the optimization problem to fail, and the constraints that
7229
- * were unsatisfied leading to the failure.</p>
5944
+ * <p>Returns waypoints that caused the optimization problem to fail, and the constraints that were unsatisfied leading to the failure.</p>
7230
5945
  * @public
7231
5946
  */
7232
5947
  ImpedingWaypoints: WaypointOptimizationImpedingWaypoint[] | undefined;
@@ -7262,10 +5977,7 @@ export interface RoadSnapTracePoint {
7262
5977
  */
7263
5978
  Position: number[] | undefined;
7264
5979
  /**
7265
- * <p>Speed at the specified trace point .</p>
7266
- * <p>
7267
- * <b>Unit</b>: <code>KilometersPerHour</code>
7268
- * </p>
5980
+ * <p>Speed at the specified trace point .</p> <p> <b>Unit</b>: <code>KilometersPerHour</code> </p>
7269
5981
  * @public
7270
5982
  */
7271
5983
  Speed?: number | undefined;
@@ -7316,9 +6028,7 @@ export type RoadSnapHazardousCargoType = (typeof RoadSnapHazardousCargoType)[key
7316
6028
  */
7317
6029
  export interface RoadSnapTrailerOptions {
7318
6030
  /**
7319
- * <p>Number of trailers attached to the vehicle.</p>
7320
- * <p>Default Value: <code>0</code>
7321
- * </p>
6031
+ * <p>Number of trailers attached to the vehicle.</p> <p>Default Value: <code>0</code> </p>
7322
6032
  * @public
7323
6033
  */
7324
6034
  TrailerCount?: number | undefined;
@@ -7329,10 +6039,7 @@ export interface RoadSnapTrailerOptions {
7329
6039
  */
7330
6040
  export interface RoadSnapTruckOptions {
7331
6041
  /**
7332
- * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
7333
- * <p>
7334
- * <b>Unit</b>: <code>Kilograms</code>
7335
- * </p>
6042
+ * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
7336
6043
  * @public
7337
6044
  */
7338
6045
  GrossWeight?: number | undefined;
@@ -7342,18 +6049,12 @@ export interface RoadSnapTruckOptions {
7342
6049
  */
7343
6050
  HazardousCargos?: RoadSnapHazardousCargoType[] | undefined;
7344
6051
  /**
7345
- * <p>Height of the vehicle.</p>
7346
- * <p>
7347
- * <b>Unit</b>: <code>centimeters</code>
7348
- * </p>
6052
+ * <p>Height of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
7349
6053
  * @public
7350
6054
  */
7351
6055
  Height?: number | undefined;
7352
6056
  /**
7353
- * <p>Length of the vehicle.</p>
7354
- * <p>
7355
- * <b>Unit</b>: <code>centimeters</code>
7356
- * </p>
6057
+ * <p>Length of the vehicle.</p> <p> <b>Unit</b>: <code>centimeters</code> </p>
7357
6058
  * @public
7358
6059
  */
7359
6060
  Length?: number | undefined;
@@ -7363,72 +6064,7 @@ export interface RoadSnapTruckOptions {
7363
6064
  */
7364
6065
  Trailer?: RoadSnapTrailerOptions | undefined;
7365
6066
  /**
7366
- * <p>The tunnel restriction code.</p>
7367
- * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels
7368
- * in Great Britain. They relate to the types of dangerous goods that can be transported
7369
- * through them.</p>
7370
- * <ul>
7371
- * <li>
7372
- * <p>
7373
- * <i>Tunnel Category B</i>
7374
- * </p>
7375
- * <ul>
7376
- * <li>
7377
- * <p>
7378
- * <i>Risk Level</i>: Limited risk</p>
7379
- * </li>
7380
- * <li>
7381
- * <p>
7382
- * <i>Restrictions</i>: Few restrictions</p>
7383
- * </li>
7384
- * </ul>
7385
- * </li>
7386
- * <li>
7387
- * <p>
7388
- * <i>Tunnel Category C</i>
7389
- * </p>
7390
- * <ul>
7391
- * <li>
7392
- * <p>
7393
- * <i>Risk Level</i>: Medium risk</p>
7394
- * </li>
7395
- * <li>
7396
- * <p>
7397
- * <i>Restrictions</i>: Some restrictions</p>
7398
- * </li>
7399
- * </ul>
7400
- * </li>
7401
- * <li>
7402
- * <p>
7403
- * <i>Tunnel Category D</i>
7404
- * </p>
7405
- * <ul>
7406
- * <li>
7407
- * <p>
7408
- * <i>Risk Level</i>: High risk</p>
7409
- * </li>
7410
- * <li>
7411
- * <p>
7412
- * <i>Restrictions</i>: Many restrictions occur</p>
7413
- * </li>
7414
- * </ul>
7415
- * </li>
7416
- * <li>
7417
- * <p>
7418
- * <i>Tunnel Category E</i>
7419
- * </p>
7420
- * <ul>
7421
- * <li>
7422
- * <p>
7423
- * <i>Risk Level</i>: Very high risk</p>
7424
- * </li>
7425
- * <li>
7426
- * <p>
7427
- * <i>Restrictions</i>: Restricted tunnel</p>
7428
- * </li>
7429
- * </ul>
7430
- * </li>
7431
- * </ul>
6067
+ * <p>The tunnel restriction code.</p> <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain. They relate to the types of dangerous goods that can be transported through them.</p> <ul> <li> <p> <i>Tunnel Category B</i> </p> <ul> <li> <p> <i>Risk Level</i>: Limited risk</p> </li> <li> <p> <i>Restrictions</i>: Few restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category C</i> </p> <ul> <li> <p> <i>Risk Level</i>: Medium risk</p> </li> <li> <p> <i>Restrictions</i>: Some restrictions</p> </li> </ul> </li> <li> <p> <i>Tunnel Category D</i> </p> <ul> <li> <p> <i>Risk Level</i>: High risk</p> </li> <li> <p> <i>Restrictions</i>: Many restrictions occur</p> </li> </ul> </li> <li> <p> <i>Tunnel Category E</i> </p> <ul> <li> <p> <i>Risk Level</i>: Very high risk</p> </li> <li> <p> <i>Restrictions</i>: Restricted tunnel</p> </li> </ul> </li> </ul>
7432
6068
  * @public
7433
6069
  */
7434
6070
  TunnelRestrictionCode?: string | undefined;
@@ -7454,25 +6090,17 @@ export interface RoadSnapTravelModeOptions {
7454
6090
  */
7455
6091
  export interface SnapToRoadsRequest {
7456
6092
  /**
7457
- * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
7458
- * signature must be provided when making a request. </p>
6093
+ * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request. </p>
7459
6094
  * @public
7460
6095
  */
7461
6096
  Key?: string | undefined;
7462
6097
  /**
7463
- * <p>Chooses what the returned SnappedGeometry format should be.</p>
7464
- * <p>Default Value: <code>FlexiblePolyline</code>
7465
- * </p>
6098
+ * <p>Chooses what the returned SnappedGeometry format should be.</p> <p>Default Value: <code>FlexiblePolyline</code> </p>
7466
6099
  * @public
7467
6100
  */
7468
6101
  SnappedGeometryFormat?: GeometryFormat | undefined;
7469
6102
  /**
7470
- * <p>The radius around the provided tracepoint that is considered for snapping.</p>
7471
- * <p>
7472
- * <b>Unit</b>: <code>meters</code>
7473
- * </p>
7474
- * <p>Default value: <code>300</code>
7475
- * </p>
6103
+ * <p>The radius around the provided tracepoint that is considered for snapping.</p> <p> <b>Unit</b>: <code>meters</code> </p> <p>Default value: <code>300</code> </p>
7476
6104
  * @public
7477
6105
  */
7478
6106
  SnapRadius?: number | undefined;
@@ -7482,10 +6110,7 @@ export interface SnapToRoadsRequest {
7482
6110
  */
7483
6111
  TracePoints: RoadSnapTracePoint[] | undefined;
7484
6112
  /**
7485
- * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
7486
- * of travel and road compatibility.</p>
7487
- * <p>Default Value: <code>Car</code>
7488
- * </p>
6113
+ * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.</p> <p>Default Value: <code>Car</code> </p>
7489
6114
  * @public
7490
6115
  */
7491
6116
  TravelMode?: RoadSnapTravelMode | undefined;
@@ -7513,8 +6138,7 @@ export declare const RoadSnapNoticeCode: {
7513
6138
  */
7514
6139
  export type RoadSnapNoticeCode = (typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
7515
6140
  /**
7516
- * <p>Notices provide information around factors that may have influenced snapping in a manner
7517
- * atypical to the standard use cases.</p>
6141
+ * <p>Notices provide information around factors that may have influenced snapping in a manner atypical to the standard use cases.</p>
7518
6142
  * @public
7519
6143
  */
7520
6144
  export interface RoadSnapNotice {
@@ -7540,19 +6164,12 @@ export interface RoadSnapNotice {
7540
6164
  */
7541
6165
  export interface RoadSnapSnappedGeometry {
7542
6166
  /**
7543
- * <p>An ordered list of positions used to plot a route on a map.</p>
7544
- * <note>
7545
- * <p>LineString and Polyline are mutually exclusive properties.</p>
7546
- * </note>
6167
+ * <p>An ordered list of positions used to plot a route on a map.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
7547
6168
  * @public
7548
6169
  */
7549
6170
  LineString?: number[][] | undefined;
7550
6171
  /**
7551
- * <p>An ordered list of positions used to plot a route on a map in a lossy compression
7552
- * format.</p>
7553
- * <note>
7554
- * <p>LineString and Polyline are mutually exclusive properties.</p>
7555
- * </note>
6172
+ * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p> <note> <p>LineString and Polyline are mutually exclusive properties.</p> </note>
7556
6173
  * @public
7557
6174
  */
7558
6175
  Polyline?: string | undefined;
@@ -7573,8 +6190,7 @@ export interface RoadSnapSnappedTracePoint {
7573
6190
  */
7574
6191
  OriginalPosition: number[] | undefined;
7575
6192
  /**
7576
- * <p>Snapped position of the TracePoint provided within the request, at the same index.
7577
- * </p>
6193
+ * <p>Snapped position of the TracePoint provided within the request, at the same index. </p>
7578
6194
  * @public
7579
6195
  */
7580
6196
  SnappedPosition: number[] | undefined;
@@ -7584,8 +6200,7 @@ export interface RoadSnapSnappedTracePoint {
7584
6200
  */
7585
6201
  export interface SnapToRoadsResponse {
7586
6202
  /**
7587
- * <p>Notices are additional information returned that indicate issues that occurred during
7588
- * route calculation.</p>
6203
+ * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
7589
6204
  * @public
7590
6205
  */
7591
6206
  Notices: RoadSnapNotice[] | undefined;
@@ -7610,6 +6225,10 @@ export interface SnapToRoadsResponse {
7610
6225
  */
7611
6226
  SnappedTracePoints: RoadSnapSnappedTracePoint[] | undefined;
7612
6227
  }
6228
+ /**
6229
+ * @internal
6230
+ */
6231
+ export declare const IsolineAllowOptionsFilterSensitiveLog: (obj: IsolineAllowOptions) => any;
7613
6232
  /**
7614
6233
  * @internal
7615
6234
  */
@@ -7642,10 +6261,50 @@ export declare const IsolineSideOfStreetOptionsFilterSensitiveLog: (obj: Isoline
7642
6261
  * @internal
7643
6262
  */
7644
6263
  export declare const IsolineDestinationOptionsFilterSensitiveLog: (obj: IsolineDestinationOptions) => any;
6264
+ /**
6265
+ * @internal
6266
+ */
6267
+ export declare const IsolineGranularityOptionsFilterSensitiveLog: (obj: IsolineGranularityOptions) => any;
7645
6268
  /**
7646
6269
  * @internal
7647
6270
  */
7648
6271
  export declare const IsolineOriginOptionsFilterSensitiveLog: (obj: IsolineOriginOptions) => any;
6272
+ /**
6273
+ * @internal
6274
+ */
6275
+ export declare const IsolineThresholdsFilterSensitiveLog: (obj: IsolineThresholds) => any;
6276
+ /**
6277
+ * @internal
6278
+ */
6279
+ export declare const IsolineTrafficOptionsFilterSensitiveLog: (obj: IsolineTrafficOptions) => any;
6280
+ /**
6281
+ * @internal
6282
+ */
6283
+ export declare const IsolineVehicleLicensePlateFilterSensitiveLog: (obj: IsolineVehicleLicensePlate) => any;
6284
+ /**
6285
+ * @internal
6286
+ */
6287
+ export declare const IsolineCarOptionsFilterSensitiveLog: (obj: IsolineCarOptions) => any;
6288
+ /**
6289
+ * @internal
6290
+ */
6291
+ export declare const IsolineScooterOptionsFilterSensitiveLog: (obj: IsolineScooterOptions) => any;
6292
+ /**
6293
+ * @internal
6294
+ */
6295
+ export declare const IsolineTrailerOptionsFilterSensitiveLog: (obj: IsolineTrailerOptions) => any;
6296
+ /**
6297
+ * @internal
6298
+ */
6299
+ export declare const WeightPerAxleGroupFilterSensitiveLog: (obj: WeightPerAxleGroup) => any;
6300
+ /**
6301
+ * @internal
6302
+ */
6303
+ export declare const IsolineTruckOptionsFilterSensitiveLog: (obj: IsolineTruckOptions) => any;
6304
+ /**
6305
+ * @internal
6306
+ */
6307
+ export declare const IsolineTravelModeOptionsFilterSensitiveLog: (obj: IsolineTravelModeOptions) => any;
7649
6308
  /**
7650
6309
  * @internal
7651
6310
  */
@@ -7670,6 +6329,10 @@ export declare const IsolineFilterSensitiveLog: (obj: Isoline) => any;
7670
6329
  * @internal
7671
6330
  */
7672
6331
  export declare const CalculateIsolinesResponseFilterSensitiveLog: (obj: CalculateIsolinesResponse) => any;
6332
+ /**
6333
+ * @internal
6334
+ */
6335
+ export declare const RouteMatrixAllowOptionsFilterSensitiveLog: (obj: RouteMatrixAllowOptions) => any;
7673
6336
  /**
7674
6337
  * @internal
7675
6338
  */
@@ -7678,6 +6341,10 @@ export declare const RouteMatrixAvoidanceAreaGeometryFilterSensitiveLog: (obj: R
7678
6341
  * @internal
7679
6342
  */
7680
6343
  export declare const RouteMatrixAvoidanceAreaFilterSensitiveLog: (obj: RouteMatrixAvoidanceArea) => any;
6344
+ /**
6345
+ * @internal
6346
+ */
6347
+ export declare const RouteMatrixAvoidanceZoneCategoryFilterSensitiveLog: (obj: RouteMatrixAvoidanceZoneCategory) => any;
7681
6348
  /**
7682
6349
  * @internal
7683
6350
  */
@@ -7698,6 +6365,10 @@ export declare const RouteMatrixDestinationOptionsFilterSensitiveLog: (obj: Rout
7698
6365
  * @internal
7699
6366
  */
7700
6367
  export declare const RouteMatrixDestinationFilterSensitiveLog: (obj: RouteMatrixDestination) => any;
6368
+ /**
6369
+ * @internal
6370
+ */
6371
+ export declare const RouteMatrixExclusionOptionsFilterSensitiveLog: (obj: RouteMatrixExclusionOptions) => any;
7701
6372
  /**
7702
6373
  * @internal
7703
6374
  */
@@ -7706,6 +6377,10 @@ export declare const RouteMatrixOriginOptionsFilterSensitiveLog: (obj: RouteMatr
7706
6377
  * @internal
7707
6378
  */
7708
6379
  export declare const RouteMatrixOriginFilterSensitiveLog: (obj: RouteMatrixOrigin) => any;
6380
+ /**
6381
+ * @internal
6382
+ */
6383
+ export declare const RouteMatrixAutoCircleFilterSensitiveLog: (obj: RouteMatrixAutoCircle) => any;
7709
6384
  /**
7710
6385
  * @internal
7711
6386
  */
@@ -7718,14 +6393,50 @@ export declare const RouteMatrixBoundaryGeometryFilterSensitiveLog: (obj: RouteM
7718
6393
  * @internal
7719
6394
  */
7720
6395
  export declare const RouteMatrixBoundaryFilterSensitiveLog: (obj: RouteMatrixBoundary) => any;
6396
+ /**
6397
+ * @internal
6398
+ */
6399
+ export declare const RouteMatrixTrafficOptionsFilterSensitiveLog: (obj: RouteMatrixTrafficOptions) => any;
6400
+ /**
6401
+ * @internal
6402
+ */
6403
+ export declare const RouteMatrixVehicleLicensePlateFilterSensitiveLog: (obj: RouteMatrixVehicleLicensePlate) => any;
6404
+ /**
6405
+ * @internal
6406
+ */
6407
+ export declare const RouteMatrixCarOptionsFilterSensitiveLog: (obj: RouteMatrixCarOptions) => any;
6408
+ /**
6409
+ * @internal
6410
+ */
6411
+ export declare const RouteMatrixScooterOptionsFilterSensitiveLog: (obj: RouteMatrixScooterOptions) => any;
6412
+ /**
6413
+ * @internal
6414
+ */
6415
+ export declare const RouteMatrixTrailerOptionsFilterSensitiveLog: (obj: RouteMatrixTrailerOptions) => any;
6416
+ /**
6417
+ * @internal
6418
+ */
6419
+ export declare const RouteMatrixTruckOptionsFilterSensitiveLog: (obj: RouteMatrixTruckOptions) => any;
6420
+ /**
6421
+ * @internal
6422
+ */
6423
+ export declare const RouteMatrixTravelModeOptionsFilterSensitiveLog: (obj: RouteMatrixTravelModeOptions) => any;
7721
6424
  /**
7722
6425
  * @internal
7723
6426
  */
7724
6427
  export declare const CalculateRouteMatrixRequestFilterSensitiveLog: (obj: CalculateRouteMatrixRequest) => any;
6428
+ /**
6429
+ * @internal
6430
+ */
6431
+ export declare const RouteMatrixEntryFilterSensitiveLog: (obj: RouteMatrixEntry) => any;
7725
6432
  /**
7726
6433
  * @internal
7727
6434
  */
7728
6435
  export declare const CalculateRouteMatrixResponseFilterSensitiveLog: (obj: CalculateRouteMatrixResponse) => any;
6436
+ /**
6437
+ * @internal
6438
+ */
6439
+ export declare const RouteAllowOptionsFilterSensitiveLog: (obj: RouteAllowOptions) => any;
7729
6440
  /**
7730
6441
  * @internal
7731
6442
  */
@@ -7734,6 +6445,10 @@ export declare const RouteAvoidanceAreaGeometryFilterSensitiveLog: (obj: RouteAv
7734
6445
  * @internal
7735
6446
  */
7736
6447
  export declare const RouteAvoidanceAreaFilterSensitiveLog: (obj: RouteAvoidanceArea) => any;
6448
+ /**
6449
+ * @internal
6450
+ */
6451
+ export declare const RouteAvoidanceZoneCategoryFilterSensitiveLog: (obj: RouteAvoidanceZoneCategory) => any;
7737
6452
  /**
7738
6453
  * @internal
7739
6454
  */
@@ -7750,10 +6465,62 @@ export declare const RouteSideOfStreetOptionsFilterSensitiveLog: (obj: RouteSide
7750
6465
  * @internal
7751
6466
  */
7752
6467
  export declare const RouteDestinationOptionsFilterSensitiveLog: (obj: RouteDestinationOptions) => any;
6468
+ /**
6469
+ * @internal
6470
+ */
6471
+ export declare const RouteDriverScheduleIntervalFilterSensitiveLog: (obj: RouteDriverScheduleInterval) => any;
6472
+ /**
6473
+ * @internal
6474
+ */
6475
+ export declare const RouteDriverOptionsFilterSensitiveLog: (obj: RouteDriverOptions) => any;
6476
+ /**
6477
+ * @internal
6478
+ */
6479
+ export declare const RouteExclusionOptionsFilterSensitiveLog: (obj: RouteExclusionOptions) => any;
7753
6480
  /**
7754
6481
  * @internal
7755
6482
  */
7756
6483
  export declare const RouteOriginOptionsFilterSensitiveLog: (obj: RouteOriginOptions) => any;
6484
+ /**
6485
+ * @internal
6486
+ */
6487
+ export declare const RouteEmissionTypeFilterSensitiveLog: (obj: RouteEmissionType) => any;
6488
+ /**
6489
+ * @internal
6490
+ */
6491
+ export declare const RouteTollOptionsFilterSensitiveLog: (obj: RouteTollOptions) => any;
6492
+ /**
6493
+ * @internal
6494
+ */
6495
+ export declare const RouteTrafficOptionsFilterSensitiveLog: (obj: RouteTrafficOptions) => any;
6496
+ /**
6497
+ * @internal
6498
+ */
6499
+ export declare const RouteVehicleLicensePlateFilterSensitiveLog: (obj: RouteVehicleLicensePlate) => any;
6500
+ /**
6501
+ * @internal
6502
+ */
6503
+ export declare const RouteCarOptionsFilterSensitiveLog: (obj: RouteCarOptions) => any;
6504
+ /**
6505
+ * @internal
6506
+ */
6507
+ export declare const RoutePedestrianOptionsFilterSensitiveLog: (obj: RoutePedestrianOptions) => any;
6508
+ /**
6509
+ * @internal
6510
+ */
6511
+ export declare const RouteScooterOptionsFilterSensitiveLog: (obj: RouteScooterOptions) => any;
6512
+ /**
6513
+ * @internal
6514
+ */
6515
+ export declare const RouteTrailerOptionsFilterSensitiveLog: (obj: RouteTrailerOptions) => any;
6516
+ /**
6517
+ * @internal
6518
+ */
6519
+ export declare const RouteTruckOptionsFilterSensitiveLog: (obj: RouteTruckOptions) => any;
6520
+ /**
6521
+ * @internal
6522
+ */
6523
+ export declare const RouteTravelModeOptionsFilterSensitiveLog: (obj: RouteTravelModeOptions) => any;
7757
6524
  /**
7758
6525
  * @internal
7759
6526
  */
@@ -7762,6 +6529,10 @@ export declare const RouteWaypointFilterSensitiveLog: (obj: RouteWaypoint) => an
7762
6529
  * @internal
7763
6530
  */
7764
6531
  export declare const CalculateRoutesRequestFilterSensitiveLog: (obj: CalculateRoutesRequest) => any;
6532
+ /**
6533
+ * @internal
6534
+ */
6535
+ export declare const RouteFerryAfterTravelStepFilterSensitiveLog: (obj: RouteFerryAfterTravelStep) => any;
7765
6536
  /**
7766
6537
  * @internal
7767
6538
  */
@@ -7770,6 +6541,10 @@ export declare const RouteFerryPlaceFilterSensitiveLog: (obj: RouteFerryPlace) =
7770
6541
  * @internal
7771
6542
  */
7772
6543
  export declare const RouteFerryArrivalFilterSensitiveLog: (obj: RouteFerryArrival) => any;
6544
+ /**
6545
+ * @internal
6546
+ */
6547
+ export declare const RouteFerryBeforeTravelStepFilterSensitiveLog: (obj: RouteFerryBeforeTravelStep) => any;
7773
6548
  /**
7774
6549
  * @internal
7775
6550
  */
@@ -7782,6 +6557,30 @@ export declare const RoutePassThroughPlaceFilterSensitiveLog: (obj: RoutePassThr
7782
6557
  * @internal
7783
6558
  */
7784
6559
  export declare const RoutePassThroughWaypointFilterSensitiveLog: (obj: RoutePassThroughWaypoint) => any;
6560
+ /**
6561
+ * @internal
6562
+ */
6563
+ export declare const LocalizedStringFilterSensitiveLog: (obj: LocalizedString) => any;
6564
+ /**
6565
+ * @internal
6566
+ */
6567
+ export declare const RouteFerrySpanFilterSensitiveLog: (obj: RouteFerrySpan) => any;
6568
+ /**
6569
+ * @internal
6570
+ */
6571
+ export declare const RouteFerryOverviewSummaryFilterSensitiveLog: (obj: RouteFerryOverviewSummary) => any;
6572
+ /**
6573
+ * @internal
6574
+ */
6575
+ export declare const RouteFerryTravelOnlySummaryFilterSensitiveLog: (obj: RouteFerryTravelOnlySummary) => any;
6576
+ /**
6577
+ * @internal
6578
+ */
6579
+ export declare const RouteFerrySummaryFilterSensitiveLog: (obj: RouteFerrySummary) => any;
6580
+ /**
6581
+ * @internal
6582
+ */
6583
+ export declare const RouteFerryTravelStepFilterSensitiveLog: (obj: RouteFerryTravelStep) => any;
7785
6584
  /**
7786
6585
  * @internal
7787
6586
  */
@@ -7802,6 +6601,74 @@ export declare const RoutePedestrianArrivalFilterSensitiveLog: (obj: RoutePedest
7802
6601
  * @internal
7803
6602
  */
7804
6603
  export declare const RoutePedestrianDepartureFilterSensitiveLog: (obj: RoutePedestrianDeparture) => any;
6604
+ /**
6605
+ * @internal
6606
+ */
6607
+ export declare const RouteSpanDynamicSpeedDetailsFilterSensitiveLog: (obj: RouteSpanDynamicSpeedDetails) => any;
6608
+ /**
6609
+ * @internal
6610
+ */
6611
+ export declare const RouteNumberFilterSensitiveLog: (obj: RouteNumber) => any;
6612
+ /**
6613
+ * @internal
6614
+ */
6615
+ export declare const RouteSpanSpeedLimitDetailsFilterSensitiveLog: (obj: RouteSpanSpeedLimitDetails) => any;
6616
+ /**
6617
+ * @internal
6618
+ */
6619
+ export declare const RoutePedestrianSpanFilterSensitiveLog: (obj: RoutePedestrianSpan) => any;
6620
+ /**
6621
+ * @internal
6622
+ */
6623
+ export declare const RoutePedestrianOverviewSummaryFilterSensitiveLog: (obj: RoutePedestrianOverviewSummary) => any;
6624
+ /**
6625
+ * @internal
6626
+ */
6627
+ export declare const RoutePedestrianTravelOnlySummaryFilterSensitiveLog: (obj: RoutePedestrianTravelOnlySummary) => any;
6628
+ /**
6629
+ * @internal
6630
+ */
6631
+ export declare const RoutePedestrianSummaryFilterSensitiveLog: (obj: RoutePedestrianSummary) => any;
6632
+ /**
6633
+ * @internal
6634
+ */
6635
+ export declare const RouteContinueStepDetailsFilterSensitiveLog: (obj: RouteContinueStepDetails) => any;
6636
+ /**
6637
+ * @internal
6638
+ */
6639
+ export declare const RouteRoadFilterSensitiveLog: (obj: RouteRoad) => any;
6640
+ /**
6641
+ * @internal
6642
+ */
6643
+ export declare const RouteKeepStepDetailsFilterSensitiveLog: (obj: RouteKeepStepDetails) => any;
6644
+ /**
6645
+ * @internal
6646
+ */
6647
+ export declare const RouteRoundaboutEnterStepDetailsFilterSensitiveLog: (obj: RouteRoundaboutEnterStepDetails) => any;
6648
+ /**
6649
+ * @internal
6650
+ */
6651
+ export declare const RouteRoundaboutExitStepDetailsFilterSensitiveLog: (obj: RouteRoundaboutExitStepDetails) => any;
6652
+ /**
6653
+ * @internal
6654
+ */
6655
+ export declare const RouteRoundaboutPassStepDetailsFilterSensitiveLog: (obj: RouteRoundaboutPassStepDetails) => any;
6656
+ /**
6657
+ * @internal
6658
+ */
6659
+ export declare const RouteSignpostLabelFilterSensitiveLog: (obj: RouteSignpostLabel) => any;
6660
+ /**
6661
+ * @internal
6662
+ */
6663
+ export declare const RouteSignpostFilterSensitiveLog: (obj: RouteSignpost) => any;
6664
+ /**
6665
+ * @internal
6666
+ */
6667
+ export declare const RouteTurnStepDetailsFilterSensitiveLog: (obj: RouteTurnStepDetails) => any;
6668
+ /**
6669
+ * @internal
6670
+ */
6671
+ export declare const RoutePedestrianTravelStepFilterSensitiveLog: (obj: RoutePedestrianTravelStep) => any;
7805
6672
  /**
7806
6673
  * @internal
7807
6674
  */
@@ -7818,14 +6685,106 @@ export declare const RouteVehicleArrivalFilterSensitiveLog: (obj: RouteVehicleAr
7818
6685
  * @internal
7819
6686
  */
7820
6687
  export declare const RouteVehicleDepartureFilterSensitiveLog: (obj: RouteVehicleDeparture) => any;
6688
+ /**
6689
+ * @internal
6690
+ */
6691
+ export declare const RouteVehicleIncidentFilterSensitiveLog: (obj: RouteVehicleIncident) => any;
6692
+ /**
6693
+ * @internal
6694
+ */
6695
+ export declare const RouteWeightConstraintFilterSensitiveLog: (obj: RouteWeightConstraint) => any;
6696
+ /**
6697
+ * @internal
6698
+ */
6699
+ export declare const RouteViolatedConstraintsFilterSensitiveLog: (obj: RouteViolatedConstraints) => any;
6700
+ /**
6701
+ * @internal
6702
+ */
6703
+ export declare const RouteVehicleNoticeDetailFilterSensitiveLog: (obj: RouteVehicleNoticeDetail) => any;
6704
+ /**
6705
+ * @internal
6706
+ */
6707
+ export declare const RouteVehicleNoticeFilterSensitiveLog: (obj: RouteVehicleNotice) => any;
6708
+ /**
6709
+ * @internal
6710
+ */
6711
+ export declare const RouteVehicleSpanFilterSensitiveLog: (obj: RouteVehicleSpan) => any;
6712
+ /**
6713
+ * @internal
6714
+ */
6715
+ export declare const RouteVehicleOverviewSummaryFilterSensitiveLog: (obj: RouteVehicleOverviewSummary) => any;
6716
+ /**
6717
+ * @internal
6718
+ */
6719
+ export declare const RouteVehicleTravelOnlySummaryFilterSensitiveLog: (obj: RouteVehicleTravelOnlySummary) => any;
6720
+ /**
6721
+ * @internal
6722
+ */
6723
+ export declare const RouteVehicleSummaryFilterSensitiveLog: (obj: RouteVehicleSummary) => any;
7821
6724
  /**
7822
6725
  * @internal
7823
6726
  */
7824
6727
  export declare const RouteTollPaymentSiteFilterSensitiveLog: (obj: RouteTollPaymentSite) => any;
6728
+ /**
6729
+ * @internal
6730
+ */
6731
+ export declare const RouteTollPriceValueRangeFilterSensitiveLog: (obj: RouteTollPriceValueRange) => any;
6732
+ /**
6733
+ * @internal
6734
+ */
6735
+ export declare const RouteTollPriceFilterSensitiveLog: (obj: RouteTollPrice) => any;
6736
+ /**
6737
+ * @internal
6738
+ */
6739
+ export declare const RouteTollPassValidityPeriodFilterSensitiveLog: (obj: RouteTollPassValidityPeriod) => any;
6740
+ /**
6741
+ * @internal
6742
+ */
6743
+ export declare const RouteTollPassFilterSensitiveLog: (obj: RouteTollPass) => any;
6744
+ /**
6745
+ * @internal
6746
+ */
6747
+ export declare const RouteTransponderFilterSensitiveLog: (obj: RouteTransponder) => any;
6748
+ /**
6749
+ * @internal
6750
+ */
6751
+ export declare const RouteTollRateFilterSensitiveLog: (obj: RouteTollRate) => any;
7825
6752
  /**
7826
6753
  * @internal
7827
6754
  */
7828
6755
  export declare const RouteTollFilterSensitiveLog: (obj: RouteToll) => any;
6756
+ /**
6757
+ * @internal
6758
+ */
6759
+ export declare const RouteTollSystemFilterSensitiveLog: (obj: RouteTollSystem) => any;
6760
+ /**
6761
+ * @internal
6762
+ */
6763
+ export declare const RouteContinueHighwayStepDetailsFilterSensitiveLog: (obj: RouteContinueHighwayStepDetails) => any;
6764
+ /**
6765
+ * @internal
6766
+ */
6767
+ export declare const RouteEnterHighwayStepDetailsFilterSensitiveLog: (obj: RouteEnterHighwayStepDetails) => any;
6768
+ /**
6769
+ * @internal
6770
+ */
6771
+ export declare const RouteExitStepDetailsFilterSensitiveLog: (obj: RouteExitStepDetails) => any;
6772
+ /**
6773
+ * @internal
6774
+ */
6775
+ export declare const RouteRampStepDetailsFilterSensitiveLog: (obj: RouteRampStepDetails) => any;
6776
+ /**
6777
+ * @internal
6778
+ */
6779
+ export declare const RouteUTurnStepDetailsFilterSensitiveLog: (obj: RouteUTurnStepDetails) => any;
6780
+ /**
6781
+ * @internal
6782
+ */
6783
+ export declare const RouteVehicleTravelStepFilterSensitiveLog: (obj: RouteVehicleTravelStep) => any;
6784
+ /**
6785
+ * @internal
6786
+ */
6787
+ export declare const RouteZoneFilterSensitiveLog: (obj: RouteZone) => any;
7829
6788
  /**
7830
6789
  * @internal
7831
6790
  */
@@ -7834,6 +6793,22 @@ export declare const RouteVehicleLegDetailsFilterSensitiveLog: (obj: RouteVehicl
7834
6793
  * @internal
7835
6794
  */
7836
6795
  export declare const RouteLegFilterSensitiveLog: (obj: RouteLeg) => any;
6796
+ /**
6797
+ * @internal
6798
+ */
6799
+ export declare const RouteMajorRoadLabelFilterSensitiveLog: (obj: RouteMajorRoadLabel) => any;
6800
+ /**
6801
+ * @internal
6802
+ */
6803
+ export declare const RouteTollPriceSummaryFilterSensitiveLog: (obj: RouteTollPriceSummary) => any;
6804
+ /**
6805
+ * @internal
6806
+ */
6807
+ export declare const RouteTollSummaryFilterSensitiveLog: (obj: RouteTollSummary) => any;
6808
+ /**
6809
+ * @internal
6810
+ */
6811
+ export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
7837
6812
  /**
7838
6813
  * @internal
7839
6814
  */
@@ -7854,6 +6829,22 @@ export declare const WaypointOptimizationAvoidanceAreaFilterSensitiveLog: (obj:
7854
6829
  * @internal
7855
6830
  */
7856
6831
  export declare const WaypointOptimizationAvoidanceOptionsFilterSensitiveLog: (obj: WaypointOptimizationAvoidanceOptions) => any;
6832
+ /**
6833
+ * @internal
6834
+ */
6835
+ export declare const WaypointOptimizationDrivingDistanceOptionsFilterSensitiveLog: (obj: WaypointOptimizationDrivingDistanceOptions) => any;
6836
+ /**
6837
+ * @internal
6838
+ */
6839
+ export declare const WaypointOptimizationClusteringOptionsFilterSensitiveLog: (obj: WaypointOptimizationClusteringOptions) => any;
6840
+ /**
6841
+ * @internal
6842
+ */
6843
+ export declare const WaypointOptimizationAccessHoursEntryFilterSensitiveLog: (obj: WaypointOptimizationAccessHoursEntry) => any;
6844
+ /**
6845
+ * @internal
6846
+ */
6847
+ export declare const WaypointOptimizationAccessHoursFilterSensitiveLog: (obj: WaypointOptimizationAccessHours) => any;
7857
6848
  /**
7858
6849
  * @internal
7859
6850
  */
@@ -7862,6 +6853,42 @@ export declare const WaypointOptimizationSideOfStreetOptionsFilterSensitiveLog:
7862
6853
  * @internal
7863
6854
  */
7864
6855
  export declare const WaypointOptimizationDestinationOptionsFilterSensitiveLog: (obj: WaypointOptimizationDestinationOptions) => any;
6856
+ /**
6857
+ * @internal
6858
+ */
6859
+ export declare const WaypointOptimizationRestCycleDurationsFilterSensitiveLog: (obj: WaypointOptimizationRestCycleDurations) => any;
6860
+ /**
6861
+ * @internal
6862
+ */
6863
+ export declare const WaypointOptimizationRestCyclesFilterSensitiveLog: (obj: WaypointOptimizationRestCycles) => any;
6864
+ /**
6865
+ * @internal
6866
+ */
6867
+ export declare const WaypointOptimizationRestProfileFilterSensitiveLog: (obj: WaypointOptimizationRestProfile) => any;
6868
+ /**
6869
+ * @internal
6870
+ */
6871
+ export declare const WaypointOptimizationDriverOptionsFilterSensitiveLog: (obj: WaypointOptimizationDriverOptions) => any;
6872
+ /**
6873
+ * @internal
6874
+ */
6875
+ export declare const WaypointOptimizationExclusionOptionsFilterSensitiveLog: (obj: WaypointOptimizationExclusionOptions) => any;
6876
+ /**
6877
+ * @internal
6878
+ */
6879
+ export declare const WaypointOptimizationPedestrianOptionsFilterSensitiveLog: (obj: WaypointOptimizationPedestrianOptions) => any;
6880
+ /**
6881
+ * @internal
6882
+ */
6883
+ export declare const WaypointOptimizationTrailerOptionsFilterSensitiveLog: (obj: WaypointOptimizationTrailerOptions) => any;
6884
+ /**
6885
+ * @internal
6886
+ */
6887
+ export declare const WaypointOptimizationTruckOptionsFilterSensitiveLog: (obj: WaypointOptimizationTruckOptions) => any;
6888
+ /**
6889
+ * @internal
6890
+ */
6891
+ export declare const WaypointOptimizationTravelModeOptionsFilterSensitiveLog: (obj: WaypointOptimizationTravelModeOptions) => any;
7865
6892
  /**
7866
6893
  * @internal
7867
6894
  */
@@ -7870,6 +6897,14 @@ export declare const WaypointOptimizationWaypointFilterSensitiveLog: (obj: Waypo
7870
6897
  * @internal
7871
6898
  */
7872
6899
  export declare const OptimizeWaypointsRequestFilterSensitiveLog: (obj: OptimizeWaypointsRequest) => any;
6900
+ /**
6901
+ * @internal
6902
+ */
6903
+ export declare const WaypointOptimizationConnectionFilterSensitiveLog: (obj: WaypointOptimizationConnection) => any;
6904
+ /**
6905
+ * @internal
6906
+ */
6907
+ export declare const WaypointOptimizationFailedConstraintFilterSensitiveLog: (obj: WaypointOptimizationFailedConstraint) => any;
7873
6908
  /**
7874
6909
  * @internal
7875
6910
  */
@@ -7878,6 +6913,10 @@ export declare const WaypointOptimizationImpedingWaypointFilterSensitiveLog: (ob
7878
6913
  * @internal
7879
6914
  */
7880
6915
  export declare const WaypointOptimizationOptimizedWaypointFilterSensitiveLog: (obj: WaypointOptimizationOptimizedWaypoint) => any;
6916
+ /**
6917
+ * @internal
6918
+ */
6919
+ export declare const WaypointOptimizationTimeBreakdownFilterSensitiveLog: (obj: WaypointOptimizationTimeBreakdown) => any;
7881
6920
  /**
7882
6921
  * @internal
7883
6922
  */
@@ -7886,10 +6925,26 @@ export declare const OptimizeWaypointsResponseFilterSensitiveLog: (obj: Optimize
7886
6925
  * @internal
7887
6926
  */
7888
6927
  export declare const RoadSnapTracePointFilterSensitiveLog: (obj: RoadSnapTracePoint) => any;
6928
+ /**
6929
+ * @internal
6930
+ */
6931
+ export declare const RoadSnapTrailerOptionsFilterSensitiveLog: (obj: RoadSnapTrailerOptions) => any;
6932
+ /**
6933
+ * @internal
6934
+ */
6935
+ export declare const RoadSnapTruckOptionsFilterSensitiveLog: (obj: RoadSnapTruckOptions) => any;
6936
+ /**
6937
+ * @internal
6938
+ */
6939
+ export declare const RoadSnapTravelModeOptionsFilterSensitiveLog: (obj: RoadSnapTravelModeOptions) => any;
7889
6940
  /**
7890
6941
  * @internal
7891
6942
  */
7892
6943
  export declare const SnapToRoadsRequestFilterSensitiveLog: (obj: SnapToRoadsRequest) => any;
6944
+ /**
6945
+ * @internal
6946
+ */
6947
+ export declare const RoadSnapNoticeFilterSensitiveLog: (obj: RoadSnapNotice) => any;
7893
6948
  /**
7894
6949
  * @internal
7895
6950
  */