@aws-sdk/client-geo-routes 3.936.0 → 3.939.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.
- package/dist-cjs/index.js +655 -100
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +487 -0
- package/dist-es/models/models_0.js +1 -487
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +1045 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -1045
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +617 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +68 -617
- package/package.json +2 -2
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { GeoRoutesExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./models/enums";
|
|
7
8
|
export * from "./models/errors";
|
|
8
9
|
export * from "./models/models_0";
|
|
9
10
|
export { GeoRoutesServiceException } from "./models/GeoRoutesServiceException";
|
|
@@ -0,0 +1,617 @@
|
|
|
1
|
+
export declare const IsolineZoneCategory: {
|
|
2
|
+
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
3
|
+
readonly ENVIRONMENTAL: "Environmental";
|
|
4
|
+
readonly VIGNETTE: "Vignette";
|
|
5
|
+
};
|
|
6
|
+
export type IsolineZoneCategory =
|
|
7
|
+
(typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
|
|
8
|
+
export declare const MatchingStrategy: {
|
|
9
|
+
readonly MATCH_ANY: "MatchAny";
|
|
10
|
+
readonly MATCH_MOST_SIGNIFICANT_ROAD: "MatchMostSignificantRoad";
|
|
11
|
+
};
|
|
12
|
+
export type MatchingStrategy =
|
|
13
|
+
(typeof MatchingStrategy)[keyof typeof MatchingStrategy];
|
|
14
|
+
export declare const SideOfStreetMatchingStrategy: {
|
|
15
|
+
readonly ANY_STREET: "AnyStreet";
|
|
16
|
+
readonly DIVIDED_STREET_ONLY: "DividedStreetOnly";
|
|
17
|
+
};
|
|
18
|
+
export type SideOfStreetMatchingStrategy =
|
|
19
|
+
(typeof SideOfStreetMatchingStrategy)[keyof typeof SideOfStreetMatchingStrategy];
|
|
20
|
+
export declare const GeometryFormat: {
|
|
21
|
+
readonly FLEXIBLE_POLYLINE: "FlexiblePolyline";
|
|
22
|
+
readonly SIMPLE: "Simple";
|
|
23
|
+
};
|
|
24
|
+
export type GeometryFormat =
|
|
25
|
+
(typeof GeometryFormat)[keyof typeof GeometryFormat];
|
|
26
|
+
export declare const IsolineOptimizationObjective: {
|
|
27
|
+
readonly ACCURATE_CALCULATION: "AccurateCalculation";
|
|
28
|
+
readonly BALANCED_CALCULATION: "BalancedCalculation";
|
|
29
|
+
readonly FAST_CALCULATION: "FastCalculation";
|
|
30
|
+
};
|
|
31
|
+
export type IsolineOptimizationObjective =
|
|
32
|
+
(typeof IsolineOptimizationObjective)[keyof typeof IsolineOptimizationObjective];
|
|
33
|
+
export declare const RoutingObjective: {
|
|
34
|
+
readonly FASTEST_ROUTE: "FastestRoute";
|
|
35
|
+
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
36
|
+
};
|
|
37
|
+
export type RoutingObjective =
|
|
38
|
+
(typeof RoutingObjective)[keyof typeof RoutingObjective];
|
|
39
|
+
export declare const TrafficUsage: {
|
|
40
|
+
readonly IGNORE_TRAFFIC_DATA: "IgnoreTrafficData";
|
|
41
|
+
readonly USE_TRAFFIC_DATA: "UseTrafficData";
|
|
42
|
+
};
|
|
43
|
+
export type TrafficUsage = (typeof TrafficUsage)[keyof typeof TrafficUsage];
|
|
44
|
+
export declare const IsolineTravelMode: {
|
|
45
|
+
readonly CAR: "Car";
|
|
46
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
47
|
+
readonly SCOOTER: "Scooter";
|
|
48
|
+
readonly TRUCK: "Truck";
|
|
49
|
+
};
|
|
50
|
+
export type IsolineTravelMode =
|
|
51
|
+
(typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
|
|
52
|
+
export declare const IsolineEngineType: {
|
|
53
|
+
readonly ELECTRIC: "Electric";
|
|
54
|
+
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
55
|
+
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
56
|
+
};
|
|
57
|
+
export type IsolineEngineType =
|
|
58
|
+
(typeof IsolineEngineType)[keyof typeof IsolineEngineType];
|
|
59
|
+
export declare const IsolineHazardousCargoType: {
|
|
60
|
+
readonly COMBUSTIBLE: "Combustible";
|
|
61
|
+
readonly CORROSIVE: "Corrosive";
|
|
62
|
+
readonly EXPLOSIVE: "Explosive";
|
|
63
|
+
readonly FLAMMABLE: "Flammable";
|
|
64
|
+
readonly GAS: "Gas";
|
|
65
|
+
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
66
|
+
readonly ORGANIC: "Organic";
|
|
67
|
+
readonly OTHER: "Other";
|
|
68
|
+
readonly POISON: "Poison";
|
|
69
|
+
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
70
|
+
readonly RADIOACTIVE: "Radioactive";
|
|
71
|
+
};
|
|
72
|
+
export type IsolineHazardousCargoType =
|
|
73
|
+
(typeof IsolineHazardousCargoType)[keyof typeof IsolineHazardousCargoType];
|
|
74
|
+
export declare const IsolineTruckType: {
|
|
75
|
+
readonly LIGHT_TRUCK: "LightTruck";
|
|
76
|
+
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
77
|
+
readonly TRACTOR: "Tractor";
|
|
78
|
+
};
|
|
79
|
+
export type IsolineTruckType =
|
|
80
|
+
(typeof IsolineTruckType)[keyof typeof IsolineTruckType];
|
|
81
|
+
export declare const ValidationExceptionReason: {
|
|
82
|
+
readonly CANNOT_PARSE: "CannotParse";
|
|
83
|
+
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
84
|
+
readonly MISSING: "Missing";
|
|
85
|
+
readonly OTHER: "Other";
|
|
86
|
+
readonly UNKNOWN_FIELD: "UnknownField";
|
|
87
|
+
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
88
|
+
};
|
|
89
|
+
export type ValidationExceptionReason =
|
|
90
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
91
|
+
export declare const RouteMatrixZoneCategory: {
|
|
92
|
+
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
93
|
+
readonly ENVIRONMENTAL: "Environmental";
|
|
94
|
+
readonly VIGNETTE: "Vignette";
|
|
95
|
+
};
|
|
96
|
+
export type RouteMatrixZoneCategory =
|
|
97
|
+
(typeof RouteMatrixZoneCategory)[keyof typeof RouteMatrixZoneCategory];
|
|
98
|
+
export declare const RouteMatrixTravelMode: {
|
|
99
|
+
readonly CAR: "Car";
|
|
100
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
101
|
+
readonly SCOOTER: "Scooter";
|
|
102
|
+
readonly TRUCK: "Truck";
|
|
103
|
+
};
|
|
104
|
+
export type RouteMatrixTravelMode =
|
|
105
|
+
(typeof RouteMatrixTravelMode)[keyof typeof RouteMatrixTravelMode];
|
|
106
|
+
export declare const RouteMatrixHazardousCargoType: {
|
|
107
|
+
readonly COMBUSTIBLE: "Combustible";
|
|
108
|
+
readonly CORROSIVE: "Corrosive";
|
|
109
|
+
readonly EXPLOSIVE: "Explosive";
|
|
110
|
+
readonly FLAMMABLE: "Flammable";
|
|
111
|
+
readonly GAS: "Gas";
|
|
112
|
+
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
113
|
+
readonly ORGANIC: "Organic";
|
|
114
|
+
readonly OTHER: "Other";
|
|
115
|
+
readonly POISON: "Poison";
|
|
116
|
+
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
117
|
+
readonly RADIOACTIVE: "Radioactive";
|
|
118
|
+
};
|
|
119
|
+
export type RouteMatrixHazardousCargoType =
|
|
120
|
+
(typeof RouteMatrixHazardousCargoType)[keyof typeof RouteMatrixHazardousCargoType];
|
|
121
|
+
export declare const RouteMatrixTruckType: {
|
|
122
|
+
readonly LIGHT_TRUCK: "LightTruck";
|
|
123
|
+
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
124
|
+
readonly TRACTOR: "Tractor";
|
|
125
|
+
};
|
|
126
|
+
export type RouteMatrixTruckType =
|
|
127
|
+
(typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
|
|
128
|
+
export declare const RouteMatrixErrorCode: {
|
|
129
|
+
readonly NO_MATCH: "NoMatch";
|
|
130
|
+
readonly NO_MATCH_DESTINATION: "NoMatchDestination";
|
|
131
|
+
readonly NO_MATCH_ORIGIN: "NoMatchOrigin";
|
|
132
|
+
readonly NO_ROUTE: "NoRoute";
|
|
133
|
+
readonly OTHER: "Other";
|
|
134
|
+
readonly OUT_OF_BOUNDS: "OutOfBounds";
|
|
135
|
+
readonly OUT_OF_BOUNDS_DESTINATION: "OutOfBoundsDestination";
|
|
136
|
+
readonly OUT_OF_BOUNDS_ORIGIN: "OutOfBoundsOrigin";
|
|
137
|
+
readonly VIOLATION: "Violation";
|
|
138
|
+
};
|
|
139
|
+
export type RouteMatrixErrorCode =
|
|
140
|
+
(typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
|
|
141
|
+
export declare const RouteZoneCategory: {
|
|
142
|
+
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
143
|
+
readonly ENVIRONMENTAL: "Environmental";
|
|
144
|
+
readonly VIGNETTE: "Vignette";
|
|
145
|
+
};
|
|
146
|
+
export type RouteZoneCategory =
|
|
147
|
+
(typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
|
|
148
|
+
export declare const MeasurementSystem: {
|
|
149
|
+
readonly IMPERIAL: "Imperial";
|
|
150
|
+
readonly METRIC: "Metric";
|
|
151
|
+
};
|
|
152
|
+
export type MeasurementSystem =
|
|
153
|
+
(typeof MeasurementSystem)[keyof typeof MeasurementSystem];
|
|
154
|
+
export declare const RouteLegAdditionalFeature: {
|
|
155
|
+
readonly ELEVATION: "Elevation";
|
|
156
|
+
readonly INCIDENTS: "Incidents";
|
|
157
|
+
readonly PASS_THROUGH_WAYPOINTS: "PassThroughWaypoints";
|
|
158
|
+
readonly SUMMARY: "Summary";
|
|
159
|
+
readonly TOLLS: "Tolls";
|
|
160
|
+
readonly TRAVEL_STEP_INSTRUCTIONS: "TravelStepInstructions";
|
|
161
|
+
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
162
|
+
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
163
|
+
readonly ZONES: "Zones";
|
|
164
|
+
};
|
|
165
|
+
export type RouteLegAdditionalFeature =
|
|
166
|
+
(typeof RouteLegAdditionalFeature)[keyof typeof RouteLegAdditionalFeature];
|
|
167
|
+
export declare const RouteSpanAdditionalFeature: {
|
|
168
|
+
readonly BEST_CASE_DURATION: "BestCaseDuration";
|
|
169
|
+
readonly CAR_ACCESS: "CarAccess";
|
|
170
|
+
readonly CONSUMPTION: "Consumption";
|
|
171
|
+
readonly COUNTRY: "Country";
|
|
172
|
+
readonly DISTANCE: "Distance";
|
|
173
|
+
readonly DURATION: "Duration";
|
|
174
|
+
readonly DYNAMIC_SPEED: "DynamicSpeed";
|
|
175
|
+
readonly FUNCTIONAL_CLASSIFICATION: "FunctionalClassification";
|
|
176
|
+
readonly GATES: "Gates";
|
|
177
|
+
readonly INCIDENTS: "Incidents";
|
|
178
|
+
readonly NAMES: "Names";
|
|
179
|
+
readonly NOTICES: "Notices";
|
|
180
|
+
readonly PEDESTRIAN_ACCESS: "PedestrianAccess";
|
|
181
|
+
readonly RAILWAY_CROSSINGS: "RailwayCrossings";
|
|
182
|
+
readonly REGION: "Region";
|
|
183
|
+
readonly ROAD_ATTRIBUTES: "RoadAttributes";
|
|
184
|
+
readonly ROUTE_NUMBERS: "RouteNumbers";
|
|
185
|
+
readonly SCOOTER_ACCESS: "ScooterAccess";
|
|
186
|
+
readonly SPEED_LIMIT: "SpeedLimit";
|
|
187
|
+
readonly TOLL_SYSTEMS: "TollSystems";
|
|
188
|
+
readonly TRUCK_ACCESS: "TruckAccess";
|
|
189
|
+
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
190
|
+
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
191
|
+
readonly ZONES: "Zones";
|
|
192
|
+
};
|
|
193
|
+
export type RouteSpanAdditionalFeature =
|
|
194
|
+
(typeof RouteSpanAdditionalFeature)[keyof typeof RouteSpanAdditionalFeature];
|
|
195
|
+
export declare const RouteTollVehicleCategory: {
|
|
196
|
+
readonly MINIBUS: "Minibus";
|
|
197
|
+
};
|
|
198
|
+
export type RouteTollVehicleCategory =
|
|
199
|
+
(typeof RouteTollVehicleCategory)[keyof typeof RouteTollVehicleCategory];
|
|
200
|
+
export declare const RouteTravelMode: {
|
|
201
|
+
readonly CAR: "Car";
|
|
202
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
203
|
+
readonly SCOOTER: "Scooter";
|
|
204
|
+
readonly TRUCK: "Truck";
|
|
205
|
+
};
|
|
206
|
+
export type RouteTravelMode =
|
|
207
|
+
(typeof RouteTravelMode)[keyof typeof RouteTravelMode];
|
|
208
|
+
export declare const RouteEngineType: {
|
|
209
|
+
readonly ELECTRIC: "Electric";
|
|
210
|
+
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
211
|
+
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
212
|
+
};
|
|
213
|
+
export type RouteEngineType =
|
|
214
|
+
(typeof RouteEngineType)[keyof typeof RouteEngineType];
|
|
215
|
+
export declare const RouteHazardousCargoType: {
|
|
216
|
+
readonly COMBUSTIBLE: "Combustible";
|
|
217
|
+
readonly CORROSIVE: "Corrosive";
|
|
218
|
+
readonly EXPLOSIVE: "Explosive";
|
|
219
|
+
readonly FLAMMABLE: "Flammable";
|
|
220
|
+
readonly GAS: "Gas";
|
|
221
|
+
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
222
|
+
readonly ORGANIC: "Organic";
|
|
223
|
+
readonly OTHER: "Other";
|
|
224
|
+
readonly POISON: "Poison";
|
|
225
|
+
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
226
|
+
readonly RADIOACTIVE: "Radioactive";
|
|
227
|
+
};
|
|
228
|
+
export type RouteHazardousCargoType =
|
|
229
|
+
(typeof RouteHazardousCargoType)[keyof typeof RouteHazardousCargoType];
|
|
230
|
+
export declare const RouteTruckType: {
|
|
231
|
+
readonly LIGHT_TRUCK: "LightTruck";
|
|
232
|
+
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
233
|
+
readonly TRACTOR: "Tractor";
|
|
234
|
+
};
|
|
235
|
+
export type RouteTruckType =
|
|
236
|
+
(typeof RouteTruckType)[keyof typeof RouteTruckType];
|
|
237
|
+
export declare const RouteTravelStepType: {
|
|
238
|
+
readonly DEFAULT: "Default";
|
|
239
|
+
readonly TURN_BY_TURN: "TurnByTurn";
|
|
240
|
+
};
|
|
241
|
+
export type RouteTravelStepType =
|
|
242
|
+
(typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
|
|
243
|
+
export declare const RouteResponseNoticeCode: {
|
|
244
|
+
readonly MAIN_LANGUAGE_NOT_FOUND: "MainLanguageNotFound";
|
|
245
|
+
readonly OTHER: "Other";
|
|
246
|
+
readonly TRAVEL_TIME_EXCEEDS_DRIVER_WORK_HOURS: "TravelTimeExceedsDriverWorkHours";
|
|
247
|
+
};
|
|
248
|
+
export type RouteResponseNoticeCode =
|
|
249
|
+
(typeof RouteResponseNoticeCode)[keyof typeof RouteResponseNoticeCode];
|
|
250
|
+
export declare const RouteNoticeImpact: {
|
|
251
|
+
readonly HIGH: "High";
|
|
252
|
+
readonly LOW: "Low";
|
|
253
|
+
};
|
|
254
|
+
export type RouteNoticeImpact =
|
|
255
|
+
(typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
|
|
256
|
+
export declare const RouteFerryAfterTravelStepType: {
|
|
257
|
+
readonly DEBOARD: "Deboard";
|
|
258
|
+
};
|
|
259
|
+
export type RouteFerryAfterTravelStepType =
|
|
260
|
+
(typeof RouteFerryAfterTravelStepType)[keyof typeof RouteFerryAfterTravelStepType];
|
|
261
|
+
export declare const RouteFerryBeforeTravelStepType: {
|
|
262
|
+
readonly BOARD: "Board";
|
|
263
|
+
};
|
|
264
|
+
export type RouteFerryBeforeTravelStepType =
|
|
265
|
+
(typeof RouteFerryBeforeTravelStepType)[keyof typeof RouteFerryBeforeTravelStepType];
|
|
266
|
+
export declare const RouteFerryNoticeCode: {
|
|
267
|
+
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
268
|
+
readonly NO_SCHEDULE: "NoSchedule";
|
|
269
|
+
readonly OTHER: "Other";
|
|
270
|
+
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
271
|
+
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
272
|
+
readonly VIOLATED_AVOID_FERRY: "ViolatedAvoidFerry";
|
|
273
|
+
readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
|
|
274
|
+
};
|
|
275
|
+
export type RouteFerryNoticeCode =
|
|
276
|
+
(typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
|
|
277
|
+
export declare const RouteFerryTravelStepType: {
|
|
278
|
+
readonly ARRIVE: "Arrive";
|
|
279
|
+
readonly CONTINUE: "Continue";
|
|
280
|
+
readonly DEPART: "Depart";
|
|
281
|
+
};
|
|
282
|
+
export type RouteFerryTravelStepType =
|
|
283
|
+
(typeof RouteFerryTravelStepType)[keyof typeof RouteFerryTravelStepType];
|
|
284
|
+
export declare const RouteSideOfStreet: {
|
|
285
|
+
readonly LEFT: "Left";
|
|
286
|
+
readonly RIGHT: "Right";
|
|
287
|
+
};
|
|
288
|
+
export type RouteSideOfStreet =
|
|
289
|
+
(typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
|
|
290
|
+
export declare const RoutePedestrianNoticeCode: {
|
|
291
|
+
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
292
|
+
readonly OTHER: "Other";
|
|
293
|
+
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
294
|
+
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
295
|
+
readonly VIOLATED_PEDESTRIAN_OPTION: "ViolatedPedestrianOption";
|
|
296
|
+
};
|
|
297
|
+
export type RoutePedestrianNoticeCode =
|
|
298
|
+
(typeof RoutePedestrianNoticeCode)[keyof typeof RoutePedestrianNoticeCode];
|
|
299
|
+
export declare const RouteSpanPedestrianAccessAttribute: {
|
|
300
|
+
readonly ALLOWED: "Allowed";
|
|
301
|
+
readonly INDOORS: "Indoors";
|
|
302
|
+
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
303
|
+
readonly PARK: "Park";
|
|
304
|
+
readonly STAIRS: "Stairs";
|
|
305
|
+
readonly TOLL_ROAD: "TollRoad";
|
|
306
|
+
};
|
|
307
|
+
export type RouteSpanPedestrianAccessAttribute =
|
|
308
|
+
(typeof RouteSpanPedestrianAccessAttribute)[keyof typeof RouteSpanPedestrianAccessAttribute];
|
|
309
|
+
export declare const RouteSpanRoadAttribute: {
|
|
310
|
+
readonly BRIDGE: "Bridge";
|
|
311
|
+
readonly BUILT_UP_AREA: "BuiltUpArea";
|
|
312
|
+
readonly CONTROLLED_ACCESS_HIGHWAY: "ControlledAccessHighway";
|
|
313
|
+
readonly DIRT_ROAD: "DirtRoad";
|
|
314
|
+
readonly DIVIDED_ROAD: "DividedRoad";
|
|
315
|
+
readonly MOTORWAY: "Motorway";
|
|
316
|
+
readonly PRIVATE_ROAD: "PrivateRoad";
|
|
317
|
+
readonly RAMP: "Ramp";
|
|
318
|
+
readonly RIGHT_HAND_TRAFFIC: "RightHandTraffic";
|
|
319
|
+
readonly ROUNDABOUT: "Roundabout";
|
|
320
|
+
readonly TUNNEL: "Tunnel";
|
|
321
|
+
readonly UNDER_CONSTRUCTION: "UnderConstruction";
|
|
322
|
+
};
|
|
323
|
+
export type RouteSpanRoadAttribute =
|
|
324
|
+
(typeof RouteSpanRoadAttribute)[keyof typeof RouteSpanRoadAttribute];
|
|
325
|
+
export declare const RouteDirection: {
|
|
326
|
+
readonly EAST: "East";
|
|
327
|
+
readonly NORTH: "North";
|
|
328
|
+
readonly SOUTH: "South";
|
|
329
|
+
readonly WEST: "West";
|
|
330
|
+
};
|
|
331
|
+
export type RouteDirection =
|
|
332
|
+
(typeof RouteDirection)[keyof typeof RouteDirection];
|
|
333
|
+
export declare const RouteRoadType: {
|
|
334
|
+
readonly HIGHWAY: "Highway";
|
|
335
|
+
readonly RURAL: "Rural";
|
|
336
|
+
readonly URBAN: "Urban";
|
|
337
|
+
};
|
|
338
|
+
export type RouteRoadType = (typeof RouteRoadType)[keyof typeof RouteRoadType];
|
|
339
|
+
export declare const RouteSteeringDirection: {
|
|
340
|
+
readonly LEFT: "Left";
|
|
341
|
+
readonly RIGHT: "Right";
|
|
342
|
+
readonly STRAIGHT: "Straight";
|
|
343
|
+
};
|
|
344
|
+
export type RouteSteeringDirection =
|
|
345
|
+
(typeof RouteSteeringDirection)[keyof typeof RouteSteeringDirection];
|
|
346
|
+
export declare const RouteTurnIntensity: {
|
|
347
|
+
readonly SHARP: "Sharp";
|
|
348
|
+
readonly SLIGHT: "Slight";
|
|
349
|
+
readonly TYPICAL: "Typical";
|
|
350
|
+
};
|
|
351
|
+
export type RouteTurnIntensity =
|
|
352
|
+
(typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
|
|
353
|
+
export declare const RoutePedestrianTravelStepType: {
|
|
354
|
+
readonly ARRIVE: "Arrive";
|
|
355
|
+
readonly CONTINUE: "Continue";
|
|
356
|
+
readonly DEPART: "Depart";
|
|
357
|
+
readonly EXIT: "Exit";
|
|
358
|
+
readonly KEEP: "Keep";
|
|
359
|
+
readonly RAMP: "Ramp";
|
|
360
|
+
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
361
|
+
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
362
|
+
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
363
|
+
readonly TURN: "Turn";
|
|
364
|
+
readonly U_TURN: "UTurn";
|
|
365
|
+
};
|
|
366
|
+
export type RoutePedestrianTravelStepType =
|
|
367
|
+
(typeof RoutePedestrianTravelStepType)[keyof typeof RoutePedestrianTravelStepType];
|
|
368
|
+
export declare const RouteLegTravelMode: {
|
|
369
|
+
readonly CAR: "Car";
|
|
370
|
+
readonly CAR_SHUTTLE_TRAIN: "CarShuttleTrain";
|
|
371
|
+
readonly FERRY: "Ferry";
|
|
372
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
373
|
+
readonly SCOOTER: "Scooter";
|
|
374
|
+
readonly TRUCK: "Truck";
|
|
375
|
+
};
|
|
376
|
+
export type RouteLegTravelMode =
|
|
377
|
+
(typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
|
|
378
|
+
export declare const RouteLegType: {
|
|
379
|
+
readonly FERRY: "Ferry";
|
|
380
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
381
|
+
readonly VEHICLE: "Vehicle";
|
|
382
|
+
};
|
|
383
|
+
export type RouteLegType = (typeof RouteLegType)[keyof typeof RouteLegType];
|
|
384
|
+
export declare const RouteVehicleIncidentSeverity: {
|
|
385
|
+
readonly CRITICAL: "Critical";
|
|
386
|
+
readonly HIGH: "High";
|
|
387
|
+
readonly LOW: "Low";
|
|
388
|
+
readonly MEDIUM: "Medium";
|
|
389
|
+
};
|
|
390
|
+
export type RouteVehicleIncidentSeverity =
|
|
391
|
+
(typeof RouteVehicleIncidentSeverity)[keyof typeof RouteVehicleIncidentSeverity];
|
|
392
|
+
export declare const RouteVehicleIncidentType: {
|
|
393
|
+
readonly ACCIDENT: "Accident";
|
|
394
|
+
readonly CONGESTION: "Congestion";
|
|
395
|
+
readonly CONSTRUCTION: "Construction";
|
|
396
|
+
readonly DISABLED_VEHICLE: "DisabledVehicle";
|
|
397
|
+
readonly LANE_RESTRICTION: "LaneRestriction";
|
|
398
|
+
readonly MASS_TRANSIT: "MassTransit";
|
|
399
|
+
readonly OTHER: "Other";
|
|
400
|
+
readonly PLANNED_EVENT: "PlannedEvent";
|
|
401
|
+
readonly ROAD_CLOSURE: "RoadClosure";
|
|
402
|
+
readonly ROAD_HAZARD: "RoadHazard";
|
|
403
|
+
readonly WEATHER: "Weather";
|
|
404
|
+
};
|
|
405
|
+
export type RouteVehicleIncidentType =
|
|
406
|
+
(typeof RouteVehicleIncidentType)[keyof typeof RouteVehicleIncidentType];
|
|
407
|
+
export declare const RouteVehicleNoticeCode: {
|
|
408
|
+
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
409
|
+
readonly OTHER: "Other";
|
|
410
|
+
readonly POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE: "PotentialViolatedAvoidTollRoadUsage";
|
|
411
|
+
readonly POTENTIAL_VIOLATED_CARPOOL_USAGE: "PotentialViolatedCarpoolUsage";
|
|
412
|
+
readonly POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE: "PotentialViolatedTurnRestrictionUsage";
|
|
413
|
+
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
414
|
+
readonly POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE: "PotentialViolatedZoneRestrictionUsage";
|
|
415
|
+
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
416
|
+
readonly TOLLS_DATA_TEMPORARILY_UNAVAILABLE: "TollsDataTemporarilyUnavailable";
|
|
417
|
+
readonly TOLLS_DATA_UNAVAILABLE: "TollsDataUnavailable";
|
|
418
|
+
readonly TOLL_TRANSPONDER: "TollTransponder";
|
|
419
|
+
readonly VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY: "ViolatedAvoidControlledAccessHighway";
|
|
420
|
+
readonly VIOLATED_AVOID_DIFFICULT_TURNS: "ViolatedAvoidDifficultTurns";
|
|
421
|
+
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
422
|
+
readonly VIOLATED_AVOID_SEASONAL_CLOSURE: "ViolatedAvoidSeasonalClosure";
|
|
423
|
+
readonly VIOLATED_AVOID_TOLL_ROAD: "ViolatedAvoidTollRoad";
|
|
424
|
+
readonly VIOLATED_AVOID_TOLL_TRANSPONDER: "ViolatedAvoidTollTransponder";
|
|
425
|
+
readonly VIOLATED_AVOID_TRUCK_ROAD_TYPE: "ViolatedAvoidTruckRoadType";
|
|
426
|
+
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
427
|
+
readonly VIOLATED_AVOID_U_TURNS: "ViolatedAvoidUTurns";
|
|
428
|
+
readonly VIOLATED_BLOCKED_ROAD: "ViolatedBlockedRoad";
|
|
429
|
+
readonly VIOLATED_CARPOOL: "ViolatedCarpool";
|
|
430
|
+
readonly VIOLATED_EMERGENCY_GATE: "ViolatedEmergencyGate";
|
|
431
|
+
readonly VIOLATED_START_DIRECTION: "ViolatedStartDirection";
|
|
432
|
+
readonly VIOLATED_TURN_RESTRICTION: "ViolatedTurnRestriction";
|
|
433
|
+
readonly VIOLATED_VEHICLE_RESTRICTION: "ViolatedVehicleRestriction";
|
|
434
|
+
readonly VIOLATED_ZONE_RESTRICTION: "ViolatedZoneRestriction";
|
|
435
|
+
};
|
|
436
|
+
export type RouteVehicleNoticeCode =
|
|
437
|
+
(typeof RouteVehicleNoticeCode)[keyof typeof RouteVehicleNoticeCode];
|
|
438
|
+
export declare const RouteWeightConstraintType: {
|
|
439
|
+
readonly CURRENT: "Current";
|
|
440
|
+
readonly GROSS: "Gross";
|
|
441
|
+
readonly UNKNOWN: "Unknown";
|
|
442
|
+
};
|
|
443
|
+
export type RouteWeightConstraintType =
|
|
444
|
+
(typeof RouteWeightConstraintType)[keyof typeof RouteWeightConstraintType];
|
|
445
|
+
export declare const RouteSpanCarAccessAttribute: {
|
|
446
|
+
readonly ALLOWED: "Allowed";
|
|
447
|
+
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
448
|
+
readonly TOLL_ROAD: "TollRoad";
|
|
449
|
+
};
|
|
450
|
+
export type RouteSpanCarAccessAttribute =
|
|
451
|
+
(typeof RouteSpanCarAccessAttribute)[keyof typeof RouteSpanCarAccessAttribute];
|
|
452
|
+
export declare const RouteSpanGateAttribute: {
|
|
453
|
+
readonly EMERGENCY: "Emergency";
|
|
454
|
+
readonly KEY_ACCESS: "KeyAccess";
|
|
455
|
+
readonly PERMISSION_REQUIRED: "PermissionRequired";
|
|
456
|
+
};
|
|
457
|
+
export type RouteSpanGateAttribute =
|
|
458
|
+
(typeof RouteSpanGateAttribute)[keyof typeof RouteSpanGateAttribute];
|
|
459
|
+
export declare const RouteSpanRailwayCrossingAttribute: {
|
|
460
|
+
readonly PROTECTED: "Protected";
|
|
461
|
+
readonly UNPROTECTED: "Unprotected";
|
|
462
|
+
};
|
|
463
|
+
export type RouteSpanRailwayCrossingAttribute =
|
|
464
|
+
(typeof RouteSpanRailwayCrossingAttribute)[keyof typeof RouteSpanRailwayCrossingAttribute];
|
|
465
|
+
export declare const RouteSpanScooterAccessAttribute: {
|
|
466
|
+
readonly ALLOWED: "Allowed";
|
|
467
|
+
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
468
|
+
readonly TOLL_ROAD: "TollRoad";
|
|
469
|
+
};
|
|
470
|
+
export type RouteSpanScooterAccessAttribute =
|
|
471
|
+
(typeof RouteSpanScooterAccessAttribute)[keyof typeof RouteSpanScooterAccessAttribute];
|
|
472
|
+
export declare const RouteSpanTruckAccessAttribute: {
|
|
473
|
+
readonly ALLOWED: "Allowed";
|
|
474
|
+
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
475
|
+
readonly TOLL_ROAD: "TollRoad";
|
|
476
|
+
};
|
|
477
|
+
export type RouteSpanTruckAccessAttribute =
|
|
478
|
+
(typeof RouteSpanTruckAccessAttribute)[keyof typeof RouteSpanTruckAccessAttribute];
|
|
479
|
+
export declare const RouteTollPassValidityPeriodType: {
|
|
480
|
+
readonly ANNUAL: "Annual";
|
|
481
|
+
readonly DAYS: "Days";
|
|
482
|
+
readonly EXTENDED_ANNUAL: "ExtendedAnnual";
|
|
483
|
+
readonly MINUTES: "Minutes";
|
|
484
|
+
readonly MONTHS: "Months";
|
|
485
|
+
};
|
|
486
|
+
export type RouteTollPassValidityPeriodType =
|
|
487
|
+
(typeof RouteTollPassValidityPeriodType)[keyof typeof RouteTollPassValidityPeriodType];
|
|
488
|
+
export declare const RouteTollPaymentMethod: {
|
|
489
|
+
readonly BANK_CARD: "BankCard";
|
|
490
|
+
readonly CASH: "Cash";
|
|
491
|
+
readonly CASH_EXACT: "CashExact";
|
|
492
|
+
readonly CREDIT_CARD: "CreditCard";
|
|
493
|
+
readonly PASS_SUBSCRIPTION: "PassSubscription";
|
|
494
|
+
readonly TRANSPONDER: "Transponder";
|
|
495
|
+
readonly TRAVEL_CARD: "TravelCard";
|
|
496
|
+
readonly VIDEO_TOLL: "VideoToll";
|
|
497
|
+
};
|
|
498
|
+
export type RouteTollPaymentMethod =
|
|
499
|
+
(typeof RouteTollPaymentMethod)[keyof typeof RouteTollPaymentMethod];
|
|
500
|
+
export declare const RouteVehicleTravelStepType: {
|
|
501
|
+
readonly ARRIVE: "Arrive";
|
|
502
|
+
readonly CONTINUE: "Continue";
|
|
503
|
+
readonly CONTINUE_HIGHWAY: "ContinueHighway";
|
|
504
|
+
readonly DEPART: "Depart";
|
|
505
|
+
readonly ENTER_HIGHWAY: "EnterHighway";
|
|
506
|
+
readonly EXIT: "Exit";
|
|
507
|
+
readonly KEEP: "Keep";
|
|
508
|
+
readonly RAMP: "Ramp";
|
|
509
|
+
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
510
|
+
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
511
|
+
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
512
|
+
readonly TURN: "Turn";
|
|
513
|
+
readonly U_TURN: "UTurn";
|
|
514
|
+
};
|
|
515
|
+
export type RouteVehicleTravelStepType =
|
|
516
|
+
(typeof RouteVehicleTravelStepType)[keyof typeof RouteVehicleTravelStepType];
|
|
517
|
+
export declare const DayOfWeek: {
|
|
518
|
+
readonly FRIDAY: "Friday";
|
|
519
|
+
readonly MONDAY: "Monday";
|
|
520
|
+
readonly SATURDAY: "Saturday";
|
|
521
|
+
readonly SUNDAY: "Sunday";
|
|
522
|
+
readonly THURSDAY: "Thursday";
|
|
523
|
+
readonly TUESDAY: "Tuesday";
|
|
524
|
+
readonly WEDNESDAY: "Wednesday";
|
|
525
|
+
};
|
|
526
|
+
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
527
|
+
export declare const WaypointOptimizationClusteringAlgorithm: {
|
|
528
|
+
readonly DRIVING_DISTANCE: "DrivingDistance";
|
|
529
|
+
readonly TOPOLOGY_SEGMENT: "TopologySegment";
|
|
530
|
+
};
|
|
531
|
+
export type WaypointOptimizationClusteringAlgorithm =
|
|
532
|
+
(typeof WaypointOptimizationClusteringAlgorithm)[keyof typeof WaypointOptimizationClusteringAlgorithm];
|
|
533
|
+
export declare const WaypointOptimizationServiceTimeTreatment: {
|
|
534
|
+
readonly REST: "Rest";
|
|
535
|
+
readonly WORK: "Work";
|
|
536
|
+
};
|
|
537
|
+
export type WaypointOptimizationServiceTimeTreatment =
|
|
538
|
+
(typeof WaypointOptimizationServiceTimeTreatment)[keyof typeof WaypointOptimizationServiceTimeTreatment];
|
|
539
|
+
export declare const WaypointOptimizationSequencingObjective: {
|
|
540
|
+
readonly FASTEST_ROUTE: "FastestRoute";
|
|
541
|
+
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
542
|
+
};
|
|
543
|
+
export type WaypointOptimizationSequencingObjective =
|
|
544
|
+
(typeof WaypointOptimizationSequencingObjective)[keyof typeof WaypointOptimizationSequencingObjective];
|
|
545
|
+
export declare const WaypointOptimizationTravelMode: {
|
|
546
|
+
readonly CAR: "Car";
|
|
547
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
548
|
+
readonly SCOOTER: "Scooter";
|
|
549
|
+
readonly TRUCK: "Truck";
|
|
550
|
+
};
|
|
551
|
+
export type WaypointOptimizationTravelMode =
|
|
552
|
+
(typeof WaypointOptimizationTravelMode)[keyof typeof WaypointOptimizationTravelMode];
|
|
553
|
+
export declare const WaypointOptimizationHazardousCargoType: {
|
|
554
|
+
readonly COMBUSTIBLE: "Combustible";
|
|
555
|
+
readonly CORROSIVE: "Corrosive";
|
|
556
|
+
readonly EXPLOSIVE: "Explosive";
|
|
557
|
+
readonly FLAMMABLE: "Flammable";
|
|
558
|
+
readonly GAS: "Gas";
|
|
559
|
+
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
560
|
+
readonly ORGANIC: "Organic";
|
|
561
|
+
readonly OTHER: "Other";
|
|
562
|
+
readonly POISON: "Poison";
|
|
563
|
+
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
564
|
+
readonly RADIOACTIVE: "Radioactive";
|
|
565
|
+
};
|
|
566
|
+
export type WaypointOptimizationHazardousCargoType =
|
|
567
|
+
(typeof WaypointOptimizationHazardousCargoType)[keyof typeof WaypointOptimizationHazardousCargoType];
|
|
568
|
+
export declare const WaypointOptimizationTruckType: {
|
|
569
|
+
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
570
|
+
readonly TRACTOR: "Tractor";
|
|
571
|
+
};
|
|
572
|
+
export type WaypointOptimizationTruckType =
|
|
573
|
+
(typeof WaypointOptimizationTruckType)[keyof typeof WaypointOptimizationTruckType];
|
|
574
|
+
export declare const WaypointOptimizationConstraint: {
|
|
575
|
+
readonly ACCESS_HOURS: "AccessHours";
|
|
576
|
+
readonly APPOINTMENT_TIME: "AppointmentTime";
|
|
577
|
+
readonly BEFORE: "Before";
|
|
578
|
+
readonly HEADING: "Heading";
|
|
579
|
+
readonly SERVICE_DURATION: "ServiceDuration";
|
|
580
|
+
readonly SIDE_OF_STREET: "SideOfStreet";
|
|
581
|
+
};
|
|
582
|
+
export type WaypointOptimizationConstraint =
|
|
583
|
+
(typeof WaypointOptimizationConstraint)[keyof typeof WaypointOptimizationConstraint];
|
|
584
|
+
export declare const RoadSnapTravelMode: {
|
|
585
|
+
readonly CAR: "Car";
|
|
586
|
+
readonly PEDESTRIAN: "Pedestrian";
|
|
587
|
+
readonly SCOOTER: "Scooter";
|
|
588
|
+
readonly TRUCK: "Truck";
|
|
589
|
+
};
|
|
590
|
+
export type RoadSnapTravelMode =
|
|
591
|
+
(typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
|
|
592
|
+
export declare const RoadSnapHazardousCargoType: {
|
|
593
|
+
readonly COMBUSTIBLE: "Combustible";
|
|
594
|
+
readonly CORROSIVE: "Corrosive";
|
|
595
|
+
readonly EXPLOSIVE: "Explosive";
|
|
596
|
+
readonly FLAMMABLE: "Flammable";
|
|
597
|
+
readonly GAS: "Gas";
|
|
598
|
+
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
599
|
+
readonly ORGANIC: "Organic";
|
|
600
|
+
readonly OTHER: "Other";
|
|
601
|
+
readonly POISON: "Poison";
|
|
602
|
+
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
603
|
+
readonly RADIOACTIVE: "Radioactive";
|
|
604
|
+
};
|
|
605
|
+
export type RoadSnapHazardousCargoType =
|
|
606
|
+
(typeof RoadSnapHazardousCargoType)[keyof typeof RoadSnapHazardousCargoType];
|
|
607
|
+
export declare const RoadSnapNoticeCode: {
|
|
608
|
+
readonly TRACE_POINTS_HEADING_IGNORED: "TracePointsHeadingIgnored";
|
|
609
|
+
readonly TRACE_POINTS_IGNORED: "TracePointsIgnored";
|
|
610
|
+
readonly TRACE_POINTS_MOVED_BY_LARGE_DISTANCE: "TracePointsMovedByLargeDistance";
|
|
611
|
+
readonly TRACE_POINTS_NOT_MATCHED: "TracePointsNotMatched";
|
|
612
|
+
readonly TRACE_POINTS_OUT_OF_SEQUENCE: "TracePointsOutOfSequence";
|
|
613
|
+
readonly TRACE_POINTS_SPEED_ESTIMATED: "TracePointsSpeedEstimated";
|
|
614
|
+
readonly TRACE_POINTS_SPEED_IGNORED: "TracePointsSpeedIgnored";
|
|
615
|
+
};
|
|
616
|
+
export type RoadSnapNoticeCode =
|
|
617
|
+
(typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
2
3
|
import { GeoRoutesServiceException as __BaseException } from "./GeoRoutesServiceException";
|
|
3
|
-
import {
|
|
4
|
-
ValidationExceptionField,
|
|
5
|
-
ValidationExceptionReason,
|
|
6
|
-
} from "./models_0";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
7
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
6
|
readonly name: "AccessDeniedException";
|
|
9
7
|
readonly $fault: "client";
|