@aws-sdk/client-geo-routes 3.687.0 → 3.692.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.
@@ -22,12 +22,12 @@ export interface IsolineAllowOptions {
22
22
  * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p>
23
23
  * @public
24
24
  */
25
- Hot?: boolean;
25
+ Hot?: boolean | undefined;
26
26
  /**
27
27
  * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p>
28
28
  * @public
29
29
  */
30
- Hov?: boolean;
30
+ Hov?: boolean | undefined;
31
31
  }
32
32
  /**
33
33
  * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
@@ -82,29 +82,29 @@ export interface IsolineAvoidanceAreaGeometry {
82
82
  * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
83
83
  * @public
84
84
  */
85
- BoundingBox?: number[];
85
+ BoundingBox?: number[] | undefined;
86
86
  /**
87
87
  * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
88
88
  * @public
89
89
  */
90
- Corridor?: Corridor;
90
+ Corridor?: Corridor | undefined;
91
91
  /**
92
92
  * <p>A list of Polygon will be excluded for calculating isolines, the list can only contain 1 polygon.</p>
93
93
  * @public
94
94
  */
95
- Polygon?: number[][][];
95
+ Polygon?: number[][][] | undefined;
96
96
  /**
97
97
  * <p>Geometry defined as an encoded corridor – a polyline with a radius that defines the width of the corridor. For more information on polyline
98
98
  * encoding, see <a href="https://github.com/heremaps/flexiblepolyline/blob/master/README.md">https://github.com/heremaps/flexiblepolyline/blob/master/README.md</a>.</p>
99
99
  * @public
100
100
  */
101
- PolylineCorridor?: PolylineCorridor;
101
+ PolylineCorridor?: PolylineCorridor | undefined;
102
102
  /**
103
103
  * <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>.
104
104
  * </p>
105
105
  * @public
106
106
  */
107
- PolylinePolygon?: string[];
107
+ PolylinePolygon?: string[] | undefined;
108
108
  }
109
109
  /**
110
110
  * <p>The area to be avoided.</p>
@@ -115,7 +115,7 @@ export interface IsolineAvoidanceArea {
115
115
  * <p>Exceptions to the provided avoidance geometry, to be included while calculating the route.</p>
116
116
  * @public
117
117
  */
118
- Except?: IsolineAvoidanceAreaGeometry[];
118
+ Except?: IsolineAvoidanceAreaGeometry[] | undefined;
119
119
  /**
120
120
  * <p>Geometry of the area to be avoided.</p>
121
121
  * @public
@@ -144,7 +144,7 @@ export interface IsolineAvoidanceZoneCategory {
144
144
  * <p>Zone category to be avoided.</p>
145
145
  * @public
146
146
  */
147
- Category?: IsolineZoneCategory;
147
+ Category?: IsolineZoneCategory | undefined;
148
148
  }
149
149
  /**
150
150
  * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an
@@ -157,42 +157,42 @@ export interface IsolineAvoidanceOptions {
157
157
  * <p>Areas to be avoided.</p>
158
158
  * @public
159
159
  */
160
- Areas?: IsolineAvoidanceArea[];
160
+ Areas?: IsolineAvoidanceArea[] | undefined;
161
161
  /**
162
162
  * <p>Avoid car-shuttle-trains while calculating the route.</p>
163
163
  * @public
164
164
  */
165
- CarShuttleTrains?: boolean;
165
+ CarShuttleTrains?: boolean | undefined;
166
166
  /**
167
167
  * <p>Avoid controlled access highways while calculating the route.</p>
168
168
  * @public
169
169
  */
170
- ControlledAccessHighways?: boolean;
170
+ ControlledAccessHighways?: boolean | undefined;
171
171
  /**
172
172
  * <p>Avoid dirt roads while calculating the route.</p>
173
173
  * @public
174
174
  */
175
- DirtRoads?: boolean;
175
+ DirtRoads?: boolean | undefined;
176
176
  /**
177
177
  * <p>Avoid ferries while calculating the route.</p>
178
178
  * @public
179
179
  */
180
- Ferries?: boolean;
180
+ Ferries?: boolean | undefined;
181
181
  /**
182
182
  * <p>Avoid roads that have seasonal closure while calculating the route.</p>
183
183
  * @public
184
184
  */
185
- SeasonalClosure?: boolean;
185
+ SeasonalClosure?: boolean | undefined;
186
186
  /**
187
187
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
188
188
  * @public
189
189
  */
190
- TollRoads?: boolean;
190
+ TollRoads?: boolean | undefined;
191
191
  /**
192
192
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
193
193
  * @public
194
194
  */
195
- TollTransponders?: boolean;
195
+ TollTransponders?: boolean | undefined;
196
196
  /**
197
197
  * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden.
198
198
  * <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
@@ -201,22 +201,22 @@ export interface IsolineAvoidanceOptions {
201
201
  * </note>
202
202
  * @public
203
203
  */
204
- TruckRoadTypes?: string[];
204
+ TruckRoadTypes?: string[] | undefined;
205
205
  /**
206
206
  * <p>Avoid tunnels while calculating the route.</p>
207
207
  * @public
208
208
  */
209
- Tunnels?: boolean;
209
+ Tunnels?: boolean | undefined;
210
210
  /**
211
211
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
212
212
  * @public
213
213
  */
214
- UTurns?: boolean;
214
+ UTurns?: boolean | undefined;
215
215
  /**
216
216
  * <p>Zone categories to be avoided.</p>
217
217
  * @public
218
218
  */
219
- ZoneCategories?: IsolineAvoidanceZoneCategory[];
219
+ ZoneCategories?: IsolineAvoidanceZoneCategory[] | undefined;
220
220
  }
221
221
  /**
222
222
  * @public
@@ -239,7 +239,7 @@ export interface IsolineMatchingOptions {
239
239
  * <p>Attempts to match the provided position to a road similar to the provided name.</p>
240
240
  * @public
241
241
  */
242
- NameHint?: string;
242
+ NameHint?: string | undefined;
243
243
  /**
244
244
  * <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>
245
245
  * <p>
@@ -247,7 +247,7 @@ export interface IsolineMatchingOptions {
247
247
  * </p>
248
248
  * @public
249
249
  */
250
- OnRoadThreshold?: number;
250
+ OnRoadThreshold?: number | undefined;
251
251
  /**
252
252
  * <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>
253
253
  * <p>
@@ -255,12 +255,12 @@ export interface IsolineMatchingOptions {
255
255
  * </p>
256
256
  * @public
257
257
  */
258
- Radius?: number;
258
+ Radius?: number | undefined;
259
259
  /**
260
260
  * <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>
261
261
  * @public
262
262
  */
263
- Strategy?: MatchingStrategy;
263
+ Strategy?: MatchingStrategy | undefined;
264
264
  }
265
265
  /**
266
266
  * @public
@@ -290,7 +290,7 @@ export interface IsolineSideOfStreetOptions {
290
290
  * </p>
291
291
  * @public
292
292
  */
293
- UseWith?: SideOfStreetMatchingStrategy;
293
+ UseWith?: SideOfStreetMatchingStrategy | undefined;
294
294
  }
295
295
  /**
296
296
  * <p>Destination related options.</p>
@@ -301,22 +301,22 @@ export interface IsolineDestinationOptions {
301
301
  * <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>
302
302
  * @public
303
303
  */
304
- AvoidActionsForDistance?: number;
304
+ AvoidActionsForDistance?: number | undefined;
305
305
  /**
306
306
  * <p>GPS Heading at the position.</p>
307
307
  * @public
308
308
  */
309
- Heading?: number;
309
+ Heading?: number | undefined;
310
310
  /**
311
311
  * <p>Options to configure matching the provided position to the road network.</p>
312
312
  * @public
313
313
  */
314
- Matching?: IsolineMatchingOptions;
314
+ Matching?: IsolineMatchingOptions | undefined;
315
315
  /**
316
316
  * <p>Options to configure matching the provided position to a side of the street.</p>
317
317
  * @public
318
318
  */
319
- SideOfStreet?: IsolineSideOfStreetOptions;
319
+ SideOfStreet?: IsolineSideOfStreetOptions | undefined;
320
320
  }
321
321
  /**
322
322
  * @public
@@ -339,7 +339,7 @@ export interface IsolineGranularityOptions {
339
339
  * <p>Maximum number of points of returned Isoline.</p>
340
340
  * @public
341
341
  */
342
- MaxPoints?: number;
342
+ MaxPoints?: number | undefined;
343
343
  /**
344
344
  * <p>Maximum resolution of the returned isoline.</p>
345
345
  * <p>
@@ -347,7 +347,7 @@ export interface IsolineGranularityOptions {
347
347
  * </p>
348
348
  * @public
349
349
  */
350
- MaxResolution?: number;
350
+ MaxResolution?: number | undefined;
351
351
  }
352
352
  /**
353
353
  * @public
@@ -383,22 +383,22 @@ export interface IsolineOriginOptions {
383
383
  * <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>
384
384
  * @public
385
385
  */
386
- AvoidActionsForDistance?: number;
386
+ AvoidActionsForDistance?: number | undefined;
387
387
  /**
388
388
  * <p>GPS Heading at the position.</p>
389
389
  * @public
390
390
  */
391
- Heading?: number;
391
+ Heading?: number | undefined;
392
392
  /**
393
393
  * <p>Options to configure matching the provided position to the road network.</p>
394
394
  * @public
395
395
  */
396
- Matching?: IsolineMatchingOptions;
396
+ Matching?: IsolineMatchingOptions | undefined;
397
397
  /**
398
398
  * <p>Options to configure matching the provided position to a side of the street.</p>
399
399
  * @public
400
400
  */
401
- SideOfStreet?: IsolineSideOfStreetOptions;
401
+ SideOfStreet?: IsolineSideOfStreetOptions | undefined;
402
402
  }
403
403
  /**
404
404
  * <p>Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type
@@ -410,12 +410,12 @@ export interface IsolineThresholds {
410
410
  * <p>Distance to be used for the isoline calculation.</p>
411
411
  * @public
412
412
  */
413
- Distance?: number[];
413
+ Distance?: number[] | undefined;
414
414
  /**
415
415
  * <p>Time to be used for the isoline calculation.</p>
416
416
  * @public
417
417
  */
418
- Time?: number[];
418
+ Time?: number[] | undefined;
419
419
  }
420
420
  /**
421
421
  * @public
@@ -441,14 +441,14 @@ export interface IsolineTrafficOptions {
441
441
  * </p>
442
442
  * @public
443
443
  */
444
- FlowEventThresholdOverride?: number;
444
+ FlowEventThresholdOverride?: number | undefined;
445
445
  /**
446
446
  * <p>Determines if traffic should be used or ignored while calculating the route.</p>
447
447
  * <p>Default Value: <code>UseTrafficData</code>
448
448
  * </p>
449
449
  * @public
450
450
  */
451
- Usage?: TrafficUsage;
451
+ Usage?: TrafficUsage | undefined;
452
452
  }
453
453
  /**
454
454
  * @public
@@ -486,7 +486,7 @@ export interface IsolineVehicleLicensePlate {
486
486
  * <p>The last character of the License Plate.</p>
487
487
  * @public
488
488
  */
489
- LastCharacter?: string;
489
+ LastCharacter?: string | undefined;
490
490
  }
491
491
  /**
492
492
  * <p>Options for vehicles.</p>
@@ -497,12 +497,12 @@ export interface IsolineCarOptions {
497
497
  * <p>Engine type of the vehicle.</p>
498
498
  * @public
499
499
  */
500
- EngineType?: IsolineEngineType;
500
+ EngineType?: IsolineEngineType | undefined;
501
501
  /**
502
502
  * <p>The vehicle License Plate.</p>
503
503
  * @public
504
504
  */
505
- LicensePlate?: IsolineVehicleLicensePlate;
505
+ LicensePlate?: IsolineVehicleLicensePlate | undefined;
506
506
  /**
507
507
  * <p>Maximum speed.</p>
508
508
  * <p>
@@ -510,14 +510,14 @@ export interface IsolineCarOptions {
510
510
  * </p>
511
511
  * @public
512
512
  */
513
- MaxSpeed?: number;
513
+ MaxSpeed?: number | undefined;
514
514
  /**
515
515
  * <p>The number of occupants in the vehicle.</p>
516
516
  * <p>Default Value: <code>1</code>
517
517
  * </p>
518
518
  * @public
519
519
  */
520
- Occupancy?: number;
520
+ Occupancy?: number | undefined;
521
521
  }
522
522
  /**
523
523
  * <p>Options for the property.</p>
@@ -528,12 +528,12 @@ export interface IsolineScooterOptions {
528
528
  * <p>Engine type of the vehicle.</p>
529
529
  * @public
530
530
  */
531
- EngineType?: IsolineEngineType;
531
+ EngineType?: IsolineEngineType | undefined;
532
532
  /**
533
533
  * <p>The vehicle License Plate.</p>
534
534
  * @public
535
535
  */
536
- LicensePlate?: IsolineVehicleLicensePlate;
536
+ LicensePlate?: IsolineVehicleLicensePlate | undefined;
537
537
  /**
538
538
  * <p>Maximum speed specified.</p>
539
539
  * <p>
@@ -541,14 +541,14 @@ export interface IsolineScooterOptions {
541
541
  * </p>
542
542
  * @public
543
543
  */
544
- MaxSpeed?: number;
544
+ MaxSpeed?: number | undefined;
545
545
  /**
546
546
  * <p>The number of occupants in the vehicle.</p>
547
547
  * <p>Default Value: <code>1</code>
548
548
  * </p>
549
549
  * @public
550
550
  */
551
- Occupancy?: number;
551
+ Occupancy?: number | undefined;
552
552
  }
553
553
  /**
554
554
  * @public
@@ -580,14 +580,14 @@ export interface IsolineTrailerOptions {
580
580
  * <p>Total number of axles of the vehicle.</p>
581
581
  * @public
582
582
  */
583
- AxleCount?: number;
583
+ AxleCount?: number | undefined;
584
584
  /**
585
585
  * <p>Number of trailers attached to the vehicle.</p>
586
586
  * <p>Default Value: <code>0</code>
587
587
  * </p>
588
588
  * @public
589
589
  */
590
- TrailerCount?: number;
590
+ TrailerCount?: number | undefined;
591
591
  }
592
592
  /**
593
593
  * @public
@@ -617,7 +617,7 @@ export interface WeightPerAxleGroup {
617
617
  * </p>
618
618
  * @public
619
619
  */
620
- Single?: number;
620
+ Single?: number | undefined;
621
621
  /**
622
622
  * <p>Weight for tandem axle group.</p>
623
623
  * <p>
@@ -625,7 +625,7 @@ export interface WeightPerAxleGroup {
625
625
  * </p>
626
626
  * @public
627
627
  */
628
- Tandem?: number;
628
+ Tandem?: number | undefined;
629
629
  /**
630
630
  * <p>Weight for triple axle group.</p>
631
631
  * <p>
@@ -633,7 +633,7 @@ export interface WeightPerAxleGroup {
633
633
  * </p>
634
634
  * @public
635
635
  */
636
- Triple?: number;
636
+ Triple?: number | undefined;
637
637
  /**
638
638
  * <p>Weight for quad axle group.</p>
639
639
  * <p>
@@ -641,7 +641,7 @@ export interface WeightPerAxleGroup {
641
641
  * </p>
642
642
  * @public
643
643
  */
644
- Quad?: number;
644
+ Quad?: number | undefined;
645
645
  /**
646
646
  * <p>Weight for quad quint group.</p>
647
647
  * <p>
@@ -649,7 +649,7 @@ export interface WeightPerAxleGroup {
649
649
  * </p>
650
650
  * @public
651
651
  */
652
- Quint?: number;
652
+ Quint?: number | undefined;
653
653
  }
654
654
  /**
655
655
  * <p>Travel mode options when the provided travel mode is "Truck"</p>
@@ -660,12 +660,12 @@ export interface IsolineTruckOptions {
660
660
  * <p>Total number of axles of the vehicle.</p>
661
661
  * @public
662
662
  */
663
- AxleCount?: number;
663
+ AxleCount?: number | undefined;
664
664
  /**
665
665
  * <p>Engine type of the vehicle.</p>
666
666
  * @public
667
667
  */
668
- EngineType?: IsolineEngineType;
668
+ EngineType?: IsolineEngineType | undefined;
669
669
  /**
670
670
  * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
671
671
  * <p>
@@ -673,12 +673,12 @@ export interface IsolineTruckOptions {
673
673
  * </p>
674
674
  * @public
675
675
  */
676
- GrossWeight?: number;
676
+ GrossWeight?: number | undefined;
677
677
  /**
678
678
  * <p>List of Hazardous cargo contained in the vehicle.</p>
679
679
  * @public
680
680
  */
681
- HazardousCargos?: IsolineHazardousCargoType[];
681
+ HazardousCargos?: IsolineHazardousCargoType[] | undefined;
682
682
  /**
683
683
  * <p>Height of the vehicle.</p>
684
684
  * <p>
@@ -686,7 +686,7 @@ export interface IsolineTruckOptions {
686
686
  * </p>
687
687
  * @public
688
688
  */
689
- Height?: number;
689
+ Height?: number | undefined;
690
690
  /**
691
691
  * <p>Height of the vehicle above its first axle.</p>
692
692
  * <p>
@@ -694,7 +694,7 @@ export interface IsolineTruckOptions {
694
694
  * </p>
695
695
  * @public
696
696
  */
697
- HeightAboveFirstAxle?: number;
697
+ HeightAboveFirstAxle?: number | undefined;
698
698
  /**
699
699
  * <p>Kingpin to rear axle length of the vehicle.</p>
700
700
  * <p>
@@ -702,7 +702,7 @@ export interface IsolineTruckOptions {
702
702
  * </p>
703
703
  * @public
704
704
  */
705
- KpraLength?: number;
705
+ KpraLength?: number | undefined;
706
706
  /**
707
707
  * <p>Length of the vehicle.</p>
708
708
  * <p>
@@ -710,12 +710,12 @@ export interface IsolineTruckOptions {
710
710
  * </p>
711
711
  * @public
712
712
  */
713
- Length?: number;
713
+ Length?: number | undefined;
714
714
  /**
715
715
  * <p>The vehicle License Plate.</p>
716
716
  * @public
717
717
  */
718
- LicensePlate?: IsolineVehicleLicensePlate;
718
+ LicensePlate?: IsolineVehicleLicensePlate | undefined;
719
719
  /**
720
720
  * <p>Maximum speed specified.</p>
721
721
  * <p>
@@ -723,14 +723,14 @@ export interface IsolineTruckOptions {
723
723
  * </p>
724
724
  * @public
725
725
  */
726
- MaxSpeed?: number;
726
+ MaxSpeed?: number | undefined;
727
727
  /**
728
728
  * <p>The number of occupants in the vehicle.</p>
729
729
  * <p>Default Value: <code>1</code>
730
730
  * </p>
731
731
  * @public
732
732
  */
733
- Occupancy?: number;
733
+ Occupancy?: number | undefined;
734
734
  /**
735
735
  * <p>Payload capacity of the vehicle and trailers attached.</p>
736
736
  * <p>
@@ -738,22 +738,22 @@ export interface IsolineTruckOptions {
738
738
  * </p>
739
739
  * @public
740
740
  */
741
- PayloadCapacity?: number;
741
+ PayloadCapacity?: number | undefined;
742
742
  /**
743
743
  * <p>Number of tires on the vehicle.</p>
744
744
  * @public
745
745
  */
746
- TireCount?: number;
746
+ TireCount?: number | undefined;
747
747
  /**
748
748
  * <p>Trailer options corresponding to the vehicle.</p>
749
749
  * @public
750
750
  */
751
- Trailer?: IsolineTrailerOptions;
751
+ Trailer?: IsolineTrailerOptions | undefined;
752
752
  /**
753
753
  * <p>Type of the truck.</p>
754
754
  * @public
755
755
  */
756
- TruckType?: IsolineTruckType;
756
+ TruckType?: IsolineTruckType | undefined;
757
757
  /**
758
758
  * <p>The tunnel restriction code.</p>
759
759
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -822,7 +822,7 @@ export interface IsolineTruckOptions {
822
822
  * </ul>
823
823
  * @public
824
824
  */
825
- TunnelRestrictionCode?: string;
825
+ TunnelRestrictionCode?: string | undefined;
826
826
  /**
827
827
  * <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>
828
828
  * <p>
@@ -830,7 +830,7 @@ export interface IsolineTruckOptions {
830
830
  * </p>
831
831
  * @public
832
832
  */
833
- WeightPerAxle?: number;
833
+ WeightPerAxle?: number | undefined;
834
834
  /**
835
835
  * <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>
836
836
  * <p>
@@ -838,7 +838,7 @@ export interface IsolineTruckOptions {
838
838
  * </p>
839
839
  * @public
840
840
  */
841
- WeightPerAxleGroup?: WeightPerAxleGroup;
841
+ WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
842
842
  /**
843
843
  * <p>Width of the vehicle.</p>
844
844
  * <p>
@@ -846,7 +846,7 @@ export interface IsolineTruckOptions {
846
846
  * </p>
847
847
  * @public
848
848
  */
849
- Width?: number;
849
+ Width?: number | undefined;
850
850
  }
851
851
  /**
852
852
  * <p>Travel mode related options for the provided travel mode.</p>
@@ -857,17 +857,17 @@ export interface IsolineTravelModeOptions {
857
857
  * <p>Travel mode options when the provided travel mode is "Car"</p>
858
858
  * @public
859
859
  */
860
- Car?: IsolineCarOptions;
860
+ Car?: IsolineCarOptions | undefined;
861
861
  /**
862
862
  * <p>Travel mode options when the provided travel mode is "Scooter"</p>
863
863
  * @public
864
864
  */
865
- Scooter?: IsolineScooterOptions;
865
+ Scooter?: IsolineScooterOptions | undefined;
866
866
  /**
867
867
  * <p>Travel mode options when the provided travel mode is "Truck"</p>
868
868
  * @public
869
869
  */
870
- Truck?: IsolineTruckOptions;
870
+ Truck?: IsolineTruckOptions | undefined;
871
871
  }
872
872
  /**
873
873
  * @public
@@ -877,7 +877,7 @@ export interface CalculateIsolinesRequest {
877
877
  * <p>Features that are allowed while calculating. a route</p>
878
878
  * @public
879
879
  */
880
- Allow?: IsolineAllowOptions;
880
+ Allow?: IsolineAllowOptions | undefined;
881
881
  /**
882
882
  * <p>Time of arrival at the destination.</p>
883
883
  * <p>Time format: <code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -891,19 +891,19 @@ export interface CalculateIsolinesRequest {
891
891
  * </p>
892
892
  * @public
893
893
  */
894
- ArrivalTime?: string;
894
+ ArrivalTime?: string | undefined;
895
895
  /**
896
896
  * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an
897
897
  * avoidance can't be satisfied for a particular case, it violates the avoidance and the
898
898
  * returned response produces a notice for the violation.</p>
899
899
  * @public
900
900
  */
901
- Avoid?: IsolineAvoidanceOptions;
901
+ Avoid?: IsolineAvoidanceOptions | undefined;
902
902
  /**
903
903
  * <p>Uses the current time as the time of departure.</p>
904
904
  * @public
905
905
  */
906
- DepartNow?: boolean;
906
+ DepartNow?: boolean | undefined;
907
907
  /**
908
908
  * <p>Time of departure from thr origin.</p>
909
909
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -917,35 +917,35 @@ export interface CalculateIsolinesRequest {
917
917
  * </p>
918
918
  * @public
919
919
  */
920
- DepartureTime?: string;
920
+ DepartureTime?: string | undefined;
921
921
  /**
922
922
  * <p>The final position for the route. In the World Geodetic System (WGS 84) format: <code>[longitude, latitude]</code>.</p>
923
923
  * @public
924
924
  */
925
- Destination?: number[];
925
+ Destination?: number[] | undefined;
926
926
  /**
927
927
  * <p>Destination related options.</p>
928
928
  * @public
929
929
  */
930
- DestinationOptions?: IsolineDestinationOptions;
930
+ DestinationOptions?: IsolineDestinationOptions | undefined;
931
931
  /**
932
932
  * <p>The format of the returned IsolineGeometry. </p>
933
933
  * <p>Default Value:<code>FlexiblePolyline</code>
934
934
  * </p>
935
935
  * @public
936
936
  */
937
- IsolineGeometryFormat?: GeometryFormat;
937
+ IsolineGeometryFormat?: GeometryFormat | undefined;
938
938
  /**
939
939
  * <p>Defines the granularity of the returned Isoline</p>
940
940
  * @public
941
941
  */
942
- IsolineGranularity?: IsolineGranularityOptions;
942
+ IsolineGranularity?: IsolineGranularityOptions | undefined;
943
943
  /**
944
944
  * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
945
945
  * signature must be provided when making a request. </p>
946
946
  * @public
947
947
  */
948
- Key?: string;
948
+ Key?: string | undefined;
949
949
  /**
950
950
  * <p>Specifies the optimization criteria for when calculating an isoline. AccurateCalculation generates an isoline of higher granularity that is more precise.
951
951
  * 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.
@@ -954,24 +954,24 @@ export interface CalculateIsolinesRequest {
954
954
  * </p>
955
955
  * @public
956
956
  */
957
- OptimizeIsolineFor?: IsolineOptimizationObjective;
957
+ OptimizeIsolineFor?: IsolineOptimizationObjective | undefined;
958
958
  /**
959
959
  * <p>Specifies the optimization criteria for calculating a route.</p>
960
960
  * <p>Default Value: <code>FastestRoute</code>
961
961
  * </p>
962
962
  * @public
963
963
  */
964
- OptimizeRoutingFor?: RoutingObjective;
964
+ OptimizeRoutingFor?: RoutingObjective | undefined;
965
965
  /**
966
966
  * <p>The start position for the route.</p>
967
967
  * @public
968
968
  */
969
- Origin?: number[];
969
+ Origin?: number[] | undefined;
970
970
  /**
971
971
  * <p>Origin related options.</p>
972
972
  * @public
973
973
  */
974
- OriginOptions?: IsolineOriginOptions;
974
+ OriginOptions?: IsolineOriginOptions | undefined;
975
975
  /**
976
976
  * <p>Threshold to be used for the isoline calculation. Up to
977
977
  * 3 thresholds per provided type can be requested.</p>
@@ -982,7 +982,7 @@ export interface CalculateIsolinesRequest {
982
982
  * <p>Traffic related options.</p>
983
983
  * @public
984
984
  */
985
- Traffic?: IsolineTrafficOptions;
985
+ Traffic?: IsolineTrafficOptions | undefined;
986
986
  /**
987
987
  * <p>Specifies the mode of transport when calculating a route.
988
988
  * Used in estimating the speed of travel and road compatibility.</p>
@@ -993,12 +993,12 @@ export interface CalculateIsolinesRequest {
993
993
  * </p>
994
994
  * @public
995
995
  */
996
- TravelMode?: IsolineTravelMode;
996
+ TravelMode?: IsolineTravelMode | undefined;
997
997
  /**
998
998
  * <p>Travel mode related options for the provided travel mode.</p>
999
999
  * @public
1000
1000
  */
1001
- TravelModeOptions?: IsolineTravelModeOptions;
1001
+ TravelModeOptions?: IsolineTravelModeOptions | undefined;
1002
1002
  }
1003
1003
  /**
1004
1004
  * <p>Geometry of the connection between different Isoline components.</p>
@@ -1012,7 +1012,7 @@ export interface IsolineConnectionGeometry {
1012
1012
  * </note>
1013
1013
  * @public
1014
1014
  */
1015
- LineString?: number[][];
1015
+ LineString?: number[][] | undefined;
1016
1016
  /**
1017
1017
  * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p>
1018
1018
  * <note>
@@ -1020,7 +1020,7 @@ export interface IsolineConnectionGeometry {
1020
1020
  * </note>
1021
1021
  * @public
1022
1022
  */
1023
- Polyline?: string;
1023
+ Polyline?: string | undefined;
1024
1024
  }
1025
1025
  /**
1026
1026
  * <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>
@@ -1052,14 +1052,14 @@ export interface IsolineShapeGeometry {
1052
1052
  * <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>
1053
1053
  * @public
1054
1054
  */
1055
- Polygon?: number[][][];
1055
+ Polygon?: number[][][] | undefined;
1056
1056
  /**
1057
1057
  * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon
1058
1058
  * of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).
1059
1059
  * 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
1060
  * @public
1061
1061
  */
1062
- PolylinePolygon?: string[];
1062
+ PolylinePolygon?: string[] | undefined;
1063
1063
  }
1064
1064
  /**
1065
1065
  * <p>Calculated isolines and associated properties.</p>
@@ -1075,7 +1075,7 @@ export interface Isoline {
1075
1075
  * <p>Distance threshold corresponding to the calculated Isoline.</p>
1076
1076
  * @public
1077
1077
  */
1078
- DistanceThreshold?: number;
1078
+ DistanceThreshold?: number | undefined;
1079
1079
  /**
1080
1080
  * <p>Geometries for the Calculated isolines.</p>
1081
1081
  * @public
@@ -1085,7 +1085,7 @@ export interface Isoline {
1085
1085
  * <p>Time threshold corresponding to the calculated isoline.</p>
1086
1086
  * @public
1087
1087
  */
1088
- TimeThreshold?: number;
1088
+ TimeThreshold?: number | undefined;
1089
1089
  }
1090
1090
  /**
1091
1091
  * @public
@@ -1104,7 +1104,7 @@ export interface CalculateIsolinesResponse {
1104
1104
  * </p>
1105
1105
  * @public
1106
1106
  */
1107
- ArrivalTime?: string;
1107
+ ArrivalTime?: string | undefined;
1108
1108
  /**
1109
1109
  * <p>Time of departure from thr origin.</p>
1110
1110
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -1118,7 +1118,7 @@ export interface CalculateIsolinesResponse {
1118
1118
  * </p>
1119
1119
  * @public
1120
1120
  */
1121
- DepartureTime?: string;
1121
+ DepartureTime?: string | undefined;
1122
1122
  /**
1123
1123
  * <p>The format of the returned IsolineGeometry. </p>
1124
1124
  * <p>Default Value:<code>FlexiblePolyline</code>
@@ -1140,12 +1140,12 @@ export interface CalculateIsolinesResponse {
1140
1140
  * <p>Snapped destination that was used for the Isoline calculation.</p>
1141
1141
  * @public
1142
1142
  */
1143
- SnappedDestination?: number[];
1143
+ SnappedDestination?: number[] | undefined;
1144
1144
  /**
1145
1145
  * <p>Snapped origin that was used for the Isoline calculation.</p>
1146
1146
  * @public
1147
1147
  */
1148
- SnappedOrigin?: number[];
1148
+ SnappedOrigin?: number[] | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
@@ -1261,12 +1261,12 @@ export interface RouteMatrixAllowOptions {
1261
1261
  * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p>
1262
1262
  * @public
1263
1263
  */
1264
- Hot?: boolean;
1264
+ Hot?: boolean | undefined;
1265
1265
  /**
1266
1266
  * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p>
1267
1267
  * @public
1268
1268
  */
1269
- Hov?: boolean;
1269
+ Hov?: boolean | undefined;
1270
1270
  }
1271
1271
  /**
1272
1272
  * <p>Geometry of the area to be avoided.</p>
@@ -1279,19 +1279,19 @@ export interface RouteMatrixAvoidanceAreaGeometry {
1279
1279
  * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1280
1280
  * @public
1281
1281
  */
1282
- BoundingBox?: number[];
1282
+ BoundingBox?: number[] | undefined;
1283
1283
  /**
1284
1284
  * <p>Geometry defined as a polygon with only one linear ring.</p>
1285
1285
  * @public
1286
1286
  */
1287
- Polygon?: number[][][];
1287
+ Polygon?: number[][][] | undefined;
1288
1288
  /**
1289
1289
  * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains
1290
1290
  * PolylinePolygon of the first linear ring (the outer ring) and from second item to the last
1291
1291
  * 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>
1292
1292
  * @public
1293
1293
  */
1294
- PolylinePolygon?: string[];
1294
+ PolylinePolygon?: string[] | undefined;
1295
1295
  }
1296
1296
  /**
1297
1297
  * <p>Area to be avoided.</p>
@@ -1326,7 +1326,7 @@ export interface RouteMatrixAvoidanceZoneCategory {
1326
1326
  * <p>Zone category to be avoided.</p>
1327
1327
  * @public
1328
1328
  */
1329
- Category?: RouteMatrixZoneCategory;
1329
+ Category?: RouteMatrixZoneCategory | undefined;
1330
1330
  }
1331
1331
  /**
1332
1332
  * <p>Options related to the route matrix.</p>
@@ -1337,37 +1337,37 @@ export interface RouteMatrixAvoidanceOptions {
1337
1337
  * <p>Areas to be avoided.</p>
1338
1338
  * @public
1339
1339
  */
1340
- Areas?: RouteMatrixAvoidanceArea[];
1340
+ Areas?: RouteMatrixAvoidanceArea[] | undefined;
1341
1341
  /**
1342
1342
  * <p>Avoid car-shuttle-trains while calculating the route.</p>
1343
1343
  * @public
1344
1344
  */
1345
- CarShuttleTrains?: boolean;
1345
+ CarShuttleTrains?: boolean | undefined;
1346
1346
  /**
1347
1347
  * <p>Avoid controlled access highways while calculating the route.</p>
1348
1348
  * @public
1349
1349
  */
1350
- ControlledAccessHighways?: boolean;
1350
+ ControlledAccessHighways?: boolean | undefined;
1351
1351
  /**
1352
1352
  * <p>Avoid dirt roads while calculating the route.</p>
1353
1353
  * @public
1354
1354
  */
1355
- DirtRoads?: boolean;
1355
+ DirtRoads?: boolean | undefined;
1356
1356
  /**
1357
1357
  * <p>Avoid ferries while calculating the route.</p>
1358
1358
  * @public
1359
1359
  */
1360
- Ferries?: boolean;
1360
+ Ferries?: boolean | undefined;
1361
1361
  /**
1362
1362
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
1363
1363
  * @public
1364
1364
  */
1365
- TollRoads?: boolean;
1365
+ TollRoads?: boolean | undefined;
1366
1366
  /**
1367
1367
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
1368
1368
  * @public
1369
1369
  */
1370
- TollTransponders?: boolean;
1370
+ TollTransponders?: boolean | undefined;
1371
1371
  /**
1372
1372
  * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden.
1373
1373
  * <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
@@ -1376,22 +1376,22 @@ export interface RouteMatrixAvoidanceOptions {
1376
1376
  * </note>
1377
1377
  * @public
1378
1378
  */
1379
- TruckRoadTypes?: string[];
1379
+ TruckRoadTypes?: string[] | undefined;
1380
1380
  /**
1381
1381
  * <p>Avoid tunnels while calculating the route.</p>
1382
1382
  * @public
1383
1383
  */
1384
- Tunnels?: boolean;
1384
+ Tunnels?: boolean | undefined;
1385
1385
  /**
1386
1386
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
1387
1387
  * @public
1388
1388
  */
1389
- UTurns?: boolean;
1389
+ UTurns?: boolean | undefined;
1390
1390
  /**
1391
1391
  * <p>Zone categories to be avoided.</p>
1392
1392
  * @public
1393
1393
  */
1394
- ZoneCategories?: RouteMatrixAvoidanceZoneCategory[];
1394
+ ZoneCategories?: RouteMatrixAvoidanceZoneCategory[] | undefined;
1395
1395
  }
1396
1396
  /**
1397
1397
  * <p>Matching options.</p>
@@ -1402,7 +1402,7 @@ export interface RouteMatrixMatchingOptions {
1402
1402
  * <p>Attempts to match the provided position to a road similar to the provided name.</p>
1403
1403
  * @public
1404
1404
  */
1405
- NameHint?: string;
1405
+ NameHint?: string | undefined;
1406
1406
  /**
1407
1407
  * <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>
1408
1408
  * <p>
@@ -1410,7 +1410,7 @@ export interface RouteMatrixMatchingOptions {
1410
1410
  * </p>
1411
1411
  * @public
1412
1412
  */
1413
- OnRoadThreshold?: number;
1413
+ OnRoadThreshold?: number | undefined;
1414
1414
  /**
1415
1415
  * <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>
1416
1416
  * <p>
@@ -1418,12 +1418,12 @@ export interface RouteMatrixMatchingOptions {
1418
1418
  * </p>
1419
1419
  * @public
1420
1420
  */
1421
- Radius?: number;
1421
+ Radius?: number | undefined;
1422
1422
  /**
1423
1423
  * <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>
1424
1424
  * @public
1425
1425
  */
1426
- Strategy?: MatchingStrategy;
1426
+ Strategy?: MatchingStrategy | undefined;
1427
1427
  }
1428
1428
  /**
1429
1429
  * <p>Options to configure matching the provided position to a side of the street.</p>
@@ -1441,7 +1441,7 @@ export interface RouteMatrixSideOfStreetOptions {
1441
1441
  * </p>
1442
1442
  * @public
1443
1443
  */
1444
- UseWith?: SideOfStreetMatchingStrategy;
1444
+ UseWith?: SideOfStreetMatchingStrategy | undefined;
1445
1445
  }
1446
1446
  /**
1447
1447
  * <p>Options related to the destination.</p>
@@ -1452,22 +1452,22 @@ export interface RouteMatrixDestinationOptions {
1452
1452
  * <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>
1453
1453
  * @public
1454
1454
  */
1455
- AvoidActionsForDistance?: number;
1455
+ AvoidActionsForDistance?: number | undefined;
1456
1456
  /**
1457
1457
  * <p>GPS Heading at the position.</p>
1458
1458
  * @public
1459
1459
  */
1460
- Heading?: number;
1460
+ Heading?: number | undefined;
1461
1461
  /**
1462
1462
  * <p>Options to configure matching the provided position to the road network.</p>
1463
1463
  * @public
1464
1464
  */
1465
- Matching?: RouteMatrixMatchingOptions;
1465
+ Matching?: RouteMatrixMatchingOptions | undefined;
1466
1466
  /**
1467
1467
  * <p>Options to configure matching the provided position to a side of the street.</p>
1468
1468
  * @public
1469
1469
  */
1470
- SideOfStreet?: RouteMatrixSideOfStreetOptions;
1470
+ SideOfStreet?: RouteMatrixSideOfStreetOptions | undefined;
1471
1471
  }
1472
1472
  /**
1473
1473
  * <p>The route destination.</p>
@@ -1478,7 +1478,7 @@ export interface RouteMatrixDestination {
1478
1478
  * <p>Destination related options.</p>
1479
1479
  * @public
1480
1480
  */
1481
- Options?: RouteMatrixDestinationOptions;
1481
+ Options?: RouteMatrixDestinationOptions | undefined;
1482
1482
  /**
1483
1483
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
1484
1484
  * @public
@@ -1505,22 +1505,22 @@ export interface RouteMatrixOriginOptions {
1505
1505
  * <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>
1506
1506
  * @public
1507
1507
  */
1508
- AvoidActionsForDistance?: number;
1508
+ AvoidActionsForDistance?: number | undefined;
1509
1509
  /**
1510
1510
  * <p>GPS Heading at the position.</p>
1511
1511
  * @public
1512
1512
  */
1513
- Heading?: number;
1513
+ Heading?: number | undefined;
1514
1514
  /**
1515
1515
  * <p>Options to configure matching the provided position to the road network.</p>
1516
1516
  * @public
1517
1517
  */
1518
- Matching?: RouteMatrixMatchingOptions;
1518
+ Matching?: RouteMatrixMatchingOptions | undefined;
1519
1519
  /**
1520
1520
  * <p>Options to configure matching the provided position to a side of the street.</p>
1521
1521
  * @public
1522
1522
  */
1523
- SideOfStreet?: RouteMatrixSideOfStreetOptions;
1523
+ SideOfStreet?: RouteMatrixSideOfStreetOptions | undefined;
1524
1524
  }
1525
1525
  /**
1526
1526
  * <p>The start position for the route.</p>
@@ -1531,7 +1531,7 @@ export interface RouteMatrixOrigin {
1531
1531
  * <p>Origin related options.</p>
1532
1532
  * @public
1533
1533
  */
1534
- Options?: RouteMatrixOriginOptions;
1534
+ Options?: RouteMatrixOriginOptions | undefined;
1535
1535
  /**
1536
1536
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
1537
1537
  * @public
@@ -1547,12 +1547,12 @@ export interface RouteMatrixAutoCircle {
1547
1547
  * <p>The margin provided for the calculation.</p>
1548
1548
  * @public
1549
1549
  */
1550
- Margin?: number;
1550
+ Margin?: number | undefined;
1551
1551
  /**
1552
1552
  * <p>The maximum size of the radius provided for the calculation.</p>
1553
1553
  * @public
1554
1554
  */
1555
- MaxRadius?: number;
1555
+ MaxRadius?: number | undefined;
1556
1556
  }
1557
1557
  /**
1558
1558
  * <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>
@@ -1583,24 +1583,24 @@ export interface RouteMatrixBoundaryGeometry {
1583
1583
  * <p>Provides the circle that was used while calculating the route.</p>
1584
1584
  * @public
1585
1585
  */
1586
- AutoCircle?: RouteMatrixAutoCircle;
1586
+ AutoCircle?: RouteMatrixAutoCircle | undefined;
1587
1587
  /**
1588
1588
  * <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>
1589
1589
  * @public
1590
1590
  */
1591
- Circle?: Circle;
1591
+ Circle?: Circle | undefined;
1592
1592
  /**
1593
1593
  * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
1594
1594
  * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
1595
1595
  * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
1596
1596
  * @public
1597
1597
  */
1598
- BoundingBox?: number[];
1598
+ BoundingBox?: number[] | undefined;
1599
1599
  /**
1600
1600
  * <p>Geometry defined as a polygon with only one linear ring.</p>
1601
1601
  * @public
1602
1602
  */
1603
- Polygon?: number[][][];
1603
+ Polygon?: number[][][] | undefined;
1604
1604
  }
1605
1605
  /**
1606
1606
  * <p>Boundary within which the matrix is to be calculated. All data, origins and destinations outside the boundary are considered invalid.</p>
@@ -1611,12 +1611,12 @@ export interface RouteMatrixBoundary {
1611
1611
  * <p>Geometry of the area to be avoided.</p>
1612
1612
  * @public
1613
1613
  */
1614
- Geometry?: RouteMatrixBoundaryGeometry;
1614
+ Geometry?: RouteMatrixBoundaryGeometry | undefined;
1615
1615
  /**
1616
1616
  * <p>No restrictions in terms of a routing boundary, and is typically used for longer routes.</p>
1617
1617
  * @public
1618
1618
  */
1619
- Unbounded?: boolean;
1619
+ Unbounded?: boolean | undefined;
1620
1620
  }
1621
1621
  /**
1622
1622
  * <p>Traffic related options.</p>
@@ -1631,14 +1631,14 @@ export interface RouteMatrixTrafficOptions {
1631
1631
  * While flow traffic event is valid it will be used over the historical traffic data. </p>
1632
1632
  * @public
1633
1633
  */
1634
- FlowEventThresholdOverride?: number;
1634
+ FlowEventThresholdOverride?: number | undefined;
1635
1635
  /**
1636
1636
  * <p>Determines if traffic should be used or ignored while calculating the route.</p>
1637
1637
  * <p>Default Value: <code>UseTrafficData</code>
1638
1638
  * </p>
1639
1639
  * @public
1640
1640
  */
1641
- Usage?: TrafficUsage;
1641
+ Usage?: TrafficUsage | undefined;
1642
1642
  }
1643
1643
  /**
1644
1644
  * @public
@@ -1663,7 +1663,7 @@ export interface RouteMatrixVehicleLicensePlate {
1663
1663
  * <p>The last character of the License Plate.</p>
1664
1664
  * @public
1665
1665
  */
1666
- LastCharacter?: string;
1666
+ LastCharacter?: string | undefined;
1667
1667
  }
1668
1668
  /**
1669
1669
  * <p>Options related to the car.</p>
@@ -1674,7 +1674,7 @@ export interface RouteMatrixCarOptions {
1674
1674
  * <p>The vehicle License Plate.</p>
1675
1675
  * @public
1676
1676
  */
1677
- LicensePlate?: RouteMatrixVehicleLicensePlate;
1677
+ LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1678
1678
  /**
1679
1679
  * <p>Maximum speed</p>
1680
1680
  * <p>
@@ -1682,14 +1682,14 @@ export interface RouteMatrixCarOptions {
1682
1682
  * </p>
1683
1683
  * @public
1684
1684
  */
1685
- MaxSpeed?: number;
1685
+ MaxSpeed?: number | undefined;
1686
1686
  /**
1687
1687
  * <p>The number of occupants in the vehicle.</p>
1688
1688
  * <p>Default Value: <code>1</code>
1689
1689
  * </p>
1690
1690
  * @public
1691
1691
  */
1692
- Occupancy?: number;
1692
+ Occupancy?: number | undefined;
1693
1693
  }
1694
1694
  /**
1695
1695
  * <p>Travel mode options when the provided travel mode is "Scooter"</p>
@@ -1700,7 +1700,7 @@ export interface RouteMatrixScooterOptions {
1700
1700
  * <p>The vehicle License Plate.</p>
1701
1701
  * @public
1702
1702
  */
1703
- LicensePlate?: RouteMatrixVehicleLicensePlate;
1703
+ LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1704
1704
  /**
1705
1705
  * <p>Maximum speed.</p>
1706
1706
  * <p>
@@ -1708,14 +1708,14 @@ export interface RouteMatrixScooterOptions {
1708
1708
  * </p>
1709
1709
  * @public
1710
1710
  */
1711
- MaxSpeed?: number;
1711
+ MaxSpeed?: number | undefined;
1712
1712
  /**
1713
1713
  * <p>The number of occupants in the vehicle.</p>
1714
1714
  * <p>Default Value: <code>1</code>
1715
1715
  * </p>
1716
1716
  * @public
1717
1717
  */
1718
- Occupancy?: number;
1718
+ Occupancy?: number | undefined;
1719
1719
  }
1720
1720
  /**
1721
1721
  * @public
@@ -1749,7 +1749,7 @@ export interface RouteMatrixTrailerOptions {
1749
1749
  * </p>
1750
1750
  * @public
1751
1751
  */
1752
- TrailerCount?: number;
1752
+ TrailerCount?: number | undefined;
1753
1753
  }
1754
1754
  /**
1755
1755
  * @public
@@ -1773,7 +1773,7 @@ export interface RouteMatrixTruckOptions {
1773
1773
  * <p>Total number of axles of the vehicle.</p>
1774
1774
  * @public
1775
1775
  */
1776
- AxleCount?: number;
1776
+ AxleCount?: number | undefined;
1777
1777
  /**
1778
1778
  * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
1779
1779
  * <p>
@@ -1781,12 +1781,12 @@ export interface RouteMatrixTruckOptions {
1781
1781
  * </p>
1782
1782
  * @public
1783
1783
  */
1784
- GrossWeight?: number;
1784
+ GrossWeight?: number | undefined;
1785
1785
  /**
1786
1786
  * <p>List of Hazardous cargo contained in the vehicle.</p>
1787
1787
  * @public
1788
1788
  */
1789
- HazardousCargos?: RouteMatrixHazardousCargoType[];
1789
+ HazardousCargos?: RouteMatrixHazardousCargoType[] | undefined;
1790
1790
  /**
1791
1791
  * <p>Height of the vehicle.</p>
1792
1792
  * <p>
@@ -1794,7 +1794,7 @@ export interface RouteMatrixTruckOptions {
1794
1794
  * </p>
1795
1795
  * @public
1796
1796
  */
1797
- Height?: number;
1797
+ Height?: number | undefined;
1798
1798
  /**
1799
1799
  * <p>Kingpin to rear axle length of the vehicle</p>
1800
1800
  * <p>
@@ -1802,7 +1802,7 @@ export interface RouteMatrixTruckOptions {
1802
1802
  * </p>
1803
1803
  * @public
1804
1804
  */
1805
- KpraLength?: number;
1805
+ KpraLength?: number | undefined;
1806
1806
  /**
1807
1807
  * <p>Length of the vehicle.</p>
1808
1808
  * <p>
@@ -1810,12 +1810,12 @@ export interface RouteMatrixTruckOptions {
1810
1810
  * </p>
1811
1811
  * @public
1812
1812
  */
1813
- Length?: number;
1813
+ Length?: number | undefined;
1814
1814
  /**
1815
1815
  * <p>The vehicle License Plate.</p>
1816
1816
  * @public
1817
1817
  */
1818
- LicensePlate?: RouteMatrixVehicleLicensePlate;
1818
+ LicensePlate?: RouteMatrixVehicleLicensePlate | undefined;
1819
1819
  /**
1820
1820
  * <p>Maximum speed</p>
1821
1821
  * <p>
@@ -1823,14 +1823,14 @@ export interface RouteMatrixTruckOptions {
1823
1823
  * </p>
1824
1824
  * @public
1825
1825
  */
1826
- MaxSpeed?: number;
1826
+ MaxSpeed?: number | undefined;
1827
1827
  /**
1828
1828
  * <p>The number of occupants in the vehicle.</p>
1829
1829
  * <p>Default Value: <code>1</code>
1830
1830
  * </p>
1831
1831
  * @public
1832
1832
  */
1833
- Occupancy?: number;
1833
+ Occupancy?: number | undefined;
1834
1834
  /**
1835
1835
  * <p>Payload capacity of the vehicle and trailers attached.</p>
1836
1836
  * <p>
@@ -1838,17 +1838,17 @@ export interface RouteMatrixTruckOptions {
1838
1838
  * </p>
1839
1839
  * @public
1840
1840
  */
1841
- PayloadCapacity?: number;
1841
+ PayloadCapacity?: number | undefined;
1842
1842
  /**
1843
1843
  * <p>Trailer options corresponding to the vehicle.</p>
1844
1844
  * @public
1845
1845
  */
1846
- Trailer?: RouteMatrixTrailerOptions;
1846
+ Trailer?: RouteMatrixTrailerOptions | undefined;
1847
1847
  /**
1848
1848
  * <p>Type of the truck.</p>
1849
1849
  * @public
1850
1850
  */
1851
- TruckType?: RouteMatrixTruckType;
1851
+ TruckType?: RouteMatrixTruckType | undefined;
1852
1852
  /**
1853
1853
  * <p>The tunnel restriction code.</p>
1854
1854
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -1917,7 +1917,7 @@ export interface RouteMatrixTruckOptions {
1917
1917
  * </ul>
1918
1918
  * @public
1919
1919
  */
1920
- TunnelRestrictionCode?: string;
1920
+ TunnelRestrictionCode?: string | undefined;
1921
1921
  /**
1922
1922
  * <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>
1923
1923
  * <p>
@@ -1925,12 +1925,12 @@ export interface RouteMatrixTruckOptions {
1925
1925
  * </p>
1926
1926
  * @public
1927
1927
  */
1928
- WeightPerAxle?: number;
1928
+ WeightPerAxle?: number | undefined;
1929
1929
  /**
1930
1930
  * <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>
1931
1931
  * @public
1932
1932
  */
1933
- WeightPerAxleGroup?: WeightPerAxleGroup;
1933
+ WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
1934
1934
  /**
1935
1935
  * <p>Width of the vehicle.</p>
1936
1936
  * <p>
@@ -1938,7 +1938,7 @@ export interface RouteMatrixTruckOptions {
1938
1938
  * </p>
1939
1939
  * @public
1940
1940
  */
1941
- Width?: number;
1941
+ Width?: number | undefined;
1942
1942
  }
1943
1943
  /**
1944
1944
  * <p>Travel mode related options for the provided travel mode.</p>
@@ -1949,17 +1949,17 @@ export interface RouteMatrixTravelModeOptions {
1949
1949
  * <p>Travel mode options when the provided travel mode is "Car"</p>
1950
1950
  * @public
1951
1951
  */
1952
- Car?: RouteMatrixCarOptions;
1952
+ Car?: RouteMatrixCarOptions | undefined;
1953
1953
  /**
1954
1954
  * <p>Travel mode options when the provided travel mode is "Scooter"</p>
1955
1955
  * @public
1956
1956
  */
1957
- Scooter?: RouteMatrixScooterOptions;
1957
+ Scooter?: RouteMatrixScooterOptions | undefined;
1958
1958
  /**
1959
1959
  * <p>Travel mode options when the provided travel mode is "Truck"</p>
1960
1960
  * @public
1961
1961
  */
1962
- Truck?: RouteMatrixTruckOptions;
1962
+ Truck?: RouteMatrixTruckOptions | undefined;
1963
1963
  }
1964
1964
  /**
1965
1965
  * @public
@@ -1969,19 +1969,19 @@ export interface CalculateRouteMatrixRequest {
1969
1969
  * <p>Features that are allowed while calculating. a route</p>
1970
1970
  * @public
1971
1971
  */
1972
- Allow?: RouteMatrixAllowOptions;
1972
+ Allow?: RouteMatrixAllowOptions | undefined;
1973
1973
  /**
1974
1974
  * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an
1975
1975
  * avoidance can't be satisfied for a particular case, it violates the avoidance and the
1976
1976
  * returned response produces a notice for the violation.</p>
1977
1977
  * @public
1978
1978
  */
1979
- Avoid?: RouteMatrixAvoidanceOptions;
1979
+ Avoid?: RouteMatrixAvoidanceOptions | undefined;
1980
1980
  /**
1981
1981
  * <p>Uses the current time as the time of departure.</p>
1982
1982
  * @public
1983
1983
  */
1984
- DepartNow?: boolean;
1984
+ DepartNow?: boolean | undefined;
1985
1985
  /**
1986
1986
  * <p>Time of departure from thr origin.</p>
1987
1987
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -1995,7 +1995,7 @@ export interface CalculateRouteMatrixRequest {
1995
1995
  * </p>
1996
1996
  * @public
1997
1997
  */
1998
- DepartureTime?: string;
1998
+ DepartureTime?: string | undefined;
1999
1999
  /**
2000
2000
  * <p>List of destinations for the route.</p>
2001
2001
  * @public
@@ -2005,20 +2005,20 @@ export interface CalculateRouteMatrixRequest {
2005
2005
  * <p>Features to be strictly excluded while calculating the route.</p>
2006
2006
  * @public
2007
2007
  */
2008
- Exclude?: RouteMatrixExclusionOptions;
2008
+ Exclude?: RouteMatrixExclusionOptions | undefined;
2009
2009
  /**
2010
2010
  * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
2011
2011
  * signature must be provided when making a request. </p>
2012
2012
  * @public
2013
2013
  */
2014
- Key?: string;
2014
+ Key?: string | undefined;
2015
2015
  /**
2016
2016
  * <p>Specifies the optimization criteria for calculating a route.</p>
2017
2017
  * <p>Default Value: <code>FastestRoute</code>
2018
2018
  * </p>
2019
2019
  * @public
2020
2020
  */
2021
- OptimizeRoutingFor?: RoutingObjective;
2021
+ OptimizeRoutingFor?: RoutingObjective | undefined;
2022
2022
  /**
2023
2023
  * <p>The position in longitude and latitude for the origin.</p>
2024
2024
  * @public
@@ -2037,7 +2037,7 @@ export interface CalculateRouteMatrixRequest {
2037
2037
  * <p>Traffic related options.</p>
2038
2038
  * @public
2039
2039
  */
2040
- Traffic?: RouteMatrixTrafficOptions;
2040
+ Traffic?: RouteMatrixTrafficOptions | undefined;
2041
2041
  /**
2042
2042
  * <p>Specifies the mode of transport when calculating a route.
2043
2043
  * Used in estimating the speed of travel and road compatibility.</p>
@@ -2045,12 +2045,12 @@ export interface CalculateRouteMatrixRequest {
2045
2045
  * </p>
2046
2046
  * @public
2047
2047
  */
2048
- TravelMode?: RouteMatrixTravelMode;
2048
+ TravelMode?: RouteMatrixTravelMode | undefined;
2049
2049
  /**
2050
2050
  * <p>Travel mode related options for the provided travel mode.</p>
2051
2051
  * @public
2052
2052
  */
2053
- TravelModeOptions?: RouteMatrixTravelModeOptions;
2053
+ TravelModeOptions?: RouteMatrixTravelModeOptions | undefined;
2054
2054
  }
2055
2055
  /**
2056
2056
  * @public
@@ -2093,7 +2093,7 @@ export interface RouteMatrixEntry {
2093
2093
  * <p>Error code that occurred during calculation of the route.</p>
2094
2094
  * @public
2095
2095
  */
2096
- Error?: RouteMatrixErrorCode;
2096
+ Error?: RouteMatrixErrorCode | undefined;
2097
2097
  }
2098
2098
  /**
2099
2099
  * @public
@@ -2132,12 +2132,12 @@ export interface RouteAllowOptions {
2132
2132
  * <p>Allow Hot (High Occupancy Toll) lanes while calculating the route.</p>
2133
2133
  * @public
2134
2134
  */
2135
- Hot?: boolean;
2135
+ Hot?: boolean | undefined;
2136
2136
  /**
2137
2137
  * <p>Allow Hov (High Occupancy vehicle) lanes while calculating the route.</p>
2138
2138
  * @public
2139
2139
  */
2140
- Hov?: boolean;
2140
+ Hov?: boolean | undefined;
2141
2141
  }
2142
2142
  /**
2143
2143
  * <p>Geometry of the area to be avoided.</p>
@@ -2148,32 +2148,32 @@ export interface RouteAvoidanceAreaGeometry {
2148
2148
  * <p>Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.</p>
2149
2149
  * @public
2150
2150
  */
2151
- Corridor?: Corridor;
2151
+ Corridor?: Corridor | undefined;
2152
2152
  /**
2153
2153
  * <p>Geometry defined as a bounding box. The first pair represents the X and Y coordinates
2154
2154
  * (longitude and latitude,) of the southwest corner of the bounding box; the second pair
2155
2155
  * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
2156
2156
  * @public
2157
2157
  */
2158
- BoundingBox?: number[];
2158
+ BoundingBox?: number[] | undefined;
2159
2159
  /**
2160
2160
  * <p>Geometry defined as a polygon with only one linear ring.</p>
2161
2161
  * @public
2162
2162
  */
2163
- Polygon?: number[][][];
2163
+ Polygon?: number[][][] | undefined;
2164
2164
  /**
2165
2165
  * <p>Geometry defined as an encoded corridor - an encoded polyline with a radius that defines
2166
2166
  * the width of the corridor.</p>
2167
2167
  * @public
2168
2168
  */
2169
- PolylineCorridor?: PolylineCorridor;
2169
+ PolylineCorridor?: PolylineCorridor | undefined;
2170
2170
  /**
2171
2171
  * <p>A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon
2172
2172
  * of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).
2173
2173
  * 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>
2174
2174
  * @public
2175
2175
  */
2176
- PolylinePolygon?: string[];
2176
+ PolylinePolygon?: string[] | undefined;
2177
2177
  }
2178
2178
  /**
2179
2179
  * <p>Areas to be avoided.</p>
@@ -2184,7 +2184,7 @@ export interface RouteAvoidanceArea {
2184
2184
  * <p>Exceptions to the provided avoidance geometry, to be included while calculating the route.</p>
2185
2185
  * @public
2186
2186
  */
2187
- Except?: RouteAvoidanceAreaGeometry[];
2187
+ Except?: RouteAvoidanceAreaGeometry[] | undefined;
2188
2188
  /**
2189
2189
  * <p>Geometry of the area to be avoided.</p>
2190
2190
  * @public
@@ -2224,42 +2224,42 @@ export interface RouteAvoidanceOptions {
2224
2224
  * <p>Areas to be avoided.</p>
2225
2225
  * @public
2226
2226
  */
2227
- Areas?: RouteAvoidanceArea[];
2227
+ Areas?: RouteAvoidanceArea[] | undefined;
2228
2228
  /**
2229
2229
  * <p>Avoid car-shuttle-trains while calculating the route.</p>
2230
2230
  * @public
2231
2231
  */
2232
- CarShuttleTrains?: boolean;
2232
+ CarShuttleTrains?: boolean | undefined;
2233
2233
  /**
2234
2234
  * <p>Avoid controlled access highways while calculating the route.</p>
2235
2235
  * @public
2236
2236
  */
2237
- ControlledAccessHighways?: boolean;
2237
+ ControlledAccessHighways?: boolean | undefined;
2238
2238
  /**
2239
2239
  * <p>Avoid dirt roads while calculating the route.</p>
2240
2240
  * @public
2241
2241
  */
2242
- DirtRoads?: boolean;
2242
+ DirtRoads?: boolean | undefined;
2243
2243
  /**
2244
2244
  * <p>Avoid ferries while calculating the route.</p>
2245
2245
  * @public
2246
2246
  */
2247
- Ferries?: boolean;
2247
+ Ferries?: boolean | undefined;
2248
2248
  /**
2249
2249
  * <p>Avoid roads that have seasonal closure while calculating the route.</p>
2250
2250
  * @public
2251
2251
  */
2252
- SeasonalClosure?: boolean;
2252
+ SeasonalClosure?: boolean | undefined;
2253
2253
  /**
2254
2254
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
2255
2255
  * @public
2256
2256
  */
2257
- TollRoads?: boolean;
2257
+ TollRoads?: boolean | undefined;
2258
2258
  /**
2259
2259
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
2260
2260
  * @public
2261
2261
  */
2262
- TollTransponders?: boolean;
2262
+ TollTransponders?: boolean | undefined;
2263
2263
  /**
2264
2264
  * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden.
2265
2265
  * <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
@@ -2268,22 +2268,22 @@ export interface RouteAvoidanceOptions {
2268
2268
  * </note>
2269
2269
  * @public
2270
2270
  */
2271
- TruckRoadTypes?: string[];
2271
+ TruckRoadTypes?: string[] | undefined;
2272
2272
  /**
2273
2273
  * <p>Avoid tunnels while calculating the route.</p>
2274
2274
  * @public
2275
2275
  */
2276
- Tunnels?: boolean;
2276
+ Tunnels?: boolean | undefined;
2277
2277
  /**
2278
2278
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
2279
2279
  * @public
2280
2280
  */
2281
- UTurns?: boolean;
2281
+ UTurns?: boolean | undefined;
2282
2282
  /**
2283
2283
  * <p>Zone categories to be avoided.</p>
2284
2284
  * @public
2285
2285
  */
2286
- ZoneCategories?: RouteAvoidanceZoneCategory[];
2286
+ ZoneCategories?: RouteAvoidanceZoneCategory[] | undefined;
2287
2287
  }
2288
2288
  /**
2289
2289
  * <p>Options related to route matching.</p>
@@ -2294,7 +2294,7 @@ export interface RouteMatchingOptions {
2294
2294
  * <p>Attempts to match the provided position to a road similar to the provided name.</p>
2295
2295
  * @public
2296
2296
  */
2297
- NameHint?: string;
2297
+ NameHint?: string | undefined;
2298
2298
  /**
2299
2299
  * <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>
2300
2300
  * <p>
@@ -2302,7 +2302,7 @@ export interface RouteMatchingOptions {
2302
2302
  * </p>
2303
2303
  * @public
2304
2304
  */
2305
- OnRoadThreshold?: number;
2305
+ OnRoadThreshold?: number | undefined;
2306
2306
  /**
2307
2307
  * <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>
2308
2308
  * <p>
@@ -2310,12 +2310,12 @@ export interface RouteMatchingOptions {
2310
2310
  * </p>
2311
2311
  * @public
2312
2312
  */
2313
- Radius?: number;
2313
+ Radius?: number | undefined;
2314
2314
  /**
2315
2315
  * <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>
2316
2316
  * @public
2317
2317
  */
2318
- Strategy?: MatchingStrategy;
2318
+ Strategy?: MatchingStrategy | undefined;
2319
2319
  }
2320
2320
  /**
2321
2321
  * <p>Options to configure matching the provided position to a side of the street.</p>
@@ -2333,7 +2333,7 @@ export interface RouteSideOfStreetOptions {
2333
2333
  * </p>
2334
2334
  * @public
2335
2335
  */
2336
- UseWith?: SideOfStreetMatchingStrategy;
2336
+ UseWith?: SideOfStreetMatchingStrategy | undefined;
2337
2337
  }
2338
2338
  /**
2339
2339
  * <p>Options related to the destination.</p>
@@ -2344,27 +2344,27 @@ export interface RouteDestinationOptions {
2344
2344
  * <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>
2345
2345
  * @public
2346
2346
  */
2347
- AvoidActionsForDistance?: number;
2347
+ AvoidActionsForDistance?: number | undefined;
2348
2348
  /**
2349
2349
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
2350
2350
  * @public
2351
2351
  */
2352
- AvoidUTurns?: boolean;
2352
+ AvoidUTurns?: boolean | undefined;
2353
2353
  /**
2354
2354
  * <p>GPS Heading at the position.</p>
2355
2355
  * @public
2356
2356
  */
2357
- Heading?: number;
2357
+ Heading?: number | undefined;
2358
2358
  /**
2359
2359
  * <p>Options to configure matching the provided position to the road network.</p>
2360
2360
  * @public
2361
2361
  */
2362
- Matching?: RouteMatchingOptions;
2362
+ Matching?: RouteMatchingOptions | undefined;
2363
2363
  /**
2364
2364
  * <p>Options to configure matching the provided position to a side of the street.</p>
2365
2365
  * @public
2366
2366
  */
2367
- SideOfStreet?: RouteSideOfStreetOptions;
2367
+ SideOfStreet?: RouteSideOfStreetOptions | undefined;
2368
2368
  /**
2369
2369
  * <p>Duration of the stop.</p>
2370
2370
  * <p>
@@ -2372,7 +2372,7 @@ export interface RouteDestinationOptions {
2372
2372
  * </p>
2373
2373
  * @public
2374
2374
  */
2375
- StopDuration?: number;
2375
+ StopDuration?: number | undefined;
2376
2376
  }
2377
2377
  /**
2378
2378
  * <p>Interval of the driver work-rest schedule.
@@ -2406,7 +2406,7 @@ export interface RouteDriverOptions {
2406
2406
  * <p>Driver work-rest schedule. Stops are added to fulfil the provided rest schedule.</p>
2407
2407
  * @public
2408
2408
  */
2409
- Schedule?: RouteDriverScheduleInterval[];
2409
+ Schedule?: RouteDriverScheduleInterval[] | undefined;
2410
2410
  }
2411
2411
  /**
2412
2412
  * <p>Exclusion options for the route.</p>
@@ -2459,27 +2459,27 @@ export interface RouteOriginOptions {
2459
2459
  * <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>
2460
2460
  * @public
2461
2461
  */
2462
- AvoidActionsForDistance?: number;
2462
+ AvoidActionsForDistance?: number | undefined;
2463
2463
  /**
2464
2464
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
2465
2465
  * @public
2466
2466
  */
2467
- AvoidUTurns?: boolean;
2467
+ AvoidUTurns?: boolean | undefined;
2468
2468
  /**
2469
2469
  * <p>GPS Heading at the position.</p>
2470
2470
  * @public
2471
2471
  */
2472
- Heading?: number;
2472
+ Heading?: number | undefined;
2473
2473
  /**
2474
2474
  * <p>Options to configure matching the provided position to the road network.</p>
2475
2475
  * @public
2476
2476
  */
2477
- Matching?: RouteMatchingOptions;
2477
+ Matching?: RouteMatchingOptions | undefined;
2478
2478
  /**
2479
2479
  * <p>Options to configure matching the provided position to a side of the street.</p>
2480
2480
  * @public
2481
2481
  */
2482
- SideOfStreet?: RouteSideOfStreetOptions;
2482
+ SideOfStreet?: RouteSideOfStreetOptions | undefined;
2483
2483
  }
2484
2484
  /**
2485
2485
  * @public
@@ -2527,7 +2527,7 @@ export interface RouteEmissionType {
2527
2527
  * <p>The CO 2 emission classes.</p>
2528
2528
  * @public
2529
2529
  */
2530
- Co2EmissionClass?: string;
2530
+ Co2EmissionClass?: string | undefined;
2531
2531
  /**
2532
2532
  * <p>Type of the emission.</p>
2533
2533
  * <p>
@@ -2558,17 +2558,17 @@ export interface RouteTollOptions {
2558
2558
  * impacts toll calculation, and if true the price with transponders is used.</p>
2559
2559
  * @public
2560
2560
  */
2561
- AllTransponders?: boolean;
2561
+ AllTransponders?: boolean | undefined;
2562
2562
  /**
2563
2563
  * <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>
2564
2564
  * @public
2565
2565
  */
2566
- AllVignettes?: boolean;
2566
+ AllVignettes?: boolean | undefined;
2567
2567
  /**
2568
2568
  * <p>Currency code corresponding to the price. This is the same as Currency specified in the request.</p>
2569
2569
  * @public
2570
2570
  */
2571
- Currency?: string;
2571
+ Currency?: string | undefined;
2572
2572
  /**
2573
2573
  * <p>Emission type of the vehicle for toll cost calculation.</p>
2574
2574
  * <p>
@@ -2576,12 +2576,12 @@ export interface RouteTollOptions {
2576
2576
  * </p>
2577
2577
  * @public
2578
2578
  */
2579
- EmissionType?: RouteEmissionType;
2579
+ EmissionType?: RouteEmissionType | undefined;
2580
2580
  /**
2581
2581
  * <p>Vehicle category for toll cost calculation.</p>
2582
2582
  * @public
2583
2583
  */
2584
- VehicleCategory?: RouteTollVehicleCategory;
2584
+ VehicleCategory?: RouteTollVehicleCategory | undefined;
2585
2585
  }
2586
2586
  /**
2587
2587
  * <p>Traffic options for the route.</p>
@@ -2597,14 +2597,14 @@ export interface RouteTrafficOptions {
2597
2597
  * While flow traffic event is valid it will be used over the historical traffic data. </p>
2598
2598
  * @public
2599
2599
  */
2600
- FlowEventThresholdOverride?: number;
2600
+ FlowEventThresholdOverride?: number | undefined;
2601
2601
  /**
2602
2602
  * <p>Determines if traffic should be used or ignored while calculating the route.</p>
2603
2603
  * <p>Default Value: <code>UseTrafficData</code>
2604
2604
  * </p>
2605
2605
  * @public
2606
2606
  */
2607
- Usage?: TrafficUsage;
2607
+ Usage?: TrafficUsage | undefined;
2608
2608
  }
2609
2609
  /**
2610
2610
  * @public
@@ -2643,7 +2643,7 @@ export interface RouteVehicleLicensePlate {
2643
2643
  * <p>The last character of the License Plate.</p>
2644
2644
  * @public
2645
2645
  */
2646
- LastCharacter?: string;
2646
+ LastCharacter?: string | undefined;
2647
2647
  }
2648
2648
  /**
2649
2649
  * <p>Travel mode options when the provided travel mode is "Car"</p>
@@ -2654,12 +2654,12 @@ export interface RouteCarOptions {
2654
2654
  * <p>Engine type of the vehicle.</p>
2655
2655
  * @public
2656
2656
  */
2657
- EngineType?: RouteEngineType;
2657
+ EngineType?: RouteEngineType | undefined;
2658
2658
  /**
2659
2659
  * <p>The vehicle License Plate.</p>
2660
2660
  * @public
2661
2661
  */
2662
- LicensePlate?: RouteVehicleLicensePlate;
2662
+ LicensePlate?: RouteVehicleLicensePlate | undefined;
2663
2663
  /**
2664
2664
  * <p>Maximum speed specified.</p>
2665
2665
  * <p>
@@ -2667,14 +2667,14 @@ export interface RouteCarOptions {
2667
2667
  * </p>
2668
2668
  * @public
2669
2669
  */
2670
- MaxSpeed?: number;
2670
+ MaxSpeed?: number | undefined;
2671
2671
  /**
2672
2672
  * <p>The number of occupants in the vehicle.</p>
2673
2673
  * <p>Default Value: <code>1</code>
2674
2674
  * </p>
2675
2675
  * @public
2676
2676
  */
2677
- Occupancy?: number;
2677
+ Occupancy?: number | undefined;
2678
2678
  }
2679
2679
  /**
2680
2680
  * <p>Options related to the pedestrian.</p>
@@ -2685,7 +2685,7 @@ export interface RoutePedestrianOptions {
2685
2685
  * <p>Walking speed in Kilometers per hour.</p>
2686
2686
  * @public
2687
2687
  */
2688
- Speed?: number;
2688
+ Speed?: number | undefined;
2689
2689
  }
2690
2690
  /**
2691
2691
  * <p>Travel mode options when the provided travel mode is "Scooter"</p>
@@ -2696,12 +2696,12 @@ export interface RouteScooterOptions {
2696
2696
  * <p>Engine type of the vehicle.</p>
2697
2697
  * @public
2698
2698
  */
2699
- EngineType?: RouteEngineType;
2699
+ EngineType?: RouteEngineType | undefined;
2700
2700
  /**
2701
2701
  * <p>The vehicle License Plate.</p>
2702
2702
  * @public
2703
2703
  */
2704
- LicensePlate?: RouteVehicleLicensePlate;
2704
+ LicensePlate?: RouteVehicleLicensePlate | undefined;
2705
2705
  /**
2706
2706
  * <p>Maximum speed</p>
2707
2707
  * <p>
@@ -2709,14 +2709,14 @@ export interface RouteScooterOptions {
2709
2709
  * </p>
2710
2710
  * @public
2711
2711
  */
2712
- MaxSpeed?: number;
2712
+ MaxSpeed?: number | undefined;
2713
2713
  /**
2714
2714
  * <p>The number of occupants in the vehicle.</p>
2715
2715
  * <p>Default Value: <code>1</code>
2716
2716
  * </p>
2717
2717
  * @public
2718
2718
  */
2719
- Occupancy?: number;
2719
+ Occupancy?: number | undefined;
2720
2720
  }
2721
2721
  /**
2722
2722
  * @public
@@ -2748,14 +2748,14 @@ export interface RouteTrailerOptions {
2748
2748
  * <p>Total number of axles of the vehicle.</p>
2749
2749
  * @public
2750
2750
  */
2751
- AxleCount?: number;
2751
+ AxleCount?: number | undefined;
2752
2752
  /**
2753
2753
  * <p>Number of trailers attached to the vehicle.</p>
2754
2754
  * <p>Default Value: <code>0</code>
2755
2755
  * </p>
2756
2756
  * @public
2757
2757
  */
2758
- TrailerCount?: number;
2758
+ TrailerCount?: number | undefined;
2759
2759
  }
2760
2760
  /**
2761
2761
  * @public
@@ -2779,12 +2779,12 @@ export interface RouteTruckOptions {
2779
2779
  * <p>Total number of axles of the vehicle.</p>
2780
2780
  * @public
2781
2781
  */
2782
- AxleCount?: number;
2782
+ AxleCount?: number | undefined;
2783
2783
  /**
2784
2784
  * <p>Engine type of the vehicle.</p>
2785
2785
  * @public
2786
2786
  */
2787
- EngineType?: RouteEngineType;
2787
+ EngineType?: RouteEngineType | undefined;
2788
2788
  /**
2789
2789
  * <p>Gross weight of the vehicle including trailers, and goods at capacity.</p>
2790
2790
  * <p>
@@ -2792,12 +2792,12 @@ export interface RouteTruckOptions {
2792
2792
  * </p>
2793
2793
  * @public
2794
2794
  */
2795
- GrossWeight?: number;
2795
+ GrossWeight?: number | undefined;
2796
2796
  /**
2797
2797
  * <p>List of Hazardous cargo contained in the vehicle.</p>
2798
2798
  * @public
2799
2799
  */
2800
- HazardousCargos?: RouteHazardousCargoType[];
2800
+ HazardousCargos?: RouteHazardousCargoType[] | undefined;
2801
2801
  /**
2802
2802
  * <p>Height of the vehicle.</p>
2803
2803
  * <p>
@@ -2805,7 +2805,7 @@ export interface RouteTruckOptions {
2805
2805
  * </p>
2806
2806
  * @public
2807
2807
  */
2808
- Height?: number;
2808
+ Height?: number | undefined;
2809
2809
  /**
2810
2810
  * <p>Height of the vehicle above its first axle.</p>
2811
2811
  * <p>
@@ -2813,7 +2813,7 @@ export interface RouteTruckOptions {
2813
2813
  * </p>
2814
2814
  * @public
2815
2815
  */
2816
- HeightAboveFirstAxle?: number;
2816
+ HeightAboveFirstAxle?: number | undefined;
2817
2817
  /**
2818
2818
  * <p>Kingpin to rear axle length of the vehicle.</p>
2819
2819
  * <p>
@@ -2821,7 +2821,7 @@ export interface RouteTruckOptions {
2821
2821
  * </p>
2822
2822
  * @public
2823
2823
  */
2824
- KpraLength?: number;
2824
+ KpraLength?: number | undefined;
2825
2825
  /**
2826
2826
  * <p>Length of the vehicle.</p>
2827
2827
  * <p>
@@ -2829,12 +2829,12 @@ export interface RouteTruckOptions {
2829
2829
  * </p>
2830
2830
  * @public
2831
2831
  */
2832
- Length?: number;
2832
+ Length?: number | undefined;
2833
2833
  /**
2834
2834
  * <p>The vehicle License Plate.</p>
2835
2835
  * @public
2836
2836
  */
2837
- LicensePlate?: RouteVehicleLicensePlate;
2837
+ LicensePlate?: RouteVehicleLicensePlate | undefined;
2838
2838
  /**
2839
2839
  * <p>Maximum speed</p>
2840
2840
  * <p>
@@ -2842,14 +2842,14 @@ export interface RouteTruckOptions {
2842
2842
  * </p>
2843
2843
  * @public
2844
2844
  */
2845
- MaxSpeed?: number;
2845
+ MaxSpeed?: number | undefined;
2846
2846
  /**
2847
2847
  * <p>The number of occupants in the vehicle.</p>
2848
2848
  * <p>Default Value: <code>1</code>
2849
2849
  * </p>
2850
2850
  * @public
2851
2851
  */
2852
- Occupancy?: number;
2852
+ Occupancy?: number | undefined;
2853
2853
  /**
2854
2854
  * <p>Payload capacity of the vehicle and trailers attached.</p>
2855
2855
  * <p>
@@ -2857,22 +2857,22 @@ export interface RouteTruckOptions {
2857
2857
  * </p>
2858
2858
  * @public
2859
2859
  */
2860
- PayloadCapacity?: number;
2860
+ PayloadCapacity?: number | undefined;
2861
2861
  /**
2862
2862
  * <p>Number of tires on the vehicle.</p>
2863
2863
  * @public
2864
2864
  */
2865
- TireCount?: number;
2865
+ TireCount?: number | undefined;
2866
2866
  /**
2867
2867
  * <p>Trailer options corresponding to the vehicle.</p>
2868
2868
  * @public
2869
2869
  */
2870
- Trailer?: RouteTrailerOptions;
2870
+ Trailer?: RouteTrailerOptions | undefined;
2871
2871
  /**
2872
2872
  * <p>Type of the truck.</p>
2873
2873
  * @public
2874
2874
  */
2875
- TruckType?: RouteTruckType;
2875
+ TruckType?: RouteTruckType | undefined;
2876
2876
  /**
2877
2877
  * <p>The tunnel restriction code.</p>
2878
2878
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -2941,7 +2941,7 @@ export interface RouteTruckOptions {
2941
2941
  * </ul>
2942
2942
  * @public
2943
2943
  */
2944
- TunnelRestrictionCode?: string;
2944
+ TunnelRestrictionCode?: string | undefined;
2945
2945
  /**
2946
2946
  * <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>
2947
2947
  * <p>
@@ -2949,7 +2949,7 @@ export interface RouteTruckOptions {
2949
2949
  * </p>
2950
2950
  * @public
2951
2951
  */
2952
- WeightPerAxle?: number;
2952
+ WeightPerAxle?: number | undefined;
2953
2953
  /**
2954
2954
  * <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>
2955
2955
  * <p>
@@ -2957,7 +2957,7 @@ export interface RouteTruckOptions {
2957
2957
  * </p>
2958
2958
  * @public
2959
2959
  */
2960
- WeightPerAxleGroup?: WeightPerAxleGroup;
2960
+ WeightPerAxleGroup?: WeightPerAxleGroup | undefined;
2961
2961
  /**
2962
2962
  * <p>Width of the vehicle.</p>
2963
2963
  * <p>
@@ -2965,7 +2965,7 @@ export interface RouteTruckOptions {
2965
2965
  * </p>
2966
2966
  * @public
2967
2967
  */
2968
- Width?: number;
2968
+ Width?: number | undefined;
2969
2969
  }
2970
2970
  /**
2971
2971
  * <p>Travel mode related options for the provided travel mode.</p>
@@ -2976,22 +2976,22 @@ export interface RouteTravelModeOptions {
2976
2976
  * <p>Travel mode options when the provided travel mode is "Car"</p>
2977
2977
  * @public
2978
2978
  */
2979
- Car?: RouteCarOptions;
2979
+ Car?: RouteCarOptions | undefined;
2980
2980
  /**
2981
2981
  * <p>Travel mode options when the provided travel mode is "Pedestrian"</p>
2982
2982
  * @public
2983
2983
  */
2984
- Pedestrian?: RoutePedestrianOptions;
2984
+ Pedestrian?: RoutePedestrianOptions | undefined;
2985
2985
  /**
2986
2986
  * <p>Travel mode options when the provided travel mode is "Scooter"</p>
2987
2987
  * @public
2988
2988
  */
2989
- Scooter?: RouteScooterOptions;
2989
+ Scooter?: RouteScooterOptions | undefined;
2990
2990
  /**
2991
2991
  * <p>Travel mode options when the provided travel mode is "Truck"</p>
2992
2992
  * @public
2993
2993
  */
2994
- Truck?: RouteTruckOptions;
2994
+ Truck?: RouteTruckOptions | undefined;
2995
2995
  }
2996
2996
  /**
2997
2997
  * @public
@@ -3014,27 +3014,27 @@ export interface RouteWaypoint {
3014
3014
  * <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>
3015
3015
  * @public
3016
3016
  */
3017
- AvoidActionsForDistance?: number;
3017
+ AvoidActionsForDistance?: number | undefined;
3018
3018
  /**
3019
3019
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
3020
3020
  * @public
3021
3021
  */
3022
- AvoidUTurns?: boolean;
3022
+ AvoidUTurns?: boolean | undefined;
3023
3023
  /**
3024
3024
  * <p>GPS Heading at the position.</p>
3025
3025
  * @public
3026
3026
  */
3027
- Heading?: number;
3027
+ Heading?: number | undefined;
3028
3028
  /**
3029
3029
  * <p>Options to configure matching the provided position to the road network.</p>
3030
3030
  * @public
3031
3031
  */
3032
- Matching?: RouteMatchingOptions;
3032
+ Matching?: RouteMatchingOptions | undefined;
3033
3033
  /**
3034
3034
  * <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>
3035
3035
  * @public
3036
3036
  */
3037
- PassThrough?: boolean;
3037
+ PassThrough?: boolean | undefined;
3038
3038
  /**
3039
3039
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
3040
3040
  * @public
@@ -3044,7 +3044,7 @@ export interface RouteWaypoint {
3044
3044
  * <p>Options to configure matching the provided position to a side of the street.</p>
3045
3045
  * @public
3046
3046
  */
3047
- SideOfStreet?: RouteSideOfStreetOptions;
3047
+ SideOfStreet?: RouteSideOfStreetOptions | undefined;
3048
3048
  /**
3049
3049
  * <p>Duration of the stop.</p>
3050
3050
  * <p>
@@ -3052,7 +3052,7 @@ export interface RouteWaypoint {
3052
3052
  * </p>
3053
3053
  * @public
3054
3054
  */
3055
- StopDuration?: number;
3055
+ StopDuration?: number | undefined;
3056
3056
  }
3057
3057
  /**
3058
3058
  * @public
@@ -3062,7 +3062,7 @@ export interface CalculateRoutesRequest {
3062
3062
  * <p>Features that are allowed while calculating. a route</p>
3063
3063
  * @public
3064
3064
  */
3065
- Allow?: RouteAllowOptions;
3065
+ Allow?: RouteAllowOptions | undefined;
3066
3066
  /**
3067
3067
  * <p>Time of arrival at the destination.</p>
3068
3068
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -3076,19 +3076,19 @@ export interface CalculateRoutesRequest {
3076
3076
  * </p>
3077
3077
  * @public
3078
3078
  */
3079
- ArrivalTime?: string;
3079
+ ArrivalTime?: string | undefined;
3080
3080
  /**
3081
3081
  * <p>Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an
3082
3082
  * avoidance can't be satisfied for a particular case, it violates the avoidance and the
3083
3083
  * returned response produces a notice for the violation.</p>
3084
3084
  * @public
3085
3085
  */
3086
- Avoid?: RouteAvoidanceOptions;
3086
+ Avoid?: RouteAvoidanceOptions | undefined;
3087
3087
  /**
3088
3088
  * <p>Uses the current time as the time of departure.</p>
3089
3089
  * @public
3090
3090
  */
3091
- DepartNow?: boolean;
3091
+ DepartNow?: boolean | undefined;
3092
3092
  /**
3093
3093
  * <p>Time of departure from thr origin.</p>
3094
3094
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -3102,7 +3102,7 @@ export interface CalculateRoutesRequest {
3102
3102
  * </p>
3103
3103
  * @public
3104
3104
  */
3105
- DepartureTime?: string;
3105
+ DepartureTime?: string | undefined;
3106
3106
  /**
3107
3107
  * <p>The final position for the route. In the World Geodetic System (WGS 84) format: <code>[longitude, latitude]</code>.</p>
3108
3108
  * @public
@@ -3112,28 +3112,28 @@ export interface CalculateRoutesRequest {
3112
3112
  * <p>Destination related options.</p>
3113
3113
  * @public
3114
3114
  */
3115
- DestinationOptions?: RouteDestinationOptions;
3115
+ DestinationOptions?: RouteDestinationOptions | undefined;
3116
3116
  /**
3117
3117
  * <p>Driver related options.</p>
3118
3118
  * @public
3119
3119
  */
3120
- Driver?: RouteDriverOptions;
3120
+ Driver?: RouteDriverOptions | undefined;
3121
3121
  /**
3122
3122
  * <p>Features to be strictly excluded while calculating the route.</p>
3123
3123
  * @public
3124
3124
  */
3125
- Exclude?: RouteExclusionOptions;
3125
+ Exclude?: RouteExclusionOptions | undefined;
3126
3126
  /**
3127
3127
  * <p>Measurement system to be used for instructions within steps in the response.</p>
3128
3128
  * @public
3129
3129
  */
3130
- InstructionsMeasurementSystem?: MeasurementSystem;
3130
+ InstructionsMeasurementSystem?: MeasurementSystem | undefined;
3131
3131
  /**
3132
3132
  * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
3133
3133
  * signature must be provided when making a request. </p>
3134
3134
  * @public
3135
3135
  */
3136
- Key?: string;
3136
+ Key?: string | undefined;
3137
3137
  /**
3138
3138
  * <p>List of languages for instructions within steps in the response.</p>
3139
3139
  * <note>
@@ -3141,7 +3141,7 @@ export interface CalculateRoutesRequest {
3141
3141
  * </note>
3142
3142
  * @public
3143
3143
  */
3144
- Languages?: string[];
3144
+ Languages?: string[] | undefined;
3145
3145
  /**
3146
3146
  * <p>A list of optional additional parameters such as timezone that can be requested for each result.</p>
3147
3147
  * <ul>
@@ -3184,7 +3184,7 @@ export interface CalculateRoutesRequest {
3184
3184
  * </ul>
3185
3185
  * @public
3186
3186
  */
3187
- LegAdditionalFeatures?: RouteLegAdditionalFeature[];
3187
+ LegAdditionalFeatures?: RouteLegAdditionalFeature[] | undefined;
3188
3188
  /**
3189
3189
  * <p>Specifies the format of the geometry returned for each leg of the route. You can
3190
3190
  * choose between two different geometry encoding formats.</p>
@@ -3198,19 +3198,19 @@ export interface CalculateRoutesRequest {
3198
3198
  * which is easier to decode but may be less precise and result in larger payloads.</p>
3199
3199
  * @public
3200
3200
  */
3201
- LegGeometryFormat?: GeometryFormat;
3201
+ LegGeometryFormat?: GeometryFormat | undefined;
3202
3202
  /**
3203
3203
  * <p>Maximum number of alternative routes to be provided in the response, if available.</p>
3204
3204
  * @public
3205
3205
  */
3206
- MaxAlternatives?: number;
3206
+ MaxAlternatives?: number | undefined;
3207
3207
  /**
3208
3208
  * <p>Specifies the optimization criteria for calculating a route.</p>
3209
3209
  * <p>Default Value: <code>FastestRoute</code>
3210
3210
  * </p>
3211
3211
  * @public
3212
3212
  */
3213
- OptimizeRoutingFor?: RoutingObjective;
3213
+ OptimizeRoutingFor?: RoutingObjective | undefined;
3214
3214
  /**
3215
3215
  * <p>The start position for the route.</p>
3216
3216
  * @public
@@ -3220,22 +3220,22 @@ export interface CalculateRoutesRequest {
3220
3220
  * <p>Origin related options.</p>
3221
3221
  * @public
3222
3222
  */
3223
- OriginOptions?: RouteOriginOptions;
3223
+ OriginOptions?: RouteOriginOptions | undefined;
3224
3224
  /**
3225
3225
  * <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>
3226
3226
  * @public
3227
3227
  */
3228
- SpanAdditionalFeatures?: RouteSpanAdditionalFeature[];
3228
+ SpanAdditionalFeatures?: RouteSpanAdditionalFeature[] | undefined;
3229
3229
  /**
3230
3230
  * <p>Toll related options.</p>
3231
3231
  * @public
3232
3232
  */
3233
- Tolls?: RouteTollOptions;
3233
+ Tolls?: RouteTollOptions | undefined;
3234
3234
  /**
3235
3235
  * <p>Traffic related options.</p>
3236
3236
  * @public
3237
3237
  */
3238
- Traffic?: RouteTrafficOptions;
3238
+ Traffic?: RouteTrafficOptions | undefined;
3239
3239
  /**
3240
3240
  * <p>Specifies the mode of transport when calculating a route.
3241
3241
  * Used in estimating the speed of travel and road compatibility.</p>
@@ -3243,24 +3243,24 @@ export interface CalculateRoutesRequest {
3243
3243
  * </p>
3244
3244
  * @public
3245
3245
  */
3246
- TravelMode?: RouteTravelMode;
3246
+ TravelMode?: RouteTravelMode | undefined;
3247
3247
  /**
3248
3248
  * <p>Travel mode related options for the provided travel mode.</p>
3249
3249
  * @public
3250
3250
  */
3251
- TravelModeOptions?: RouteTravelModeOptions;
3251
+ TravelModeOptions?: RouteTravelModeOptions | undefined;
3252
3252
  /**
3253
3253
  * <p>Type of step returned by the response.
3254
3254
  * Default provides basic steps intended for web based applications.
3255
3255
  * TurnByTurn provides detailed instructions with more granularity intended for a turn based naviagtion system.</p>
3256
3256
  * @public
3257
3257
  */
3258
- TravelStepType?: RouteTravelStepType;
3258
+ TravelStepType?: RouteTravelStepType | undefined;
3259
3259
  /**
3260
3260
  * <p>List of waypoints between the Origin and Destination.</p>
3261
3261
  * @public
3262
3262
  */
3263
- Waypoints?: RouteWaypoint[];
3263
+ Waypoints?: RouteWaypoint[] | undefined;
3264
3264
  }
3265
3265
  /**
3266
3266
  * @public
@@ -3301,7 +3301,7 @@ export interface RouteResponseNotice {
3301
3301
  * <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>
3302
3302
  * @public
3303
3303
  */
3304
- Impact?: RouteNoticeImpact;
3304
+ Impact?: RouteNoticeImpact | undefined;
3305
3305
  }
3306
3306
  /**
3307
3307
  * @public
@@ -3334,7 +3334,7 @@ export interface RouteFerryAfterTravelStep {
3334
3334
  * </note>
3335
3335
  * @public
3336
3336
  */
3337
- Instruction?: string;
3337
+ Instruction?: string | undefined;
3338
3338
  /**
3339
3339
  * <p>Type of the step.</p>
3340
3340
  * @public
@@ -3350,12 +3350,12 @@ export interface RouteFerryPlace {
3350
3350
  * <p>The name of the place.</p>
3351
3351
  * @public
3352
3352
  */
3353
- Name?: string;
3353
+ Name?: string | undefined;
3354
3354
  /**
3355
3355
  * <p>Position provided in the request.</p>
3356
3356
  * @public
3357
3357
  */
3358
- OriginalPosition?: number[];
3358
+ OriginalPosition?: number[] | undefined;
3359
3359
  /**
3360
3360
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
3361
3361
  * @public
@@ -3365,7 +3365,7 @@ export interface RouteFerryPlace {
3365
3365
  * <p>Index of the waypoint in the request.</p>
3366
3366
  * @public
3367
3367
  */
3368
- WaypointIndex?: number;
3368
+ WaypointIndex?: number | undefined;
3369
3369
  }
3370
3370
  /**
3371
3371
  * <p>Details corresponding to the arrival for the leg.</p>
@@ -3381,7 +3381,7 @@ export interface RouteFerryArrival {
3381
3381
  * <p>The time.</p>
3382
3382
  * @public
3383
3383
  */
3384
- Time?: string;
3384
+ Time?: string | undefined;
3385
3385
  }
3386
3386
  /**
3387
3387
  * @public
@@ -3414,7 +3414,7 @@ export interface RouteFerryBeforeTravelStep {
3414
3414
  * </note>
3415
3415
  * @public
3416
3416
  */
3417
- Instruction?: string;
3417
+ Instruction?: string | undefined;
3418
3418
  /**
3419
3419
  * <p>Type of the step.</p>
3420
3420
  * @public
@@ -3435,7 +3435,7 @@ export interface RouteFerryDeparture {
3435
3435
  * <p>The time.</p>
3436
3436
  * @public
3437
3437
  */
3438
- Time?: string;
3438
+ Time?: string | undefined;
3439
3439
  }
3440
3440
  /**
3441
3441
  * @public
@@ -3466,7 +3466,7 @@ export interface RouteFerryNotice {
3466
3466
  * <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>
3467
3467
  * @public
3468
3468
  */
3469
- Impact?: RouteNoticeImpact;
3469
+ Impact?: RouteNoticeImpact | undefined;
3470
3470
  }
3471
3471
  /**
3472
3472
  * <p>The place where the waypoint is passed through and not treated as a stop.</p>
@@ -3477,7 +3477,7 @@ export interface RoutePassThroughPlace {
3477
3477
  * <p>Position provided in the request.</p>
3478
3478
  * @public
3479
3479
  */
3480
- OriginalPosition?: number[];
3480
+ OriginalPosition?: number[] | undefined;
3481
3481
  /**
3482
3482
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
3483
3483
  * @public
@@ -3487,7 +3487,7 @@ export interface RoutePassThroughPlace {
3487
3487
  * <p>Index of the waypoint in the request.</p>
3488
3488
  * @public
3489
3489
  */
3490
- WaypointIndex?: number;
3490
+ WaypointIndex?: number | undefined;
3491
3491
  }
3492
3492
  /**
3493
3493
  * <p>If the waypoint should be treated as a stop. If yes, the route is split up into different legs around the stop.</p>
@@ -3498,7 +3498,7 @@ export interface RoutePassThroughWaypoint {
3498
3498
  * <p>Offset in the leg geometry corresponding to the start of this step.</p>
3499
3499
  * @public
3500
3500
  */
3501
- GeometryOffset?: number;
3501
+ GeometryOffset?: number | undefined;
3502
3502
  /**
3503
3503
  * <p>The place details.</p>
3504
3504
  * @public
@@ -3516,7 +3516,7 @@ export interface LocalizedString {
3516
3516
  * provided.</p>
3517
3517
  * @public
3518
3518
  */
3519
- Language?: string;
3519
+ Language?: string | undefined;
3520
3520
  /**
3521
3521
  * <p>The value of the localized string.</p>
3522
3522
  * @public
@@ -3532,12 +3532,12 @@ export interface RouteFerrySpan {
3532
3532
  * <p>3 letter Country code corresponding to the Span.</p>
3533
3533
  * @public
3534
3534
  */
3535
- Country?: string;
3535
+ Country?: string | undefined;
3536
3536
  /**
3537
3537
  * <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>
3538
3538
  * @public
3539
3539
  */
3540
- Distance?: number;
3540
+ Distance?: number | undefined;
3541
3541
  /**
3542
3542
  * <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>
3543
3543
  * <p>
@@ -3545,22 +3545,22 @@ export interface RouteFerrySpan {
3545
3545
  * </p>
3546
3546
  * @public
3547
3547
  */
3548
- Duration?: number;
3548
+ Duration?: number | undefined;
3549
3549
  /**
3550
3550
  * <p>Offset in the leg geometry corresponding to the start of this span.</p>
3551
3551
  * @public
3552
3552
  */
3553
- GeometryOffset?: number;
3553
+ GeometryOffset?: number | undefined;
3554
3554
  /**
3555
3555
  * <p>Provides an array of names of the ferry span in available languages.</p>
3556
3556
  * @public
3557
3557
  */
3558
- Names?: LocalizedString[];
3558
+ Names?: LocalizedString[] | undefined;
3559
3559
  /**
3560
3560
  * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
3561
3561
  * @public
3562
3562
  */
3563
- Region?: string;
3563
+ Region?: string | undefined;
3564
3564
  }
3565
3565
  /**
3566
3566
  * <p>Summarized details of the leg.</p>
@@ -3604,12 +3604,12 @@ export interface RouteFerrySummary {
3604
3604
  * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
3605
3605
  * @public
3606
3606
  */
3607
- Overview?: RouteFerryOverviewSummary;
3607
+ Overview?: RouteFerryOverviewSummary | undefined;
3608
3608
  /**
3609
3609
  * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
3610
3610
  * @public
3611
3611
  */
3612
- TravelOnly?: RouteFerryTravelOnlySummary;
3612
+ TravelOnly?: RouteFerryTravelOnlySummary | undefined;
3613
3613
  }
3614
3614
  /**
3615
3615
  * @public
@@ -3633,7 +3633,7 @@ export interface RouteFerryTravelStep {
3633
3633
  * <p>Distance of the step.</p>
3634
3634
  * @public
3635
3635
  */
3636
- Distance?: number;
3636
+ Distance?: number | undefined;
3637
3637
  /**
3638
3638
  * <p>Duration of the step.</p>
3639
3639
  * <p>
@@ -3646,7 +3646,7 @@ export interface RouteFerryTravelStep {
3646
3646
  * <p>Offset in the leg geometry corresponding to the start of this step.</p>
3647
3647
  * @public
3648
3648
  */
3649
- GeometryOffset?: number;
3649
+ GeometryOffset?: number | undefined;
3650
3650
  /**
3651
3651
  * <p>Brief description of the step in the requested language.</p>
3652
3652
  * <note>
@@ -3654,7 +3654,7 @@ export interface RouteFerryTravelStep {
3654
3654
  * </note>
3655
3655
  * @public
3656
3656
  */
3657
- Instruction?: string;
3657
+ Instruction?: string | undefined;
3658
3658
  /**
3659
3659
  * <p>Type of the step.</p>
3660
3660
  * @public
@@ -3701,7 +3701,7 @@ export interface RouteFerryLegDetails {
3701
3701
  * <p>Route name of the ferry line.</p>
3702
3702
  * @public
3703
3703
  */
3704
- RouteName?: string;
3704
+ RouteName?: string | undefined;
3705
3705
  /**
3706
3706
  * <p>Spans that were computed for the requested SpanAdditionalFeatures.</p>
3707
3707
  * @public
@@ -3711,7 +3711,7 @@ export interface RouteFerryLegDetails {
3711
3711
  * <p>Summarized details of the leg.</p>
3712
3712
  * @public
3713
3713
  */
3714
- Summary?: RouteFerrySummary;
3714
+ Summary?: RouteFerrySummary | undefined;
3715
3715
  /**
3716
3716
  * <p>Steps of a leg that must be performed before the travel portion of the leg.</p>
3717
3717
  * @public
@@ -3730,7 +3730,7 @@ export interface RouteLegGeometry {
3730
3730
  * </note>
3731
3731
  * @public
3732
3732
  */
3733
- LineString?: number[][];
3733
+ LineString?: number[][] | undefined;
3734
3734
  /**
3735
3735
  * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p>
3736
3736
  * <note>
@@ -3738,7 +3738,7 @@ export interface RouteLegGeometry {
3738
3738
  * </note>
3739
3739
  * @public
3740
3740
  */
3741
- Polyline?: string;
3741
+ Polyline?: string | undefined;
3742
3742
  }
3743
3743
  /**
3744
3744
  * @public
@@ -3761,12 +3761,12 @@ export interface RoutePedestrianPlace {
3761
3761
  * <p>The name of the place.</p>
3762
3762
  * @public
3763
3763
  */
3764
- Name?: string;
3764
+ Name?: string | undefined;
3765
3765
  /**
3766
3766
  * <p>Position provided in the request.</p>
3767
3767
  * @public
3768
3768
  */
3769
- OriginalPosition?: number[];
3769
+ OriginalPosition?: number[] | undefined;
3770
3770
  /**
3771
3771
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
3772
3772
  * @public
@@ -3776,12 +3776,12 @@ export interface RoutePedestrianPlace {
3776
3776
  * <p>Options to configure matching the provided position to a side of the street.</p>
3777
3777
  * @public
3778
3778
  */
3779
- SideOfStreet?: RouteSideOfStreet;
3779
+ SideOfStreet?: RouteSideOfStreet | undefined;
3780
3780
  /**
3781
3781
  * <p>Index of the waypoint in the request.</p>
3782
3782
  * @public
3783
3783
  */
3784
- WaypointIndex?: number;
3784
+ WaypointIndex?: number | undefined;
3785
3785
  }
3786
3786
  /**
3787
3787
  * <p>Details corresponding to the arrival for a leg.</p>
@@ -3806,7 +3806,7 @@ export interface RoutePedestrianArrival {
3806
3806
  * <p>The time.</p>
3807
3807
  * @public
3808
3808
  */
3809
- Time?: string;
3809
+ Time?: string | undefined;
3810
3810
  }
3811
3811
  /**
3812
3812
  * <p>Details corresponding to the departure for a leg.</p>
@@ -3831,7 +3831,7 @@ export interface RoutePedestrianDeparture {
3831
3831
  * <p>The time.</p>
3832
3832
  * @public
3833
3833
  */
3834
- Time?: string;
3834
+ Time?: string | undefined;
3835
3835
  }
3836
3836
  /**
3837
3837
  * @public
@@ -3862,7 +3862,7 @@ export interface RoutePedestrianNotice {
3862
3862
  * <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>
3863
3863
  * @public
3864
3864
  */
3865
- Impact?: RouteNoticeImpact;
3865
+ Impact?: RouteNoticeImpact | undefined;
3866
3866
  }
3867
3867
  /**
3868
3868
  * <p>Details about the dynamic speed.</p>
@@ -3879,7 +3879,7 @@ export interface RouteSpanDynamicSpeedDetails {
3879
3879
  * </p>
3880
3880
  * @public
3881
3881
  */
3882
- BestCaseSpeed?: number;
3882
+ BestCaseSpeed?: number | undefined;
3883
3883
  /**
3884
3884
  * <p>Estimated time to turn from this span into the next. </p>
3885
3885
  * <p>
@@ -3887,7 +3887,7 @@ export interface RouteSpanDynamicSpeedDetails {
3887
3887
  * </p>
3888
3888
  * @public
3889
3889
  */
3890
- TurnDuration?: number;
3890
+ TurnDuration?: number | undefined;
3891
3891
  /**
3892
3892
  * <p>Estimated speed while traversing the span under typical traffic congestion.</p>
3893
3893
  * <p>
@@ -3895,7 +3895,7 @@ export interface RouteSpanDynamicSpeedDetails {
3895
3895
  * </p>
3896
3896
  * @public
3897
3897
  */
3898
- TypicalSpeed?: number;
3898
+ TypicalSpeed?: number | undefined;
3899
3899
  }
3900
3900
  /**
3901
3901
  * @public
@@ -3958,12 +3958,12 @@ export interface RouteNumber {
3958
3958
  * <p>Directional identifier of the route.</p>
3959
3959
  * @public
3960
3960
  */
3961
- Direction?: RouteDirection;
3961
+ Direction?: RouteDirection | undefined;
3962
3962
  /**
3963
3963
  * <p>List of languages for instructions corresponding to the route number.</p>
3964
3964
  * @public
3965
3965
  */
3966
- Language?: string;
3966
+ Language?: string | undefined;
3967
3967
  /**
3968
3968
  * <p>The route number.</p>
3969
3969
  * @public
@@ -3985,12 +3985,12 @@ export interface RouteSpanSpeedLimitDetails {
3985
3985
  * </p>
3986
3986
  * @public
3987
3987
  */
3988
- MaxSpeed?: number;
3988
+ MaxSpeed?: number | undefined;
3989
3989
  /**
3990
3990
  * <p>If the span doesn't have a speed limit like the Autobahn.</p>
3991
3991
  * @public
3992
3992
  */
3993
- Unlimited?: boolean;
3993
+ Unlimited?: boolean | undefined;
3994
3994
  }
3995
3995
  /**
3996
3996
  * <p>Span computed for the requested SpanAdditionalFeatures.</p>
@@ -4004,17 +4004,17 @@ export interface RoutePedestrianSpan {
4004
4004
  * </p>
4005
4005
  * @public
4006
4006
  */
4007
- BestCaseDuration?: number;
4007
+ BestCaseDuration?: number | undefined;
4008
4008
  /**
4009
4009
  * <p>3 letter Country code corresponding to the Span.</p>
4010
4010
  * @public
4011
4011
  */
4012
- Country?: string;
4012
+ Country?: string | undefined;
4013
4013
  /**
4014
4014
  * <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>
4015
4015
  * @public
4016
4016
  */
4017
- Distance?: number;
4017
+ Distance?: number | undefined;
4018
4018
  /**
4019
4019
  * <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>
4020
4020
  * <p>
@@ -4022,7 +4022,7 @@ export interface RoutePedestrianSpan {
4022
4022
  * </p>
4023
4023
  * @public
4024
4024
  */
4025
- Duration?: number;
4025
+ Duration?: number | undefined;
4026
4026
  /**
4027
4027
  * <p>Dynamic speed details corresponding to the span.</p>
4028
4028
  * <p>
@@ -4030,47 +4030,47 @@ export interface RoutePedestrianSpan {
4030
4030
  * </p>
4031
4031
  * @public
4032
4032
  */
4033
- DynamicSpeed?: RouteSpanDynamicSpeedDetails;
4033
+ DynamicSpeed?: RouteSpanDynamicSpeedDetails | undefined;
4034
4034
  /**
4035
4035
  * <p>Functional classification of the road segment corresponding to the span.</p>
4036
4036
  * @public
4037
4037
  */
4038
- FunctionalClassification?: number;
4038
+ FunctionalClassification?: number | undefined;
4039
4039
  /**
4040
4040
  * <p>Offset in the leg geometry corresponding to the start of this span.</p>
4041
4041
  * @public
4042
4042
  */
4043
- GeometryOffset?: number;
4043
+ GeometryOffset?: number | undefined;
4044
4044
  /**
4045
4045
  * <p>Incidents corresponding to the span. These index into the Incidents in the parent Leg.</p>
4046
4046
  * @public
4047
4047
  */
4048
- Incidents?: number[];
4048
+ Incidents?: number[] | undefined;
4049
4049
  /**
4050
4050
  * <p>Provides an array of names of the pedestrian span in available languages.</p>
4051
4051
  * @public
4052
4052
  */
4053
- Names?: LocalizedString[];
4053
+ Names?: LocalizedString[] | undefined;
4054
4054
  /**
4055
4055
  * <p>Access attributes for a pedestrian corresponding to the span.</p>
4056
4056
  * @public
4057
4057
  */
4058
- PedestrianAccess?: RouteSpanPedestrianAccessAttribute[];
4058
+ PedestrianAccess?: RouteSpanPedestrianAccessAttribute[] | undefined;
4059
4059
  /**
4060
4060
  * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
4061
4061
  * @public
4062
4062
  */
4063
- Region?: string;
4063
+ Region?: string | undefined;
4064
4064
  /**
4065
4065
  * <p>Attributes for the road segment corresponding to the span. </p>
4066
4066
  * @public
4067
4067
  */
4068
- RoadAttributes?: RouteSpanRoadAttribute[];
4068
+ RoadAttributes?: RouteSpanRoadAttribute[] | undefined;
4069
4069
  /**
4070
4070
  * <p>Designated route name or number corresponding to the span.</p>
4071
4071
  * @public
4072
4072
  */
4073
- RouteNumbers?: RouteNumber[];
4073
+ RouteNumbers?: RouteNumber[] | undefined;
4074
4074
  /**
4075
4075
  * <p>Speed limit details corresponding to the span.</p>
4076
4076
  * <p>
@@ -4078,7 +4078,7 @@ export interface RoutePedestrianSpan {
4078
4078
  * </p>
4079
4079
  * @public
4080
4080
  */
4081
- SpeedLimit?: RouteSpanSpeedLimitDetails;
4081
+ SpeedLimit?: RouteSpanSpeedLimitDetails | undefined;
4082
4082
  /**
4083
4083
  * <p>Duration of the computed span under typical traffic congestion.</p>
4084
4084
  * <p>
@@ -4086,7 +4086,7 @@ export interface RoutePedestrianSpan {
4086
4086
  * </p>
4087
4087
  * @public
4088
4088
  */
4089
- TypicalDuration?: number;
4089
+ TypicalDuration?: number | undefined;
4090
4090
  }
4091
4091
  /**
4092
4092
  * <p>Provides a summary of a pedestrian route step.</p>
@@ -4127,12 +4127,12 @@ export interface RoutePedestrianSummary {
4127
4127
  * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
4128
4128
  * @public
4129
4129
  */
4130
- Overview?: RoutePedestrianOverviewSummary;
4130
+ Overview?: RoutePedestrianOverviewSummary | undefined;
4131
4131
  /**
4132
4132
  * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
4133
4133
  * @public
4134
4134
  */
4135
- TravelOnly?: RoutePedestrianTravelOnlySummary;
4135
+ TravelOnly?: RoutePedestrianTravelOnlySummary | undefined;
4136
4136
  }
4137
4137
  /**
4138
4138
  * <p>Details related to the continue step.</p>
@@ -4182,7 +4182,7 @@ export interface RouteRoad {
4182
4182
  * <p>The type of road.</p>
4183
4183
  * @public
4184
4184
  */
4185
- Type?: RouteRoadType;
4185
+ Type?: RouteRoadType | undefined;
4186
4186
  }
4187
4187
  /**
4188
4188
  * @public
@@ -4224,17 +4224,17 @@ export interface RouteKeepStepDetails {
4224
4224
  * <p>Steering direction for the step.</p>
4225
4225
  * @public
4226
4226
  */
4227
- SteeringDirection?: RouteSteeringDirection;
4227
+ SteeringDirection?: RouteSteeringDirection | undefined;
4228
4228
  /**
4229
4229
  * <p>Angle of the turn.</p>
4230
4230
  * @public
4231
4231
  */
4232
- TurnAngle?: number;
4232
+ TurnAngle?: number | undefined;
4233
4233
  /**
4234
4234
  * <p>Intensity of the turn.</p>
4235
4235
  * @public
4236
4236
  */
4237
- TurnIntensity?: RouteTurnIntensity;
4237
+ TurnIntensity?: RouteTurnIntensity | undefined;
4238
4238
  }
4239
4239
  /**
4240
4240
  * <p>Details about the roundabout leg.</p>
@@ -4250,17 +4250,17 @@ export interface RouteRoundaboutEnterStepDetails {
4250
4250
  * <p>Steering direction for the step.</p>
4251
4251
  * @public
4252
4252
  */
4253
- SteeringDirection?: RouteSteeringDirection;
4253
+ SteeringDirection?: RouteSteeringDirection | undefined;
4254
4254
  /**
4255
4255
  * <p>Angle of the turn.</p>
4256
4256
  * @public
4257
4257
  */
4258
- TurnAngle?: number;
4258
+ TurnAngle?: number | undefined;
4259
4259
  /**
4260
4260
  * <p>Intensity of the turn.</p>
4261
4261
  * @public
4262
4262
  */
4263
- TurnIntensity?: RouteTurnIntensity;
4263
+ TurnIntensity?: RouteTurnIntensity | undefined;
4264
4264
  }
4265
4265
  /**
4266
4266
  * <p>Details about the roundabout step.</p>
@@ -4276,17 +4276,17 @@ export interface RouteRoundaboutExitStepDetails {
4276
4276
  * <p>Exit to be taken.</p>
4277
4277
  * @public
4278
4278
  */
4279
- RelativeExit?: number;
4279
+ RelativeExit?: number | undefined;
4280
4280
  /**
4281
4281
  * <p>Angle of the roundabout.</p>
4282
4282
  * @public
4283
4283
  */
4284
- RoundaboutAngle?: number;
4284
+ RoundaboutAngle?: number | undefined;
4285
4285
  /**
4286
4286
  * <p>Steering direction for the step.</p>
4287
4287
  * @public
4288
4288
  */
4289
- SteeringDirection?: RouteSteeringDirection;
4289
+ SteeringDirection?: RouteSteeringDirection | undefined;
4290
4290
  }
4291
4291
  /**
4292
4292
  * <p>Details about the step.</p>
@@ -4302,17 +4302,17 @@ export interface RouteRoundaboutPassStepDetails {
4302
4302
  * <p>Steering direction for the step.</p>
4303
4303
  * @public
4304
4304
  */
4305
- SteeringDirection?: RouteSteeringDirection;
4305
+ SteeringDirection?: RouteSteeringDirection | undefined;
4306
4306
  /**
4307
4307
  * <p>Angle of the turn.</p>
4308
4308
  * @public
4309
4309
  */
4310
- TurnAngle?: number;
4310
+ TurnAngle?: number | undefined;
4311
4311
  /**
4312
4312
  * <p>Intensity of the turn.</p>
4313
4313
  * @public
4314
4314
  */
4315
- TurnIntensity?: RouteTurnIntensity;
4315
+ TurnIntensity?: RouteTurnIntensity | undefined;
4316
4316
  }
4317
4317
  /**
4318
4318
  * <p>Labels presented on the sign post.</p>
@@ -4323,12 +4323,12 @@ export interface RouteSignpostLabel {
4323
4323
  * <p>Route number of the road.</p>
4324
4324
  * @public
4325
4325
  */
4326
- RouteNumber?: RouteNumber;
4326
+ RouteNumber?: RouteNumber | undefined;
4327
4327
  /**
4328
4328
  * <p>The Signpost text.</p>
4329
4329
  * @public
4330
4330
  */
4331
- Text?: LocalizedString;
4331
+ Text?: LocalizedString | undefined;
4332
4332
  }
4333
4333
  /**
4334
4334
  * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
@@ -4355,17 +4355,17 @@ export interface RouteTurnStepDetails {
4355
4355
  * <p>Steering direction for the step.</p>
4356
4356
  * @public
4357
4357
  */
4358
- SteeringDirection?: RouteSteeringDirection;
4358
+ SteeringDirection?: RouteSteeringDirection | undefined;
4359
4359
  /**
4360
4360
  * <p>Angle of the turn.</p>
4361
4361
  * @public
4362
4362
  */
4363
- TurnAngle?: number;
4363
+ TurnAngle?: number | undefined;
4364
4364
  /**
4365
4365
  * <p>Intensity of the turn.</p>
4366
4366
  * @public
4367
4367
  */
4368
- TurnIntensity?: RouteTurnIntensity;
4368
+ TurnIntensity?: RouteTurnIntensity | undefined;
4369
4369
  }
4370
4370
  /**
4371
4371
  * @public
@@ -4397,17 +4397,17 @@ export interface RoutePedestrianTravelStep {
4397
4397
  * <p>Details related to the continue step.</p>
4398
4398
  * @public
4399
4399
  */
4400
- ContinueStepDetails?: RouteContinueStepDetails;
4400
+ ContinueStepDetails?: RouteContinueStepDetails | undefined;
4401
4401
  /**
4402
4402
  * <p>Details of the current road. See RouteRoad for details of sub-attributes.</p>
4403
4403
  * @public
4404
4404
  */
4405
- CurrentRoad?: RouteRoad;
4405
+ CurrentRoad?: RouteRoad | undefined;
4406
4406
  /**
4407
4407
  * <p>Distance of the step.</p>
4408
4408
  * @public
4409
4409
  */
4410
- Distance?: number;
4410
+ Distance?: number | undefined;
4411
4411
  /**
4412
4412
  * <p>Duration of the step.</p>
4413
4413
  * <p>
@@ -4420,12 +4420,12 @@ export interface RoutePedestrianTravelStep {
4420
4420
  * <p>Exit number of the road exit, if applicable.</p>
4421
4421
  * @public
4422
4422
  */
4423
- ExitNumber?: LocalizedString[];
4423
+ ExitNumber?: LocalizedString[] | undefined;
4424
4424
  /**
4425
4425
  * <p>Offset in the leg geometry corresponding to the start of this step.</p>
4426
4426
  * @public
4427
4427
  */
4428
- GeometryOffset?: number;
4428
+ GeometryOffset?: number | undefined;
4429
4429
  /**
4430
4430
  * <p>Brief description of the step in the requested language.</p>
4431
4431
  * <note>
@@ -4433,42 +4433,42 @@ export interface RoutePedestrianTravelStep {
4433
4433
  * </note>
4434
4434
  * @public
4435
4435
  */
4436
- Instruction?: string;
4436
+ Instruction?: string | undefined;
4437
4437
  /**
4438
4438
  * <p>Details that are specific to a Keep step.</p>
4439
4439
  * @public
4440
4440
  */
4441
- KeepStepDetails?: RouteKeepStepDetails;
4441
+ KeepStepDetails?: RouteKeepStepDetails | undefined;
4442
4442
  /**
4443
4443
  * <p>Details of the next road. See RouteRoad for details of sub-attributes.</p>
4444
4444
  * @public
4445
4445
  */
4446
- NextRoad?: RouteRoad;
4446
+ NextRoad?: RouteRoad | undefined;
4447
4447
  /**
4448
4448
  * <p>Details that are specific to a Roundabout Enter step.</p>
4449
4449
  * @public
4450
4450
  */
4451
- RoundaboutEnterStepDetails?: RouteRoundaboutEnterStepDetails;
4451
+ RoundaboutEnterStepDetails?: RouteRoundaboutEnterStepDetails | undefined;
4452
4452
  /**
4453
4453
  * <p>Details that are specific to a Roundabout Exit step.</p>
4454
4454
  * @public
4455
4455
  */
4456
- RoundaboutExitStepDetails?: RouteRoundaboutExitStepDetails;
4456
+ RoundaboutExitStepDetails?: RouteRoundaboutExitStepDetails | undefined;
4457
4457
  /**
4458
4458
  * <p>Details that are specific to a Roundabout Pass step.</p>
4459
4459
  * @public
4460
4460
  */
4461
- RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails;
4461
+ RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails | undefined;
4462
4462
  /**
4463
4463
  * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
4464
4464
  * @public
4465
4465
  */
4466
- Signpost?: RouteSignpost;
4466
+ Signpost?: RouteSignpost | undefined;
4467
4467
  /**
4468
4468
  * <p>Details that are specific to a turn step.</p>
4469
4469
  * @public
4470
4470
  */
4471
- TurnStepDetails?: RouteTurnStepDetails;
4471
+ TurnStepDetails?: RouteTurnStepDetails | undefined;
4472
4472
  /**
4473
4473
  * <p>Type of the step.</p>
4474
4474
  * @public
@@ -4509,7 +4509,7 @@ export interface RoutePedestrianLegDetails {
4509
4509
  * <p>Summarized details of the leg.</p>
4510
4510
  * @public
4511
4511
  */
4512
- Summary?: RoutePedestrianSummary;
4512
+ Summary?: RoutePedestrianSummary | undefined;
4513
4513
  /**
4514
4514
  * <p>Steps of a leg that must be performed before the travel portion of the leg.</p>
4515
4515
  * @public
@@ -4553,12 +4553,12 @@ export interface RouteVehiclePlace {
4553
4553
  * <p>The name of the place.</p>
4554
4554
  * @public
4555
4555
  */
4556
- Name?: string;
4556
+ Name?: string | undefined;
4557
4557
  /**
4558
4558
  * <p>Position provided in the request.</p>
4559
4559
  * @public
4560
4560
  */
4561
- OriginalPosition?: number[];
4561
+ OriginalPosition?: number[] | undefined;
4562
4562
  /**
4563
4563
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
4564
4564
  * @public
@@ -4568,12 +4568,12 @@ export interface RouteVehiclePlace {
4568
4568
  * <p>Options to configure matching the provided position to a side of the street.</p>
4569
4569
  * @public
4570
4570
  */
4571
- SideOfStreet?: RouteSideOfStreet;
4571
+ SideOfStreet?: RouteSideOfStreet | undefined;
4572
4572
  /**
4573
4573
  * <p>Index of the waypoint in the request.</p>
4574
4574
  * @public
4575
4575
  */
4576
- WaypointIndex?: number;
4576
+ WaypointIndex?: number | undefined;
4577
4577
  }
4578
4578
  /**
4579
4579
  * <p>Details corresponding to the arrival for a leg.</p>
@@ -4589,7 +4589,7 @@ export interface RouteVehicleArrival {
4589
4589
  * <p>The time.</p>
4590
4590
  * @public
4591
4591
  */
4592
- Time?: string;
4592
+ Time?: string | undefined;
4593
4593
  }
4594
4594
  /**
4595
4595
  * <p>Details corresponding to the departure for the leg.</p>
@@ -4605,7 +4605,7 @@ export interface RouteVehicleDeparture {
4605
4605
  * <p>The departure time.</p>
4606
4606
  * @public
4607
4607
  */
4608
- Time?: string;
4608
+ Time?: string | undefined;
4609
4609
  }
4610
4610
  /**
4611
4611
  * @public
@@ -4651,12 +4651,12 @@ export interface RouteVehicleIncident {
4651
4651
  * <p>Brief readable description of the incident.</p>
4652
4652
  * @public
4653
4653
  */
4654
- Description?: string;
4654
+ Description?: string | undefined;
4655
4655
  /**
4656
4656
  * <p>End timestamp of the incident.</p>
4657
4657
  * @public
4658
4658
  */
4659
- EndTime?: string;
4659
+ EndTime?: string | undefined;
4660
4660
  /**
4661
4661
  * <p>Severity of the incident
4662
4662
  * Critical - The part of the route the incident affects is unusable.
@@ -4665,17 +4665,17 @@ export interface RouteVehicleIncident {
4665
4665
  * Low - Low on duration, for example slightly increased traffic</p>
4666
4666
  * @public
4667
4667
  */
4668
- Severity?: RouteVehicleIncidentSeverity;
4668
+ Severity?: RouteVehicleIncidentSeverity | undefined;
4669
4669
  /**
4670
4670
  * <p>Start time of the incident.</p>
4671
4671
  * @public
4672
4672
  */
4673
- StartTime?: string;
4673
+ StartTime?: string | undefined;
4674
4674
  /**
4675
4675
  * <p>Type of the incident.</p>
4676
4676
  * @public
4677
4677
  */
4678
- Type?: RouteVehicleIncidentType;
4678
+ Type?: RouteVehicleIncidentType | undefined;
4679
4679
  }
4680
4680
  /**
4681
4681
  * @public
@@ -4723,12 +4723,12 @@ export interface RouteNoticeDetailRange {
4723
4723
  * <p>Minimum value for the range.</p>
4724
4724
  * @public
4725
4725
  */
4726
- Min?: number;
4726
+ Min?: number | undefined;
4727
4727
  /**
4728
4728
  * <p>Maximum value for the range.</p>
4729
4729
  * @public
4730
4730
  */
4731
- Max?: number;
4731
+ Max?: number | undefined;
4732
4732
  }
4733
4733
  /**
4734
4734
  * @public
@@ -4775,12 +4775,12 @@ export interface RouteViolatedConstraints {
4775
4775
  * <p>This restriction applies to truck cargo, where the resulting route excludes roads on which hazardous materials are prohibited from being transported.</p>
4776
4776
  * @public
4777
4777
  */
4778
- AllHazardsRestricted?: boolean;
4778
+ AllHazardsRestricted?: boolean | undefined;
4779
4779
  /**
4780
4780
  * <p>Total number of axles of the vehicle.</p>
4781
4781
  * @public
4782
4782
  */
4783
- AxleCount?: RouteNoticeDetailRange;
4783
+ AxleCount?: RouteNoticeDetailRange | undefined;
4784
4784
  /**
4785
4785
  * <p>List of Hazardous cargo contained in the vehicle.</p>
4786
4786
  * @public
@@ -4790,7 +4790,7 @@ export interface RouteViolatedConstraints {
4790
4790
  * <p>The maximum height of the vehicle.</p>
4791
4791
  * @public
4792
4792
  */
4793
- MaxHeight?: number;
4793
+ MaxHeight?: number | undefined;
4794
4794
  /**
4795
4795
  * <p>The maximum Kpra length of the vehicle.</p>
4796
4796
  * <p>
@@ -4798,12 +4798,12 @@ export interface RouteViolatedConstraints {
4798
4798
  * </p>
4799
4799
  * @public
4800
4800
  */
4801
- MaxKpraLength?: number;
4801
+ MaxKpraLength?: number | undefined;
4802
4802
  /**
4803
4803
  * <p>The maximum length of the vehicle.</p>
4804
4804
  * @public
4805
4805
  */
4806
- MaxLength?: number;
4806
+ MaxLength?: number | undefined;
4807
4807
  /**
4808
4808
  * <p>The maximum load capacity of the vehicle.</p>
4809
4809
  * <p>
@@ -4811,7 +4811,7 @@ export interface RouteViolatedConstraints {
4811
4811
  * </p>
4812
4812
  * @public
4813
4813
  */
4814
- MaxPayloadCapacity?: number;
4814
+ MaxPayloadCapacity?: number | undefined;
4815
4815
  /**
4816
4816
  * <p>The maximum weight of the route.</p>
4817
4817
  * <p>
@@ -4819,7 +4819,7 @@ export interface RouteViolatedConstraints {
4819
4819
  * </p>
4820
4820
  * @public
4821
4821
  */
4822
- MaxWeight?: RouteWeightConstraint;
4822
+ MaxWeight?: RouteWeightConstraint | undefined;
4823
4823
  /**
4824
4824
  * <p>The maximum weight per axle of the vehicle.</p>
4825
4825
  * <p>
@@ -4827,7 +4827,7 @@ export interface RouteViolatedConstraints {
4827
4827
  * </p>
4828
4828
  * @public
4829
4829
  */
4830
- MaxWeightPerAxle?: number;
4830
+ MaxWeightPerAxle?: number | undefined;
4831
4831
  /**
4832
4832
  * <p>The maximum weight per axle group of the vehicle.</p>
4833
4833
  * <p>
@@ -4835,41 +4835,41 @@ export interface RouteViolatedConstraints {
4835
4835
  * </p>
4836
4836
  * @public
4837
4837
  */
4838
- MaxWeightPerAxleGroup?: WeightPerAxleGroup;
4838
+ MaxWeightPerAxleGroup?: WeightPerAxleGroup | undefined;
4839
4839
  /**
4840
4840
  * <p>The maximum width of the vehicle.</p>
4841
4841
  * @public
4842
4842
  */
4843
- MaxWidth?: number;
4843
+ MaxWidth?: number | undefined;
4844
4844
  /**
4845
4845
  * <p>The number of occupants in the vehicle.</p>
4846
4846
  * <p>Default Value: <code>1</code>
4847
4847
  * </p>
4848
4848
  * @public
4849
4849
  */
4850
- Occupancy?: RouteNoticeDetailRange;
4850
+ Occupancy?: RouteNoticeDetailRange | undefined;
4851
4851
  /**
4852
4852
  * <p>Access radius restrictions based on time.</p>
4853
4853
  * @public
4854
4854
  */
4855
- RestrictedTimes?: string;
4855
+ RestrictedTimes?: string | undefined;
4856
4856
  /**
4857
4857
  * <p>The time dependent constraint.</p>
4858
4858
  * @public
4859
4859
  */
4860
- TimeDependent?: boolean;
4860
+ TimeDependent?: boolean | undefined;
4861
4861
  /**
4862
4862
  * <p>Number of trailers attached to the vehicle.</p>
4863
4863
  * <p>Default Value: <code>0</code>
4864
4864
  * </p>
4865
4865
  * @public
4866
4866
  */
4867
- TrailerCount?: RouteNoticeDetailRange;
4867
+ TrailerCount?: RouteNoticeDetailRange | undefined;
4868
4868
  /**
4869
4869
  * <p>Travel mode corresponding to the leg.</p>
4870
4870
  * @public
4871
4871
  */
4872
- TravelMode?: boolean;
4872
+ TravelMode?: boolean | undefined;
4873
4873
  /**
4874
4874
  * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden.
4875
4875
  * <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
@@ -4878,12 +4878,12 @@ export interface RouteViolatedConstraints {
4878
4878
  * </note>
4879
4879
  * @public
4880
4880
  */
4881
- TruckRoadType?: string;
4881
+ TruckRoadType?: string | undefined;
4882
4882
  /**
4883
4883
  * <p>Type of the truck.</p>
4884
4884
  * @public
4885
4885
  */
4886
- TruckType?: RouteTruckType;
4886
+ TruckType?: RouteTruckType | undefined;
4887
4887
  /**
4888
4888
  * <p>The tunnel restriction code.</p>
4889
4889
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -4952,7 +4952,7 @@ export interface RouteViolatedConstraints {
4952
4952
  * </ul>
4953
4953
  * @public
4954
4954
  */
4955
- TunnelRestrictionCode?: string;
4955
+ TunnelRestrictionCode?: string | undefined;
4956
4956
  }
4957
4957
  /**
4958
4958
  * <p>Additional details of the notice.</p>
@@ -4963,12 +4963,12 @@ export interface RouteVehicleNoticeDetail {
4963
4963
  * <p>The notice title.</p>
4964
4964
  * @public
4965
4965
  */
4966
- Title?: string;
4966
+ Title?: string | undefined;
4967
4967
  /**
4968
4968
  * <p>Any violated constraints.</p>
4969
4969
  * @public
4970
4970
  */
4971
- ViolatedConstraints?: RouteViolatedConstraints;
4971
+ ViolatedConstraints?: RouteViolatedConstraints | undefined;
4972
4972
  }
4973
4973
  /**
4974
4974
  * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
@@ -4989,7 +4989,7 @@ export interface RouteVehicleNotice {
4989
4989
  * <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>
4990
4990
  * @public
4991
4991
  */
4992
- Impact?: RouteNoticeImpact;
4992
+ Impact?: RouteNoticeImpact | undefined;
4993
4993
  }
4994
4994
  /**
4995
4995
  * @public
@@ -5067,22 +5067,22 @@ export interface RouteVehicleSpan {
5067
5067
  * </p>
5068
5068
  * @public
5069
5069
  */
5070
- BestCaseDuration?: number;
5070
+ BestCaseDuration?: number | undefined;
5071
5071
  /**
5072
5072
  * <p>Access attributes for a car corresponding to the span.</p>
5073
5073
  * @public
5074
5074
  */
5075
- CarAccess?: RouteSpanCarAccessAttribute[];
5075
+ CarAccess?: RouteSpanCarAccessAttribute[] | undefined;
5076
5076
  /**
5077
5077
  * <p>3 letter Country code corresponding to the Span.</p>
5078
5078
  * @public
5079
5079
  */
5080
- Country?: string;
5080
+ Country?: string | undefined;
5081
5081
  /**
5082
5082
  * <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>
5083
5083
  * @public
5084
5084
  */
5085
- Distance?: number;
5085
+ Distance?: number | undefined;
5086
5086
  /**
5087
5087
  * <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>
5088
5088
  * <p>
@@ -5090,7 +5090,7 @@ export interface RouteVehicleSpan {
5090
5090
  * </p>
5091
5091
  * @public
5092
5092
  */
5093
- Duration?: number;
5093
+ Duration?: number | undefined;
5094
5094
  /**
5095
5095
  * <p>Dynamic speed details corresponding to the span.</p>
5096
5096
  * <p>
@@ -5098,62 +5098,62 @@ export interface RouteVehicleSpan {
5098
5098
  * </p>
5099
5099
  * @public
5100
5100
  */
5101
- DynamicSpeed?: RouteSpanDynamicSpeedDetails;
5101
+ DynamicSpeed?: RouteSpanDynamicSpeedDetails | undefined;
5102
5102
  /**
5103
5103
  * <p>Functional classification of the road segment corresponding to the span.</p>
5104
5104
  * @public
5105
5105
  */
5106
- FunctionalClassification?: number;
5106
+ FunctionalClassification?: number | undefined;
5107
5107
  /**
5108
5108
  * <p>Attributes corresponding to a gate. The gate is present at the end of the returned span.</p>
5109
5109
  * @public
5110
5110
  */
5111
- Gate?: RouteSpanGateAttribute;
5111
+ Gate?: RouteSpanGateAttribute | undefined;
5112
5112
  /**
5113
5113
  * <p>Offset in the leg geometry corresponding to the start of this span.</p>
5114
5114
  * @public
5115
5115
  */
5116
- GeometryOffset?: number;
5116
+ GeometryOffset?: number | undefined;
5117
5117
  /**
5118
5118
  * <p>Incidents corresponding to the span. These index into the Incidents in the parent Leg.</p>
5119
5119
  * @public
5120
5120
  */
5121
- Incidents?: number[];
5121
+ Incidents?: number[] | undefined;
5122
5122
  /**
5123
5123
  * <p>Provides an array of names of the vehicle span in available languages.</p>
5124
5124
  * @public
5125
5125
  */
5126
- Names?: LocalizedString[];
5126
+ Names?: LocalizedString[] | undefined;
5127
5127
  /**
5128
5128
  * <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
5129
5129
  * @public
5130
5130
  */
5131
- Notices?: number[];
5131
+ Notices?: number[] | undefined;
5132
5132
  /**
5133
5133
  * <p>Attributes corresponding to a railway crossing. The gate is present at the end of the returned span.</p>
5134
5134
  * @public
5135
5135
  */
5136
- RailwayCrossing?: RouteSpanRailwayCrossingAttribute;
5136
+ RailwayCrossing?: RouteSpanRailwayCrossingAttribute | undefined;
5137
5137
  /**
5138
5138
  * <p>2-3 letter Region code corresponding to the Span. This is either a province or a state.</p>
5139
5139
  * @public
5140
5140
  */
5141
- Region?: string;
5141
+ Region?: string | undefined;
5142
5142
  /**
5143
5143
  * <p>Attributes for the road segment corresponding to the span. </p>
5144
5144
  * @public
5145
5145
  */
5146
- RoadAttributes?: RouteSpanRoadAttribute[];
5146
+ RoadAttributes?: RouteSpanRoadAttribute[] | undefined;
5147
5147
  /**
5148
5148
  * <p>Designated route name or number corresponding to the span.</p>
5149
5149
  * @public
5150
5150
  */
5151
- RouteNumbers?: RouteNumber[];
5151
+ RouteNumbers?: RouteNumber[] | undefined;
5152
5152
  /**
5153
5153
  * <p>Access attributes for a scooter corresponding to the span.</p>
5154
5154
  * @public
5155
5155
  */
5156
- ScooterAccess?: RouteSpanScooterAccessAttribute[];
5156
+ ScooterAccess?: RouteSpanScooterAccessAttribute[] | undefined;
5157
5157
  /**
5158
5158
  * <p>Speed limit details corresponding to the span.</p>
5159
5159
  * <p>
@@ -5161,17 +5161,17 @@ export interface RouteVehicleSpan {
5161
5161
  * </p>
5162
5162
  * @public
5163
5163
  */
5164
- SpeedLimit?: RouteSpanSpeedLimitDetails;
5164
+ SpeedLimit?: RouteSpanSpeedLimitDetails | undefined;
5165
5165
  /**
5166
5166
  * <p>Toll systems are authorities that collect payments for the toll.</p>
5167
5167
  * @public
5168
5168
  */
5169
- TollSystems?: number[];
5169
+ TollSystems?: number[] | undefined;
5170
5170
  /**
5171
5171
  * <p>Access attributes for a truck corresponding to the span.</p>
5172
5172
  * @public
5173
5173
  */
5174
- TruckAccess?: RouteSpanTruckAccessAttribute[];
5174
+ TruckAccess?: RouteSpanTruckAccessAttribute[] | undefined;
5175
5175
  /**
5176
5176
  * <p>Truck road type identifiers. <code>BK1</code> through <code>BK4</code> apply only to Sweden.
5177
5177
  * <code>A2,A4,B2,B4,C,D,ET2,ET4</code> apply only to Mexico.</p>
@@ -5180,7 +5180,7 @@ export interface RouteVehicleSpan {
5180
5180
  * </note>
5181
5181
  * @public
5182
5182
  */
5183
- TruckRoadTypes?: number[];
5183
+ TruckRoadTypes?: number[] | undefined;
5184
5184
  /**
5185
5185
  * <p>Duration of the computed span under typical traffic congestion. </p>
5186
5186
  * <p>
@@ -5188,12 +5188,12 @@ export interface RouteVehicleSpan {
5188
5188
  * </p>
5189
5189
  * @public
5190
5190
  */
5191
- TypicalDuration?: number;
5191
+ TypicalDuration?: number | undefined;
5192
5192
  /**
5193
5193
  * <p>Zones corresponding to this leg of the route.</p>
5194
5194
  * @public
5195
5195
  */
5196
- Zones?: number[];
5196
+ Zones?: number[] | undefined;
5197
5197
  }
5198
5198
  /**
5199
5199
  * <p>Summarized details of the leg.</p>
@@ -5207,7 +5207,7 @@ export interface RouteVehicleOverviewSummary {
5207
5207
  * </p>
5208
5208
  * @public
5209
5209
  */
5210
- BestCaseDuration?: number;
5210
+ BestCaseDuration?: number | undefined;
5211
5211
  /**
5212
5212
  * <p>Distance of the step.</p>
5213
5213
  * @public
@@ -5228,7 +5228,7 @@ export interface RouteVehicleOverviewSummary {
5228
5228
  * </p>
5229
5229
  * @public
5230
5230
  */
5231
- TypicalDuration?: number;
5231
+ TypicalDuration?: number | undefined;
5232
5232
  }
5233
5233
  /**
5234
5234
  * <p>Summarized details of the route.</p>
@@ -5242,7 +5242,7 @@ export interface RouteVehicleTravelOnlySummary {
5242
5242
  * </p>
5243
5243
  * @public
5244
5244
  */
5245
- BestCaseDuration?: number;
5245
+ BestCaseDuration?: number | undefined;
5246
5246
  /**
5247
5247
  * <p>Duration of the step.</p>
5248
5248
  * <p>
@@ -5258,7 +5258,7 @@ export interface RouteVehicleTravelOnlySummary {
5258
5258
  * </p>
5259
5259
  * @public
5260
5260
  */
5261
- TypicalDuration?: number;
5261
+ TypicalDuration?: number | undefined;
5262
5262
  }
5263
5263
  /**
5264
5264
  * <p>Summarized details of the route.</p>
@@ -5269,12 +5269,12 @@ export interface RouteVehicleSummary {
5269
5269
  * <p>Summarized details for the leg including before travel, travel and after travel steps.</p>
5270
5270
  * @public
5271
5271
  */
5272
- Overview?: RouteVehicleOverviewSummary;
5272
+ Overview?: RouteVehicleOverviewSummary | undefined;
5273
5273
  /**
5274
5274
  * <p>Summarized details for the leg including travel steps only. The Distance for the travel only portion of the journey is in meters</p>
5275
5275
  * @public
5276
5276
  */
5277
- TravelOnly?: RouteVehicleTravelOnlySummary;
5277
+ TravelOnly?: RouteVehicleTravelOnlySummary | undefined;
5278
5278
  }
5279
5279
  /**
5280
5280
  * <p>Locations or sites where the toll fare is collected.</p>
@@ -5285,7 +5285,7 @@ export interface RouteTollPaymentSite {
5285
5285
  * <p>Name of the payment site.</p>
5286
5286
  * @public
5287
5287
  */
5288
- Name?: string;
5288
+ Name?: string | undefined;
5289
5289
  /**
5290
5290
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
5291
5291
  * @public
@@ -5330,7 +5330,7 @@ export interface RouteTollPrice {
5330
5330
  * </p>
5331
5331
  * @public
5332
5332
  */
5333
- PerDuration?: number;
5333
+ PerDuration?: number | undefined;
5334
5334
  /**
5335
5335
  * <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>
5336
5336
  * @public
@@ -5340,7 +5340,7 @@ export interface RouteTollPrice {
5340
5340
  * <p>Price range with a minimum and maximum value, if a range.</p>
5341
5341
  * @public
5342
5342
  */
5343
- RangeValue?: RouteTollPriceValueRange;
5343
+ RangeValue?: RouteTollPriceValueRange | undefined;
5344
5344
  /**
5345
5345
  * <p>Exact price, if not a range.</p>
5346
5346
  * @public
@@ -5376,7 +5376,7 @@ export interface RouteTollPassValidityPeriod {
5376
5376
  * <p>Counts for the validity period.</p>
5377
5377
  * @public
5378
5378
  */
5379
- PeriodCount?: number;
5379
+ PeriodCount?: number | undefined;
5380
5380
  }
5381
5381
  /**
5382
5382
  * <p>Details if the toll rate can be a pass that supports multiple trips.</p>
@@ -5387,27 +5387,27 @@ export interface RouteTollPass {
5387
5387
  * <p>If the pass includes the rate for the return leg of the trip.</p>
5388
5388
  * @public
5389
5389
  */
5390
- IncludesReturnTrip?: boolean;
5390
+ IncludesReturnTrip?: boolean | undefined;
5391
5391
  /**
5392
5392
  * <p>If the pass is only valid for senior persons.</p>
5393
5393
  * @public
5394
5394
  */
5395
- SeniorPass?: boolean;
5395
+ SeniorPass?: boolean | undefined;
5396
5396
  /**
5397
5397
  * <p>If the toll pass can be transferred, and how many times.</p>
5398
5398
  * @public
5399
5399
  */
5400
- TransferCount?: number;
5400
+ TransferCount?: number | undefined;
5401
5401
  /**
5402
5402
  * <p>Number of trips the pass is valid for.</p>
5403
5403
  * @public
5404
5404
  */
5405
- TripCount?: number;
5405
+ TripCount?: number | undefined;
5406
5406
  /**
5407
5407
  * <p>Period for which the pass is valid.</p>
5408
5408
  * @public
5409
5409
  */
5410
- ValidityPeriod?: RouteTollPassValidityPeriod;
5410
+ ValidityPeriod?: RouteTollPassValidityPeriod | undefined;
5411
5411
  }
5412
5412
  /**
5413
5413
  * @public
@@ -5436,7 +5436,7 @@ export interface RouteTransponder {
5436
5436
  * <p>Names of the toll system collecting the toll.</p>
5437
5437
  * @public
5438
5438
  */
5439
- SystemName?: string;
5439
+ SystemName?: string | undefined;
5440
5440
  }
5441
5441
  /**
5442
5442
  * <p>The toll rate.</p>
@@ -5447,12 +5447,12 @@ export interface RouteTollRate {
5447
5447
  * <p>Time when the rate is valid.</p>
5448
5448
  * @public
5449
5449
  */
5450
- ApplicableTimes?: string;
5450
+ ApplicableTimes?: string | undefined;
5451
5451
  /**
5452
5452
  * <p>Price in the converted currency as specified in the request.</p>
5453
5453
  * @public
5454
5454
  */
5455
- ConvertedPrice?: RouteTollPrice;
5455
+ ConvertedPrice?: RouteTollPrice | undefined;
5456
5456
  /**
5457
5457
  * <p>The Toll rate Id.</p>
5458
5458
  * @public
@@ -5472,7 +5472,7 @@ export interface RouteTollRate {
5472
5472
  * <p>Details if the toll rate can be a pass that supports multiple trips.</p>
5473
5473
  * @public
5474
5474
  */
5475
- Pass?: RouteTollPass;
5475
+ Pass?: RouteTollPass | undefined;
5476
5476
  /**
5477
5477
  * <p>Accepted payment methods at the toll.</p>
5478
5478
  * @public
@@ -5493,7 +5493,7 @@ export interface RouteToll {
5493
5493
  * <p>The alpha-2 or alpha-3 character code for the country.</p>
5494
5494
  * @public
5495
5495
  */
5496
- Country?: string;
5496
+ Country?: string | undefined;
5497
5497
  /**
5498
5498
  * <p>Locations or sites where the toll fare is collected.</p>
5499
5499
  * @public
@@ -5519,7 +5519,7 @@ export interface RouteTollSystem {
5519
5519
  * <p>The toll system name.</p>
5520
5520
  * @public
5521
5521
  */
5522
- Name?: string;
5522
+ Name?: string | undefined;
5523
5523
  }
5524
5524
  /**
5525
5525
  * <p>Details related to the continue highway step.</p>
@@ -5535,17 +5535,17 @@ export interface RouteContinueHighwayStepDetails {
5535
5535
  * <p>Steering direction for the step.</p>
5536
5536
  * @public
5537
5537
  */
5538
- SteeringDirection?: RouteSteeringDirection;
5538
+ SteeringDirection?: RouteSteeringDirection | undefined;
5539
5539
  /**
5540
5540
  * <p>Angle of the turn.</p>
5541
5541
  * @public
5542
5542
  */
5543
- TurnAngle?: number;
5543
+ TurnAngle?: number | undefined;
5544
5544
  /**
5545
5545
  * <p>Intensity of the turn.</p>
5546
5546
  * @public
5547
5547
  */
5548
- TurnIntensity?: RouteTurnIntensity;
5548
+ TurnIntensity?: RouteTurnIntensity | undefined;
5549
5549
  }
5550
5550
  /**
5551
5551
  * <p>Details related to the enter highway step.</p>
@@ -5561,17 +5561,17 @@ export interface RouteEnterHighwayStepDetails {
5561
5561
  * <p>Steering direction for the step.</p>
5562
5562
  * @public
5563
5563
  */
5564
- SteeringDirection?: RouteSteeringDirection;
5564
+ SteeringDirection?: RouteSteeringDirection | undefined;
5565
5565
  /**
5566
5566
  * <p>Angle of the turn.</p>
5567
5567
  * @public
5568
5568
  */
5569
- TurnAngle?: number;
5569
+ TurnAngle?: number | undefined;
5570
5570
  /**
5571
5571
  * <p>Intensity of the turn.</p>
5572
5572
  * @public
5573
5573
  */
5574
- TurnIntensity?: RouteTurnIntensity;
5574
+ TurnIntensity?: RouteTurnIntensity | undefined;
5575
5575
  }
5576
5576
  /**
5577
5577
  * <p>Details related to the exit step.</p>
@@ -5587,22 +5587,22 @@ export interface RouteExitStepDetails {
5587
5587
  * <p>Exit to be taken.</p>
5588
5588
  * @public
5589
5589
  */
5590
- RelativeExit?: number;
5590
+ RelativeExit?: number | undefined;
5591
5591
  /**
5592
5592
  * <p>Steering direction for the step.</p>
5593
5593
  * @public
5594
5594
  */
5595
- SteeringDirection?: RouteSteeringDirection;
5595
+ SteeringDirection?: RouteSteeringDirection | undefined;
5596
5596
  /**
5597
5597
  * <p>Angle of the turn.</p>
5598
5598
  * @public
5599
5599
  */
5600
- TurnAngle?: number;
5600
+ TurnAngle?: number | undefined;
5601
5601
  /**
5602
5602
  * <p>Intensity of the turn.</p>
5603
5603
  * @public
5604
5604
  */
5605
- TurnIntensity?: RouteTurnIntensity;
5605
+ TurnIntensity?: RouteTurnIntensity | undefined;
5606
5606
  }
5607
5607
  /**
5608
5608
  * <p>Details that are specific to a ramp step.</p>
@@ -5618,17 +5618,17 @@ export interface RouteRampStepDetails {
5618
5618
  * <p>Steering direction for the step.</p>
5619
5619
  * @public
5620
5620
  */
5621
- SteeringDirection?: RouteSteeringDirection;
5621
+ SteeringDirection?: RouteSteeringDirection | undefined;
5622
5622
  /**
5623
5623
  * <p>Angle of the turn.</p>
5624
5624
  * @public
5625
5625
  */
5626
- TurnAngle?: number;
5626
+ TurnAngle?: number | undefined;
5627
5627
  /**
5628
5628
  * <p>Intensity of the turn.</p>
5629
5629
  * @public
5630
5630
  */
5631
- TurnIntensity?: RouteTurnIntensity;
5631
+ TurnIntensity?: RouteTurnIntensity | undefined;
5632
5632
  }
5633
5633
  /**
5634
5634
  * @public
@@ -5667,17 +5667,17 @@ export interface RouteUTurnStepDetails {
5667
5667
  * <p>Steering direction for the step.</p>
5668
5668
  * @public
5669
5669
  */
5670
- SteeringDirection?: RouteSteeringDirection;
5670
+ SteeringDirection?: RouteSteeringDirection | undefined;
5671
5671
  /**
5672
5672
  * <p>Angle of the turn.</p>
5673
5673
  * @public
5674
5674
  */
5675
- TurnAngle?: number;
5675
+ TurnAngle?: number | undefined;
5676
5676
  /**
5677
5677
  * <p>Intensity of the turn.</p>
5678
5678
  * @public
5679
5679
  */
5680
- TurnIntensity?: RouteTurnIntensity;
5680
+ TurnIntensity?: RouteTurnIntensity | undefined;
5681
5681
  }
5682
5682
  /**
5683
5683
  * <p>Steps of a leg that correspond to the travel portion of the leg.</p>
@@ -5688,22 +5688,22 @@ export interface RouteVehicleTravelStep {
5688
5688
  * <p>Details that are specific to a Continue Highway step.</p>
5689
5689
  * @public
5690
5690
  */
5691
- ContinueHighwayStepDetails?: RouteContinueHighwayStepDetails;
5691
+ ContinueHighwayStepDetails?: RouteContinueHighwayStepDetails | undefined;
5692
5692
  /**
5693
5693
  * <p>Details that are specific to a Continue step.</p>
5694
5694
  * @public
5695
5695
  */
5696
- ContinueStepDetails?: RouteContinueStepDetails;
5696
+ ContinueStepDetails?: RouteContinueStepDetails | undefined;
5697
5697
  /**
5698
5698
  * <p>Details of the current road.</p>
5699
5699
  * @public
5700
5700
  */
5701
- CurrentRoad?: RouteRoad;
5701
+ CurrentRoad?: RouteRoad | undefined;
5702
5702
  /**
5703
5703
  * <p>Distance of the step.</p>
5704
5704
  * @public
5705
5705
  */
5706
- Distance?: number;
5706
+ Distance?: number | undefined;
5707
5707
  /**
5708
5708
  * <p>Duration of the step.</p>
5709
5709
  * <p>
@@ -5716,22 +5716,22 @@ export interface RouteVehicleTravelStep {
5716
5716
  * <p>Details that are specific to a Enter Highway step.</p>
5717
5717
  * @public
5718
5718
  */
5719
- EnterHighwayStepDetails?: RouteEnterHighwayStepDetails;
5719
+ EnterHighwayStepDetails?: RouteEnterHighwayStepDetails | undefined;
5720
5720
  /**
5721
5721
  * <p>Exit number of the road exit, if applicable.</p>
5722
5722
  * @public
5723
5723
  */
5724
- ExitNumber?: LocalizedString[];
5724
+ ExitNumber?: LocalizedString[] | undefined;
5725
5725
  /**
5726
5726
  * <p>Details that are specific to a Roundabout Exit step.</p>
5727
5727
  * @public
5728
5728
  */
5729
- ExitStepDetails?: RouteExitStepDetails;
5729
+ ExitStepDetails?: RouteExitStepDetails | undefined;
5730
5730
  /**
5731
5731
  * <p>Offset in the leg geometry corresponding to the start of this step.</p>
5732
5732
  * @public
5733
5733
  */
5734
- GeometryOffset?: number;
5734
+ GeometryOffset?: number | undefined;
5735
5735
  /**
5736
5736
  * <p>Brief description of the step in the requested language.</p>
5737
5737
  * <note>
@@ -5739,47 +5739,47 @@ export interface RouteVehicleTravelStep {
5739
5739
  * </note>
5740
5740
  * @public
5741
5741
  */
5742
- Instruction?: string;
5742
+ Instruction?: string | undefined;
5743
5743
  /**
5744
5744
  * <p>Details that are specific to a Keep step.</p>
5745
5745
  * @public
5746
5746
  */
5747
- KeepStepDetails?: RouteKeepStepDetails;
5747
+ KeepStepDetails?: RouteKeepStepDetails | undefined;
5748
5748
  /**
5749
5749
  * <p>Details of the next road. See RouteRoad for details of sub-attributes.</p>
5750
5750
  * @public
5751
5751
  */
5752
- NextRoad?: RouteRoad;
5752
+ NextRoad?: RouteRoad | undefined;
5753
5753
  /**
5754
5754
  * <p>Details that are specific to a Ramp step.</p>
5755
5755
  * @public
5756
5756
  */
5757
- RampStepDetails?: RouteRampStepDetails;
5757
+ RampStepDetails?: RouteRampStepDetails | undefined;
5758
5758
  /**
5759
5759
  * <p>Details that are specific to a Roundabout Enter step.</p>
5760
5760
  * @public
5761
5761
  */
5762
- RoundaboutEnterStepDetails?: RouteRoundaboutEnterStepDetails;
5762
+ RoundaboutEnterStepDetails?: RouteRoundaboutEnterStepDetails | undefined;
5763
5763
  /**
5764
5764
  * <p>Details that are specific to a Roundabout Exit step.</p>
5765
5765
  * @public
5766
5766
  */
5767
- RoundaboutExitStepDetails?: RouteRoundaboutExitStepDetails;
5767
+ RoundaboutExitStepDetails?: RouteRoundaboutExitStepDetails | undefined;
5768
5768
  /**
5769
5769
  * <p>Details that are specific to a Roundabout Pass step.</p>
5770
5770
  * @public
5771
5771
  */
5772
- RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails;
5772
+ RoundaboutPassStepDetails?: RouteRoundaboutPassStepDetails | undefined;
5773
5773
  /**
5774
5774
  * <p>Sign post information of the action, applicable only for TurnByTurn steps. See RouteSignpost for details of sub-attributes.</p>
5775
5775
  * @public
5776
5776
  */
5777
- Signpost?: RouteSignpost;
5777
+ Signpost?: RouteSignpost | undefined;
5778
5778
  /**
5779
5779
  * <p>Details that are specific to a Turn step.</p>
5780
5780
  * @public
5781
5781
  */
5782
- TurnStepDetails?: RouteTurnStepDetails;
5782
+ TurnStepDetails?: RouteTurnStepDetails | undefined;
5783
5783
  /**
5784
5784
  * <p>Type of the step.</p>
5785
5785
  * @public
@@ -5789,7 +5789,7 @@ export interface RouteVehicleTravelStep {
5789
5789
  * <p>Details that are specific to a Turn step.</p>
5790
5790
  * @public
5791
5791
  */
5792
- UTurnStepDetails?: RouteUTurnStepDetails;
5792
+ UTurnStepDetails?: RouteUTurnStepDetails | undefined;
5793
5793
  }
5794
5794
  /**
5795
5795
  * <p>The zone.</p>
@@ -5800,12 +5800,12 @@ export interface RouteZone {
5800
5800
  * <p>The zone category.</p>
5801
5801
  * @public
5802
5802
  */
5803
- Category?: RouteZoneCategory;
5803
+ Category?: RouteZoneCategory | undefined;
5804
5804
  /**
5805
5805
  * <p>The name of the zone.</p>
5806
5806
  * @public
5807
5807
  */
5808
- Name?: string;
5808
+ Name?: string | undefined;
5809
5809
  }
5810
5810
  /**
5811
5811
  * <p>Steps of a leg that correspond to the travel portion of the leg.</p>
@@ -5846,7 +5846,7 @@ export interface RouteVehicleLegDetails {
5846
5846
  * <p>Summarized details of the leg.</p>
5847
5847
  * @public
5848
5848
  */
5849
- Summary?: RouteVehicleSummary;
5849
+ Summary?: RouteVehicleSummary | undefined;
5850
5850
  /**
5851
5851
  * <p>Toll related options.</p>
5852
5852
  * @public
@@ -5888,7 +5888,7 @@ export interface RouteLeg {
5888
5888
  * information that is specific</p>
5889
5889
  * @public
5890
5890
  */
5891
- FerryLegDetails?: RouteFerryLegDetails;
5891
+ FerryLegDetails?: RouteFerryLegDetails | undefined;
5892
5892
  /**
5893
5893
  * <p>Geometry of the area to be avoided.</p>
5894
5894
  * @public
@@ -5898,12 +5898,12 @@ export interface RouteLeg {
5898
5898
  * <p>List of languages for instructions within steps in the response.</p>
5899
5899
  * @public
5900
5900
  */
5901
- Language?: string;
5901
+ Language?: string | undefined;
5902
5902
  /**
5903
5903
  * <p>Details related to the pedestrian leg.</p>
5904
5904
  * @public
5905
5905
  */
5906
- PedestrianLegDetails?: RoutePedestrianLegDetails;
5906
+ PedestrianLegDetails?: RoutePedestrianLegDetails | undefined;
5907
5907
  /**
5908
5908
  * <p>Specifies the mode of transport when calculating a route.
5909
5909
  * Used in estimating the speed of travel and road compatibility.</p>
@@ -5921,7 +5921,7 @@ export interface RouteLeg {
5921
5921
  * <p>Details related to the vehicle leg.</p>
5922
5922
  * @public
5923
5923
  */
5924
- VehicleLegDetails?: RouteVehicleLegDetails;
5924
+ VehicleLegDetails?: RouteVehicleLegDetails | undefined;
5925
5925
  }
5926
5926
  /**
5927
5927
  * <p>Important labels including names and route numbers that differentiate the current route from the alternatives presented.</p>
@@ -5932,12 +5932,12 @@ export interface RouteMajorRoadLabel {
5932
5932
  * <p>Name of the road (localized).</p>
5933
5933
  * @public
5934
5934
  */
5935
- RoadName?: LocalizedString;
5935
+ RoadName?: LocalizedString | undefined;
5936
5936
  /**
5937
5937
  * <p>Route number of the road.</p>
5938
5938
  * @public
5939
5939
  */
5940
- RouteNumber?: RouteNumber;
5940
+ RouteNumber?: RouteNumber | undefined;
5941
5941
  }
5942
5942
  /**
5943
5943
  * <p>Summary of the route and toll price.</p>
@@ -5963,7 +5963,7 @@ export interface RouteTollPriceSummary {
5963
5963
  * <p>Price range with a minimum and maximum value, if a range.</p>
5964
5964
  * @public
5965
5965
  */
5966
- RangeValue?: RouteTollPriceValueRange;
5966
+ RangeValue?: RouteTollPriceValueRange | undefined;
5967
5967
  /**
5968
5968
  * <p>Exact price, if not a range.</p>
5969
5969
  * @public
@@ -5980,7 +5980,7 @@ export interface RouteTollSummary {
5980
5980
  * today.</p>
5981
5981
  * @public
5982
5982
  */
5983
- Total?: RouteTollPriceSummary;
5983
+ Total?: RouteTollPriceSummary | undefined;
5984
5984
  }
5985
5985
  /**
5986
5986
  * <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>
@@ -5991,7 +5991,7 @@ export interface RouteSummary {
5991
5991
  * <p>Distance of the route.</p>
5992
5992
  * @public
5993
5993
  */
5994
- Distance?: number;
5994
+ Distance?: number | undefined;
5995
5995
  /**
5996
5996
  * <p>Duration of the route.</p>
5997
5997
  * <p>
@@ -5999,12 +5999,12 @@ export interface RouteSummary {
5999
5999
  * </p>
6000
6000
  * @public
6001
6001
  */
6002
- Duration?: number;
6002
+ Duration?: number | undefined;
6003
6003
  /**
6004
6004
  * <p>Toll summary for the complete route.</p>
6005
6005
  * @public
6006
6006
  */
6007
- Tolls?: RouteTollSummary;
6007
+ Tolls?: RouteTollSummary | undefined;
6008
6008
  }
6009
6009
  /**
6010
6010
  * <p>The route.</p>
@@ -6026,7 +6026,7 @@ export interface Route {
6026
6026
  * <p>Summarized details of the leg.</p>
6027
6027
  * @public
6028
6028
  */
6029
- Summary?: RouteSummary;
6029
+ Summary?: RouteSummary | undefined;
6030
6030
  }
6031
6031
  /**
6032
6032
  * @public
@@ -6081,7 +6081,7 @@ export interface WaypointOptimizationAvoidanceAreaGeometry {
6081
6081
  * represents the X and Y coordinates (longitude and latitude) of the northeast corner.</p>
6082
6082
  * @public
6083
6083
  */
6084
- BoundingBox?: number[];
6084
+ BoundingBox?: number[] | undefined;
6085
6085
  }
6086
6086
  /**
6087
6087
  * <p>The area to be avoided.</p>
@@ -6103,42 +6103,42 @@ export interface WaypointOptimizationAvoidanceOptions {
6103
6103
  * <p>Areas to be avoided.</p>
6104
6104
  * @public
6105
6105
  */
6106
- Areas?: WaypointOptimizationAvoidanceArea[];
6106
+ Areas?: WaypointOptimizationAvoidanceArea[] | undefined;
6107
6107
  /**
6108
6108
  * <p>Avoidance options for cars-shuttles-trains.</p>
6109
6109
  * @public
6110
6110
  */
6111
- CarShuttleTrains?: boolean;
6111
+ CarShuttleTrains?: boolean | undefined;
6112
6112
  /**
6113
6113
  * <p>Avoid controlled access highways while calculating the route.</p>
6114
6114
  * @public
6115
6115
  */
6116
- ControlledAccessHighways?: boolean;
6116
+ ControlledAccessHighways?: boolean | undefined;
6117
6117
  /**
6118
6118
  * <p>Avoid dirt roads while calculating the route.</p>
6119
6119
  * @public
6120
6120
  */
6121
- DirtRoads?: boolean;
6121
+ DirtRoads?: boolean | undefined;
6122
6122
  /**
6123
6123
  * <p>Avoidance options for ferries.</p>
6124
6124
  * @public
6125
6125
  */
6126
- Ferries?: boolean;
6126
+ Ferries?: boolean | undefined;
6127
6127
  /**
6128
6128
  * <p>Avoids roads where the specified toll transponders are the only mode of payment.</p>
6129
6129
  * @public
6130
6130
  */
6131
- TollRoads?: boolean;
6131
+ TollRoads?: boolean | undefined;
6132
6132
  /**
6133
6133
  * <p>Avoid tunnels while calculating the route.</p>
6134
6134
  * @public
6135
6135
  */
6136
- Tunnels?: boolean;
6136
+ Tunnels?: boolean | undefined;
6137
6137
  /**
6138
6138
  * <p>Avoid U-turns for calculation on highways and motorways.</p>
6139
6139
  * @public
6140
6140
  */
6141
- UTurns?: boolean;
6141
+ UTurns?: boolean | undefined;
6142
6142
  }
6143
6143
  /**
6144
6144
  * <p>Hours of entry.</p>
@@ -6188,7 +6188,7 @@ export interface WaypointOptimizationSideOfStreetOptions {
6188
6188
  * </p>
6189
6189
  * @public
6190
6190
  */
6191
- UseWith?: SideOfStreetMatchingStrategy;
6191
+ UseWith?: SideOfStreetMatchingStrategy | undefined;
6192
6192
  }
6193
6193
  /**
6194
6194
  * <p>Destination related options.</p>
@@ -6199,22 +6199,22 @@ export interface WaypointOptimizationDestinationOptions {
6199
6199
  * <p>Access hours corresponding to when a waypoint can be visited.</p>
6200
6200
  * @public
6201
6201
  */
6202
- AccessHours?: WaypointOptimizationAccessHours;
6202
+ AccessHours?: WaypointOptimizationAccessHours | undefined;
6203
6203
  /**
6204
6204
  * <p>Appointment time at the destination.</p>
6205
6205
  * @public
6206
6206
  */
6207
- AppointmentTime?: string;
6207
+ AppointmentTime?: string | undefined;
6208
6208
  /**
6209
6209
  * <p>GPS Heading at the position.</p>
6210
6210
  * @public
6211
6211
  */
6212
- Heading?: number;
6212
+ Heading?: number | undefined;
6213
6213
  /**
6214
6214
  * <p>The waypoint Id.</p>
6215
6215
  * @public
6216
6216
  */
6217
- Id?: string;
6217
+ Id?: string | undefined;
6218
6218
  /**
6219
6219
  * <p>Service time spent at the destination. At an appointment, the service time should be the appointment duration.</p>
6220
6220
  * <p>
@@ -6222,12 +6222,12 @@ export interface WaypointOptimizationDestinationOptions {
6222
6222
  * </p>
6223
6223
  * @public
6224
6224
  */
6225
- ServiceDuration?: number;
6225
+ ServiceDuration?: number | undefined;
6226
6226
  /**
6227
6227
  * <p>Options to configure matching the provided position to a side of the street.</p>
6228
6228
  * @public
6229
6229
  */
6230
- SideOfStreet?: WaypointOptimizationSideOfStreetOptions;
6230
+ SideOfStreet?: WaypointOptimizationSideOfStreetOptions | undefined;
6231
6231
  }
6232
6232
  /**
6233
6233
  * <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>
@@ -6304,18 +6304,18 @@ export interface WaypointOptimizationDriverOptions {
6304
6304
  * <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>
6305
6305
  * @public
6306
6306
  */
6307
- RestCycles?: WaypointOptimizationRestCycles;
6307
+ RestCycles?: WaypointOptimizationRestCycles | undefined;
6308
6308
  /**
6309
6309
  * <p>Pre defined rest profiles for a driver schedule. The only currently supported profile is
6310
6310
  * EU.</p>
6311
6311
  * @public
6312
6312
  */
6313
- RestProfile?: WaypointOptimizationRestProfile;
6313
+ RestProfile?: WaypointOptimizationRestProfile | undefined;
6314
6314
  /**
6315
6315
  * <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>
6316
6316
  * @public
6317
6317
  */
6318
- TreatServiceTimeAs?: WaypointOptimizationServiceTimeTreatment;
6318
+ TreatServiceTimeAs?: WaypointOptimizationServiceTimeTreatment | undefined;
6319
6319
  }
6320
6320
  /**
6321
6321
  * <p>Exclusion options.</p>
@@ -6349,7 +6349,7 @@ export interface WaypointOptimizationOriginOptions {
6349
6349
  * <p>The Origin Id.</p>
6350
6350
  * @public
6351
6351
  */
6352
- Id?: string;
6352
+ Id?: string | undefined;
6353
6353
  }
6354
6354
  /**
6355
6355
  * <p>Options related to traffic.</p>
@@ -6362,7 +6362,7 @@ export interface WaypointOptimizationTrafficOptions {
6362
6362
  * </p>
6363
6363
  * @public
6364
6364
  */
6365
- Usage?: TrafficUsage;
6365
+ Usage?: TrafficUsage | undefined;
6366
6366
  }
6367
6367
  /**
6368
6368
  * @public
@@ -6390,7 +6390,7 @@ export interface WaypointOptimizationPedestrianOptions {
6390
6390
  * </p>
6391
6391
  * @public
6392
6392
  */
6393
- Speed?: number;
6393
+ Speed?: number | undefined;
6394
6394
  }
6395
6395
  /**
6396
6396
  * @public
@@ -6424,7 +6424,7 @@ export interface WaypointOptimizationTrailerOptions {
6424
6424
  * </p>
6425
6425
  * @public
6426
6426
  */
6427
- TrailerCount?: number;
6427
+ TrailerCount?: number | undefined;
6428
6428
  }
6429
6429
  /**
6430
6430
  * @public
@@ -6450,12 +6450,12 @@ export interface WaypointOptimizationTruckOptions {
6450
6450
  * </p>
6451
6451
  * @public
6452
6452
  */
6453
- GrossWeight?: number;
6453
+ GrossWeight?: number | undefined;
6454
6454
  /**
6455
6455
  * <p>List of Hazardous cargo contained in the vehicle.</p>
6456
6456
  * @public
6457
6457
  */
6458
- HazardousCargos?: WaypointOptimizationHazardousCargoType[];
6458
+ HazardousCargos?: WaypointOptimizationHazardousCargoType[] | undefined;
6459
6459
  /**
6460
6460
  * <p>Height of the vehicle.</p>
6461
6461
  * <p>
@@ -6463,7 +6463,7 @@ export interface WaypointOptimizationTruckOptions {
6463
6463
  * </p>
6464
6464
  * @public
6465
6465
  */
6466
- Height?: number;
6466
+ Height?: number | undefined;
6467
6467
  /**
6468
6468
  * <p>Length of the vehicle.</p>
6469
6469
  * <p>
@@ -6471,17 +6471,17 @@ export interface WaypointOptimizationTruckOptions {
6471
6471
  * </p>
6472
6472
  * @public
6473
6473
  */
6474
- Length?: number;
6474
+ Length?: number | undefined;
6475
6475
  /**
6476
6476
  * <p>Trailer options corresponding to the vehicle.</p>
6477
6477
  * @public
6478
6478
  */
6479
- Trailer?: WaypointOptimizationTrailerOptions;
6479
+ Trailer?: WaypointOptimizationTrailerOptions | undefined;
6480
6480
  /**
6481
6481
  * <p>Type of the truck.</p>
6482
6482
  * @public
6483
6483
  */
6484
- TruckType?: WaypointOptimizationTruckType;
6484
+ TruckType?: WaypointOptimizationTruckType | undefined;
6485
6485
  /**
6486
6486
  * <p>The tunnel restriction code.</p>
6487
6487
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -6550,7 +6550,7 @@ export interface WaypointOptimizationTruckOptions {
6550
6550
  * </ul>
6551
6551
  * @public
6552
6552
  */
6553
- TunnelRestrictionCode?: string;
6553
+ TunnelRestrictionCode?: string | undefined;
6554
6554
  /**
6555
6555
  * <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>
6556
6556
  * <p>
@@ -6558,7 +6558,7 @@ export interface WaypointOptimizationTruckOptions {
6558
6558
  * </p>
6559
6559
  * @public
6560
6560
  */
6561
- WeightPerAxle?: number;
6561
+ WeightPerAxle?: number | undefined;
6562
6562
  /**
6563
6563
  * <p>Width of the vehicle.</p>
6564
6564
  * <p>
@@ -6566,7 +6566,7 @@ export interface WaypointOptimizationTruckOptions {
6566
6566
  * </p>
6567
6567
  * @public
6568
6568
  */
6569
- Width?: number;
6569
+ Width?: number | undefined;
6570
6570
  }
6571
6571
  /**
6572
6572
  * <p>Travel mode related options for the provided travel mode.</p>
@@ -6577,12 +6577,12 @@ export interface WaypointOptimizationTravelModeOptions {
6577
6577
  * <p>Travel mode options when the provided travel mode is "Pedestrian"</p>
6578
6578
  * @public
6579
6579
  */
6580
- Pedestrian?: WaypointOptimizationPedestrianOptions;
6580
+ Pedestrian?: WaypointOptimizationPedestrianOptions | undefined;
6581
6581
  /**
6582
6582
  * <p>Travel mode options when the provided travel mode is "Truck"</p>
6583
6583
  * @public
6584
6584
  */
6585
- Truck?: WaypointOptimizationTruckOptions;
6585
+ Truck?: WaypointOptimizationTruckOptions | undefined;
6586
6586
  }
6587
6587
  /**
6588
6588
  * <p>Waypoint between the Origin and Destination.</p>
@@ -6593,27 +6593,27 @@ export interface WaypointOptimizationWaypoint {
6593
6593
  * <p>Access hours corresponding to when a waypoint can be visited.</p>
6594
6594
  * @public
6595
6595
  */
6596
- AccessHours?: WaypointOptimizationAccessHours;
6596
+ AccessHours?: WaypointOptimizationAccessHours | undefined;
6597
6597
  /**
6598
6598
  * <p>Appointment time at the waypoint.</p>
6599
6599
  * @public
6600
6600
  */
6601
- AppointmentTime?: string;
6601
+ AppointmentTime?: string | undefined;
6602
6602
  /**
6603
6603
  * <p>Constraint defining what waypoints are to be visited after this waypoint.</p>
6604
6604
  * @public
6605
6605
  */
6606
- Before?: number[];
6606
+ Before?: number[] | undefined;
6607
6607
  /**
6608
6608
  * <p>GPS Heading at the position.</p>
6609
6609
  * @public
6610
6610
  */
6611
- Heading?: number;
6611
+ Heading?: number | undefined;
6612
6612
  /**
6613
6613
  * <p>The waypoint Id.</p>
6614
6614
  * @public
6615
6615
  */
6616
- Id?: string;
6616
+ Id?: string | undefined;
6617
6617
  /**
6618
6618
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
6619
6619
  * @public
@@ -6626,12 +6626,12 @@ export interface WaypointOptimizationWaypoint {
6626
6626
  * </p>
6627
6627
  * @public
6628
6628
  */
6629
- ServiceDuration?: number;
6629
+ ServiceDuration?: number | undefined;
6630
6630
  /**
6631
6631
  * <p>Options to configure matching the provided position to a side of the street.</p>
6632
6632
  * @public
6633
6633
  */
6634
- SideOfStreet?: WaypointOptimizationSideOfStreetOptions;
6634
+ SideOfStreet?: WaypointOptimizationSideOfStreetOptions | undefined;
6635
6635
  }
6636
6636
  /**
6637
6637
  * @public
@@ -6642,7 +6642,7 @@ export interface OptimizeWaypointsRequest {
6642
6642
  * avoidance can't be satisfied for a particular case, this setting is ignored.</p>
6643
6643
  * @public
6644
6644
  */
6645
- Avoid?: WaypointOptimizationAvoidanceOptions;
6645
+ Avoid?: WaypointOptimizationAvoidanceOptions | undefined;
6646
6646
  /**
6647
6647
  * <p>Departure time from the waypoint.</p>
6648
6648
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -6656,40 +6656,40 @@ export interface OptimizeWaypointsRequest {
6656
6656
  * </p>
6657
6657
  * @public
6658
6658
  */
6659
- DepartureTime?: string;
6659
+ DepartureTime?: string | undefined;
6660
6660
  /**
6661
6661
  * <p>The final position for the route in the World Geodetic System (WGS 84) format:
6662
6662
  * <code>[longitude, latitude]</code>.</p>
6663
6663
  * @public
6664
6664
  */
6665
- Destination?: number[];
6665
+ Destination?: number[] | undefined;
6666
6666
  /**
6667
6667
  * <p>Destination related options.</p>
6668
6668
  * @public
6669
6669
  */
6670
- DestinationOptions?: WaypointOptimizationDestinationOptions;
6670
+ DestinationOptions?: WaypointOptimizationDestinationOptions | undefined;
6671
6671
  /**
6672
6672
  * <p>Driver related options.</p>
6673
6673
  * @public
6674
6674
  */
6675
- Driver?: WaypointOptimizationDriverOptions;
6675
+ Driver?: WaypointOptimizationDriverOptions | undefined;
6676
6676
  /**
6677
6677
  * <p>Features to be strictly excluded while calculating the route.</p>
6678
6678
  * @public
6679
6679
  */
6680
- Exclude?: WaypointOptimizationExclusionOptions;
6680
+ Exclude?: WaypointOptimizationExclusionOptions | undefined;
6681
6681
  /**
6682
6682
  * <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
6683
6683
  * signature must be provided when making a request. </p>
6684
6684
  * @public
6685
6685
  */
6686
- Key?: string;
6686
+ Key?: string | undefined;
6687
6687
  /**
6688
6688
  * <p>Specifies the optimization criteria for the calculated sequence.</p>
6689
6689
  * <p>Default Value: <code>FastestRoute</code>.</p>
6690
6690
  * @public
6691
6691
  */
6692
- OptimizeSequencingFor?: WaypointOptimizationSequencingObjective;
6692
+ OptimizeSequencingFor?: WaypointOptimizationSequencingObjective | undefined;
6693
6693
  /**
6694
6694
  * <p>The start position for the route.</p>
6695
6695
  * @public
@@ -6699,12 +6699,12 @@ export interface OptimizeWaypointsRequest {
6699
6699
  * <p>Origin related options.</p>
6700
6700
  * @public
6701
6701
  */
6702
- OriginOptions?: WaypointOptimizationOriginOptions;
6702
+ OriginOptions?: WaypointOptimizationOriginOptions | undefined;
6703
6703
  /**
6704
6704
  * <p>Traffic-related options.</p>
6705
6705
  * @public
6706
6706
  */
6707
- Traffic?: WaypointOptimizationTrafficOptions;
6707
+ Traffic?: WaypointOptimizationTrafficOptions | undefined;
6708
6708
  /**
6709
6709
  * <p>Specifies the mode of transport when calculating a route.
6710
6710
  * Used in estimating the speed of travel and road compatibility.</p>
@@ -6712,17 +6712,17 @@ export interface OptimizeWaypointsRequest {
6712
6712
  * </p>
6713
6713
  * @public
6714
6714
  */
6715
- TravelMode?: WaypointOptimizationTravelMode;
6715
+ TravelMode?: WaypointOptimizationTravelMode | undefined;
6716
6716
  /**
6717
6717
  * <p>Travel mode related options for the provided travel mode.</p>
6718
6718
  * @public
6719
6719
  */
6720
- TravelModeOptions?: WaypointOptimizationTravelModeOptions;
6720
+ TravelModeOptions?: WaypointOptimizationTravelModeOptions | undefined;
6721
6721
  /**
6722
6722
  * <p>List of waypoints between the <code>Origin</code> and <code>Destination</code>.</p>
6723
6723
  * @public
6724
6724
  */
6725
- Waypoints?: WaypointOptimizationWaypoint[];
6725
+ Waypoints?: WaypointOptimizationWaypoint[] | undefined;
6726
6726
  }
6727
6727
  /**
6728
6728
  * <p>This contains information such as distance and duration from one waypoint to the next waypoint in the sequence.</p>
@@ -6791,12 +6791,12 @@ export interface WaypointOptimizationFailedConstraint {
6791
6791
  * <p>The failed constraint.</p>
6792
6792
  * @public
6793
6793
  */
6794
- Constraint?: WaypointOptimizationConstraint;
6794
+ Constraint?: WaypointOptimizationConstraint | undefined;
6795
6795
  /**
6796
6796
  * <p>Reason for the failed constraint.</p>
6797
6797
  * @public
6798
6798
  */
6799
- Reason?: string;
6799
+ Reason?: string | undefined;
6800
6800
  }
6801
6801
  /**
6802
6802
  * <p>The impeding waypoint.</p>
@@ -6837,7 +6837,7 @@ export interface WaypointOptimizationOptimizedWaypoint {
6837
6837
  * </p>
6838
6838
  * @public
6839
6839
  */
6840
- ArrivalTime?: string;
6840
+ ArrivalTime?: string | undefined;
6841
6841
  /**
6842
6842
  * <p>Estimated time of departure from thr origin.</p>
6843
6843
  * <p>Time format:<code>YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm</code>
@@ -6953,7 +6953,7 @@ export interface RoadSnapTracePoint {
6953
6953
  * <p>GPS Heading at the position.</p>
6954
6954
  * @public
6955
6955
  */
6956
- Heading?: number;
6956
+ Heading?: number | undefined;
6957
6957
  /**
6958
6958
  * <p>Position defined as <code>[longitude, latitude]</code>.</p>
6959
6959
  * @public
@@ -6966,12 +6966,12 @@ export interface RoadSnapTracePoint {
6966
6966
  * </p>
6967
6967
  * @public
6968
6968
  */
6969
- Speed?: number;
6969
+ Speed?: number | undefined;
6970
6970
  /**
6971
6971
  * <p>Timestamp of the event.</p>
6972
6972
  * @public
6973
6973
  */
6974
- Timestamp?: string;
6974
+ Timestamp?: string | undefined;
6975
6975
  }
6976
6976
  /**
6977
6977
  * @public
@@ -7019,7 +7019,7 @@ export interface RoadSnapTrailerOptions {
7019
7019
  * </p>
7020
7020
  * @public
7021
7021
  */
7022
- TrailerCount?: number;
7022
+ TrailerCount?: number | undefined;
7023
7023
  }
7024
7024
  /**
7025
7025
  * <p>Travel mode options when the provided travel mode is "Truck".</p>
@@ -7033,12 +7033,12 @@ export interface RoadSnapTruckOptions {
7033
7033
  * </p>
7034
7034
  * @public
7035
7035
  */
7036
- GrossWeight?: number;
7036
+ GrossWeight?: number | undefined;
7037
7037
  /**
7038
7038
  * <p>List of Hazardous cargos contained in the vehicle.</p>
7039
7039
  * @public
7040
7040
  */
7041
- HazardousCargos?: RoadSnapHazardousCargoType[];
7041
+ HazardousCargos?: RoadSnapHazardousCargoType[] | undefined;
7042
7042
  /**
7043
7043
  * <p>Height of the vehicle.</p>
7044
7044
  * <p>
@@ -7046,7 +7046,7 @@ export interface RoadSnapTruckOptions {
7046
7046
  * </p>
7047
7047
  * @public
7048
7048
  */
7049
- Height?: number;
7049
+ Height?: number | undefined;
7050
7050
  /**
7051
7051
  * <p>Length of the vehicle.</p>
7052
7052
  * <p>
@@ -7054,12 +7054,12 @@ export interface RoadSnapTruckOptions {
7054
7054
  * </p>
7055
7055
  * @public
7056
7056
  */
7057
- Length?: number;
7057
+ Length?: number | undefined;
7058
7058
  /**
7059
7059
  * <p>Trailer options corresponding to the vehicle.</p>
7060
7060
  * @public
7061
7061
  */
7062
- Trailer?: RoadSnapTrailerOptions;
7062
+ Trailer?: RoadSnapTrailerOptions | undefined;
7063
7063
  /**
7064
7064
  * <p>The tunnel restriction code.</p>
7065
7065
  * <p>Tunnel categories in this list indicate the restrictions which apply to certain tunnels in Great Britain.
@@ -7128,12 +7128,12 @@ export interface RoadSnapTruckOptions {
7128
7128
  * </ul>
7129
7129
  * @public
7130
7130
  */
7131
- TunnelRestrictionCode?: string;
7131
+ TunnelRestrictionCode?: string | undefined;
7132
7132
  /**
7133
7133
  * <p>Width of the vehicle in centimenters.</p>
7134
7134
  * @public
7135
7135
  */
7136
- Width?: number;
7136
+ Width?: number | undefined;
7137
7137
  }
7138
7138
  /**
7139
7139
  * <p>Travel mode related options for the provided travel mode.</p>
@@ -7144,7 +7144,7 @@ export interface RoadSnapTravelModeOptions {
7144
7144
  * <p>Travel mode options when the provided travel mode is "Truck".</p>
7145
7145
  * @public
7146
7146
  */
7147
- Truck?: RoadSnapTruckOptions;
7147
+ Truck?: RoadSnapTruckOptions | undefined;
7148
7148
  }
7149
7149
  /**
7150
7150
  * @public
@@ -7155,14 +7155,14 @@ export interface SnapToRoadsRequest {
7155
7155
  * signature must be provided when making a request. </p>
7156
7156
  * @public
7157
7157
  */
7158
- Key?: string;
7158
+ Key?: string | undefined;
7159
7159
  /**
7160
7160
  * <p>Chooses what the returned SnappedGeometry format should be.</p>
7161
7161
  * <p>Default Value: <code>FlexiblePolyline</code>
7162
7162
  * </p>
7163
7163
  * @public
7164
7164
  */
7165
- SnappedGeometryFormat?: GeometryFormat;
7165
+ SnappedGeometryFormat?: GeometryFormat | undefined;
7166
7166
  /**
7167
7167
  * <p>The radius around the provided tracepoint that is considered for snapping.</p>
7168
7168
  * <p>
@@ -7172,7 +7172,7 @@ export interface SnapToRoadsRequest {
7172
7172
  * </p>
7173
7173
  * @public
7174
7174
  */
7175
- SnapRadius?: number;
7175
+ SnapRadius?: number | undefined;
7176
7176
  /**
7177
7177
  * <p>List of trace points to be snapped onto the road network.</p>
7178
7178
  * @public
@@ -7185,12 +7185,12 @@ export interface SnapToRoadsRequest {
7185
7185
  * </p>
7186
7186
  * @public
7187
7187
  */
7188
- TravelMode?: RoadSnapTravelMode;
7188
+ TravelMode?: RoadSnapTravelMode | undefined;
7189
7189
  /**
7190
7190
  * <p>Travel mode related options for the provided travel mode.</p>
7191
7191
  * @public
7192
7192
  */
7193
- TravelModeOptions?: RoadSnapTravelModeOptions;
7193
+ TravelModeOptions?: RoadSnapTravelModeOptions | undefined;
7194
7194
  }
7195
7195
  /**
7196
7196
  * @public
@@ -7242,7 +7242,7 @@ export interface RoadSnapSnappedGeometry {
7242
7242
  * </note>
7243
7243
  * @public
7244
7244
  */
7245
- LineString?: number[][];
7245
+ LineString?: number[][] | undefined;
7246
7246
  /**
7247
7247
  * <p>An ordered list of positions used to plot a route on a map in a lossy compression format.</p>
7248
7248
  * <note>
@@ -7250,7 +7250,7 @@ export interface RoadSnapSnappedGeometry {
7250
7250
  * </note>
7251
7251
  * @public
7252
7252
  */
7253
- Polyline?: string;
7253
+ Polyline?: string | undefined;
7254
7254
  }
7255
7255
  /**
7256
7256
  * <p>TracePoints snapped onto the road network.</p>
@@ -7291,7 +7291,7 @@ export interface SnapToRoadsResponse {
7291
7291
  * <p>The interpolated geometry for the snapped route onto the road network.</p>
7292
7292
  * @public
7293
7293
  */
7294
- SnappedGeometry?: RoadSnapSnappedGeometry;
7294
+ SnappedGeometry?: RoadSnapSnappedGeometry | undefined;
7295
7295
  /**
7296
7296
  * <p>Specifies the format of the geometry returned for each leg of the route.</p>
7297
7297
  * @public