@aws-sdk/client-location 3.428.0 → 3.429.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.
|
@@ -27,7 +27,7 @@ export interface ApiKeyFilter {
|
|
|
27
27
|
* @public
|
|
28
28
|
* <p>Filter on <code>Active</code> or <code>Expired</code> API keys.</p>
|
|
29
29
|
*/
|
|
30
|
-
KeyStatus?: Status
|
|
30
|
+
KeyStatus?: Status;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @public
|
|
@@ -366,7 +366,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
366
366
|
* @public
|
|
367
367
|
* <p>A message with the reason for the validation exception error.</p>
|
|
368
368
|
*/
|
|
369
|
-
Reason: ValidationExceptionReason |
|
|
369
|
+
Reason: ValidationExceptionReason | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* @public
|
|
372
372
|
* <p>The field where the invalid entry was detected.</p>
|
|
@@ -696,7 +696,7 @@ export interface BatchItemError {
|
|
|
696
696
|
* @public
|
|
697
697
|
* <p>The error code associated with the batch request error.</p>
|
|
698
698
|
*/
|
|
699
|
-
Code?: BatchItemErrorCode
|
|
699
|
+
Code?: BatchItemErrorCode;
|
|
700
700
|
/**
|
|
701
701
|
* @public
|
|
702
702
|
* <p>A message with the reason for the batch request error.</p>
|
|
@@ -1265,7 +1265,7 @@ export interface TruckDimensions {
|
|
|
1265
1265
|
* <p>Default Value: <code>Meters</code>
|
|
1266
1266
|
* </p>
|
|
1267
1267
|
*/
|
|
1268
|
-
Unit?: DimensionUnit
|
|
1268
|
+
Unit?: DimensionUnit;
|
|
1269
1269
|
}
|
|
1270
1270
|
/**
|
|
1271
1271
|
* @public
|
|
@@ -1294,7 +1294,7 @@ export interface TruckWeight {
|
|
|
1294
1294
|
* <p>Default Value: <code>Kilograms</code>
|
|
1295
1295
|
* </p>
|
|
1296
1296
|
*/
|
|
1297
|
-
Unit?: VehicleWeightUnit
|
|
1297
|
+
Unit?: VehicleWeightUnit;
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
1300
|
* @public
|
|
@@ -1439,7 +1439,7 @@ export interface CalculateRouteRequest {
|
|
|
1439
1439
|
* <p>Default Value: <code>Car</code>
|
|
1440
1440
|
* </p>
|
|
1441
1441
|
*/
|
|
1442
|
-
TravelMode?: TravelMode
|
|
1442
|
+
TravelMode?: TravelMode;
|
|
1443
1443
|
/**
|
|
1444
1444
|
* @public
|
|
1445
1445
|
* <p>Specifies the desired time of departure. Uses the given time to calculate the route.
|
|
@@ -1476,7 +1476,7 @@ export interface CalculateRouteRequest {
|
|
|
1476
1476
|
* <p>Default Value: <code>Kilometers</code>
|
|
1477
1477
|
* </p>
|
|
1478
1478
|
*/
|
|
1479
|
-
DistanceUnit?: DistanceUnit
|
|
1479
|
+
DistanceUnit?: DistanceUnit;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* @public
|
|
1482
1482
|
* <p>Set to include the geometry details in the result for each path between a pair of
|
|
@@ -1732,7 +1732,7 @@ export interface CalculateRouteSummary {
|
|
|
1732
1732
|
* @public
|
|
1733
1733
|
* <p>The unit of measurement for route distances.</p>
|
|
1734
1734
|
*/
|
|
1735
|
-
DistanceUnit: DistanceUnit |
|
|
1735
|
+
DistanceUnit: DistanceUnit | undefined;
|
|
1736
1736
|
}
|
|
1737
1737
|
/**
|
|
1738
1738
|
* @public
|
|
@@ -1860,7 +1860,7 @@ export interface CalculateRouteMatrixRequest {
|
|
|
1860
1860
|
* <p>Default Value: <code>Car</code>
|
|
1861
1861
|
* </p>
|
|
1862
1862
|
*/
|
|
1863
|
-
TravelMode?: TravelMode
|
|
1863
|
+
TravelMode?: TravelMode;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* @public
|
|
1866
1866
|
* <p>Specifies the desired time of departure. Uses the given time to calculate the route
|
|
@@ -1899,7 +1899,7 @@ export interface CalculateRouteMatrixRequest {
|
|
|
1899
1899
|
* <p>Default Value: <code>Kilometers</code>
|
|
1900
1900
|
* </p>
|
|
1901
1901
|
*/
|
|
1902
|
-
DistanceUnit?: DistanceUnit
|
|
1902
|
+
DistanceUnit?: DistanceUnit;
|
|
1903
1903
|
/**
|
|
1904
1904
|
* @public
|
|
1905
1905
|
* <p>Specifies route preferences when traveling by <code>Car</code>, such as avoiding
|
|
@@ -1981,7 +1981,7 @@ export interface RouteMatrixEntryError {
|
|
|
1981
1981
|
* @public
|
|
1982
1982
|
* <p>The type of error which occurred for the route calculation.</p>
|
|
1983
1983
|
*/
|
|
1984
|
-
Code: RouteMatrixErrorCode |
|
|
1984
|
+
Code: RouteMatrixErrorCode | undefined;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
1987
1987
|
* <p>A message about the error that occurred for the route calculation.</p>
|
|
@@ -2058,7 +2058,7 @@ export interface CalculateRouteMatrixSummary {
|
|
|
2058
2058
|
* @public
|
|
2059
2059
|
* <p>The unit of measurement for route distances.</p>
|
|
2060
2060
|
*/
|
|
2061
|
-
DistanceUnit: DistanceUnit |
|
|
2061
|
+
DistanceUnit: DistanceUnit | undefined;
|
|
2062
2062
|
}
|
|
2063
2063
|
/**
|
|
2064
2064
|
* @public
|
|
@@ -2129,7 +2129,7 @@ export interface CreateGeofenceCollectionRequest {
|
|
|
2129
2129
|
* <p>No longer used. If included, the only allowed value is
|
|
2130
2130
|
* <code>RequestBasedUsage</code>.</p>
|
|
2131
2131
|
*/
|
|
2132
|
-
PricingPlan?: PricingPlan
|
|
2132
|
+
PricingPlan?: PricingPlan;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* @public
|
|
2135
2135
|
* @deprecated
|
|
@@ -2410,7 +2410,7 @@ export interface CreateMapRequest {
|
|
|
2410
2410
|
* <p>No longer used. If included, the only allowed value is
|
|
2411
2411
|
* <code>RequestBasedUsage</code>.</p>
|
|
2412
2412
|
*/
|
|
2413
|
-
PricingPlan?: PricingPlan
|
|
2413
|
+
PricingPlan?: PricingPlan;
|
|
2414
2414
|
/**
|
|
2415
2415
|
* @public
|
|
2416
2416
|
* <p>An optional description for the map resource.</p>
|
|
@@ -2520,7 +2520,7 @@ export interface DataSourceConfiguration {
|
|
|
2520
2520
|
* <p>Default value: <code>SingleUse</code>
|
|
2521
2521
|
* </p>
|
|
2522
2522
|
*/
|
|
2523
|
-
IntendedUse?: IntendedUse
|
|
2523
|
+
IntendedUse?: IntendedUse;
|
|
2524
2524
|
}
|
|
2525
2525
|
/**
|
|
2526
2526
|
* @public
|
|
@@ -2585,7 +2585,7 @@ export interface CreatePlaceIndexRequest {
|
|
|
2585
2585
|
* <p>No longer used. If included, the only allowed value is
|
|
2586
2586
|
* <code>RequestBasedUsage</code>.</p>
|
|
2587
2587
|
*/
|
|
2588
|
-
PricingPlan?: PricingPlan
|
|
2588
|
+
PricingPlan?: PricingPlan;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* @public
|
|
2591
2591
|
* <p>The optional description for the place index resource.</p>
|
|
@@ -2717,7 +2717,7 @@ export interface CreateRouteCalculatorRequest {
|
|
|
2717
2717
|
* <p>No longer used. If included, the only allowed value is
|
|
2718
2718
|
* <code>RequestBasedUsage</code>.</p>
|
|
2719
2719
|
*/
|
|
2720
|
-
PricingPlan?: PricingPlan
|
|
2720
|
+
PricingPlan?: PricingPlan;
|
|
2721
2721
|
/**
|
|
2722
2722
|
* @public
|
|
2723
2723
|
* <p>The optional description for the route calculator resource.</p>
|
|
@@ -2832,7 +2832,7 @@ export interface CreateTrackerRequest {
|
|
|
2832
2832
|
* <p>No longer used. If included, the only allowed value is
|
|
2833
2833
|
* <code>RequestBasedUsage</code>.</p>
|
|
2834
2834
|
*/
|
|
2835
|
-
PricingPlan?: PricingPlan
|
|
2835
|
+
PricingPlan?: PricingPlan;
|
|
2836
2836
|
/**
|
|
2837
2837
|
* @public
|
|
2838
2838
|
* <p>A key identifier for an
|
|
@@ -2916,7 +2916,7 @@ export interface CreateTrackerRequest {
|
|
|
2916
2916
|
* </ul>
|
|
2917
2917
|
* <p>This field is optional. If not specified, the default value is <code>TimeBased</code>.</p>
|
|
2918
2918
|
*/
|
|
2919
|
-
PositionFiltering?: PositionFiltering
|
|
2919
|
+
PositionFiltering?: PositionFiltering;
|
|
2920
2920
|
/**
|
|
2921
2921
|
* @public
|
|
2922
2922
|
* <p>Whether to enable position <code>UPDATE</code> events from this tracker to be sent to
|
|
@@ -3089,7 +3089,7 @@ export interface DescribeGeofenceCollectionResponse {
|
|
|
3089
3089
|
*
|
|
3090
3090
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
3091
3091
|
*/
|
|
3092
|
-
PricingPlan?: PricingPlan
|
|
3092
|
+
PricingPlan?: PricingPlan;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* @public
|
|
3095
3095
|
* @deprecated
|
|
@@ -3167,7 +3167,7 @@ export interface DescribeMapResponse {
|
|
|
3167
3167
|
*
|
|
3168
3168
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
3169
3169
|
*/
|
|
3170
|
-
PricingPlan?: PricingPlan
|
|
3170
|
+
PricingPlan?: PricingPlan;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* @public
|
|
3173
3173
|
* <p>Specifies the data provider for the associated map tiles.</p>
|
|
@@ -3239,7 +3239,7 @@ export interface DescribePlaceIndexResponse {
|
|
|
3239
3239
|
*
|
|
3240
3240
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
3241
3241
|
*/
|
|
3242
|
-
PricingPlan?: PricingPlan
|
|
3242
|
+
PricingPlan?: PricingPlan;
|
|
3243
3243
|
/**
|
|
3244
3244
|
* @public
|
|
3245
3245
|
* <p>The optional description for the place index resource.</p>
|
|
@@ -3329,7 +3329,7 @@ export interface DescribeRouteCalculatorResponse {
|
|
|
3329
3329
|
*
|
|
3330
3330
|
* <p>Always returns <code>RequestBasedUsage</code>.</p>
|
|
3331
3331
|
*/
|
|
3332
|
-
PricingPlan?: PricingPlan
|
|
3332
|
+
PricingPlan?: PricingPlan;
|
|
3333
3333
|
/**
|
|
3334
3334
|
* @public
|
|
3335
3335
|
* <p>The optional description of the route calculator resource.</p>
|
|
@@ -3432,7 +3432,7 @@ export interface DescribeTrackerResponse {
|
|
|
3432
3432
|
*
|
|
3433
3433
|
* <p>Always returns <code>RequestBasedUsage</code>.</p>
|
|
3434
3434
|
*/
|
|
3435
|
-
PricingPlan?: PricingPlan
|
|
3435
|
+
PricingPlan?: PricingPlan;
|
|
3436
3436
|
/**
|
|
3437
3437
|
* @public
|
|
3438
3438
|
* @deprecated
|
|
@@ -3467,7 +3467,7 @@ export interface DescribeTrackerResponse {
|
|
|
3467
3467
|
* @public
|
|
3468
3468
|
* <p>The position filtering method of the tracker resource.</p>
|
|
3469
3469
|
*/
|
|
3470
|
-
PositionFiltering?: PositionFiltering
|
|
3470
|
+
PositionFiltering?: PositionFiltering;
|
|
3471
3471
|
/**
|
|
3472
3472
|
* @public
|
|
3473
3473
|
* <p>Whether <code>UPDATE</code> events from this tracker in EventBridge are
|
|
@@ -3754,7 +3754,7 @@ export interface ListGeofenceCollectionsResponseEntry {
|
|
|
3754
3754
|
*
|
|
3755
3755
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
3756
3756
|
*/
|
|
3757
|
-
PricingPlan?: PricingPlan
|
|
3757
|
+
PricingPlan?: PricingPlan;
|
|
3758
3758
|
/**
|
|
3759
3759
|
* @public
|
|
3760
3760
|
* @deprecated
|
|
@@ -3977,7 +3977,7 @@ export interface UpdateGeofenceCollectionRequest {
|
|
|
3977
3977
|
* <p>No longer used. If included, the only allowed value is
|
|
3978
3978
|
* <code>RequestBasedUsage</code>.</p>
|
|
3979
3979
|
*/
|
|
3980
|
-
PricingPlan?: PricingPlan
|
|
3980
|
+
PricingPlan?: PricingPlan;
|
|
3981
3981
|
/**
|
|
3982
3982
|
* @public
|
|
3983
3983
|
* @deprecated
|
|
@@ -4778,7 +4778,7 @@ export interface ListMapsResponseEntry {
|
|
|
4778
4778
|
*
|
|
4779
4779
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
4780
4780
|
*/
|
|
4781
|
-
PricingPlan?: PricingPlan
|
|
4781
|
+
PricingPlan?: PricingPlan;
|
|
4782
4782
|
/**
|
|
4783
4783
|
* @public
|
|
4784
4784
|
* <p>The timestamp for when the map resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
|
|
@@ -4871,7 +4871,7 @@ export interface ListPlaceIndexesResponseEntry {
|
|
|
4871
4871
|
*
|
|
4872
4872
|
* <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
|
|
4873
4873
|
*/
|
|
4874
|
-
PricingPlan?: PricingPlan
|
|
4874
|
+
PricingPlan?: PricingPlan;
|
|
4875
4875
|
/**
|
|
4876
4876
|
* @public
|
|
4877
4877
|
* <p>The timestamp for when the place index resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
|
|
@@ -4966,7 +4966,7 @@ export interface ListRouteCalculatorsResponseEntry {
|
|
|
4966
4966
|
*
|
|
4967
4967
|
* <p>Always returns <code>RequestBasedUsage</code>.</p>
|
|
4968
4968
|
*/
|
|
4969
|
-
PricingPlan?: PricingPlan
|
|
4969
|
+
PricingPlan?: PricingPlan;
|
|
4970
4970
|
/**
|
|
4971
4971
|
* @public
|
|
4972
4972
|
* <p>The timestamp when the route calculator resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
|
|
@@ -5090,7 +5090,7 @@ export interface ListTrackersResponseEntry {
|
|
|
5090
5090
|
*
|
|
5091
5091
|
* <p>Always returns <code>RequestBasedUsage</code>.</p>
|
|
5092
5092
|
*/
|
|
5093
|
-
PricingPlan?: PricingPlan
|
|
5093
|
+
PricingPlan?: PricingPlan;
|
|
5094
5094
|
/**
|
|
5095
5095
|
* @public
|
|
5096
5096
|
* @deprecated
|
|
@@ -5163,7 +5163,7 @@ export interface UpdateMapRequest {
|
|
|
5163
5163
|
* <p>No longer used. If included, the only allowed value is
|
|
5164
5164
|
* <code>RequestBasedUsage</code>.</p>
|
|
5165
5165
|
*/
|
|
5166
|
-
PricingPlan?: PricingPlan
|
|
5166
|
+
PricingPlan?: PricingPlan;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* @public
|
|
5169
5169
|
* <p>Updates the description for the map resource.</p>
|
|
@@ -5840,7 +5840,7 @@ export interface UpdatePlaceIndexRequest {
|
|
|
5840
5840
|
* <p>No longer used. If included, the only allowed value is
|
|
5841
5841
|
* <code>RequestBasedUsage</code>.</p>
|
|
5842
5842
|
*/
|
|
5843
|
-
PricingPlan?: PricingPlan
|
|
5843
|
+
PricingPlan?: PricingPlan;
|
|
5844
5844
|
/**
|
|
5845
5845
|
* @public
|
|
5846
5846
|
* <p>Updates the description for the place index resource.</p>
|
|
@@ -5897,7 +5897,7 @@ export interface UpdateRouteCalculatorRequest {
|
|
|
5897
5897
|
* <p>No longer used. If included, the only allowed value is
|
|
5898
5898
|
* <code>RequestBasedUsage</code>.</p>
|
|
5899
5899
|
*/
|
|
5900
|
-
PricingPlan?: PricingPlan
|
|
5900
|
+
PricingPlan?: PricingPlan;
|
|
5901
5901
|
/**
|
|
5902
5902
|
* @public
|
|
5903
5903
|
* <p>Updates the description for the route calculator resource.</p>
|
|
@@ -5949,7 +5949,7 @@ export interface UpdateTrackerRequest {
|
|
|
5949
5949
|
* <p>No longer used. If included, the only allowed value is
|
|
5950
5950
|
* <code>RequestBasedUsage</code>.</p>
|
|
5951
5951
|
*/
|
|
5952
|
-
PricingPlan?: PricingPlan
|
|
5952
|
+
PricingPlan?: PricingPlan;
|
|
5953
5953
|
/**
|
|
5954
5954
|
* @public
|
|
5955
5955
|
* @deprecated
|
|
@@ -5995,7 +5995,7 @@ export interface UpdateTrackerRequest {
|
|
|
5995
5995
|
* </li>
|
|
5996
5996
|
* </ul>
|
|
5997
5997
|
*/
|
|
5998
|
-
PositionFiltering?: PositionFiltering
|
|
5998
|
+
PositionFiltering?: PositionFiltering;
|
|
5999
5999
|
/**
|
|
6000
6000
|
* @public
|
|
6001
6001
|
* <p>Whether to enable position <code>UPDATE</code> events from this tracker to be sent to
|
|
@@ -10,7 +10,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
10
10
|
}
|
|
11
11
|
export type Status = "Active" | "Expired";
|
|
12
12
|
export interface ApiKeyFilter {
|
|
13
|
-
KeyStatus?: Status
|
|
13
|
+
KeyStatus?: Status;
|
|
14
14
|
}
|
|
15
15
|
export declare class ConflictException extends __BaseException {
|
|
16
16
|
readonly name: "ConflictException";
|
|
@@ -77,7 +77,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
77
77
|
readonly name: "ValidationException";
|
|
78
78
|
readonly $fault: "client";
|
|
79
79
|
Message: string | undefined;
|
|
80
|
-
Reason: ValidationExceptionReason |
|
|
80
|
+
Reason: ValidationExceptionReason | undefined;
|
|
81
81
|
FieldList: ValidationExceptionField[] | undefined;
|
|
82
82
|
constructor(
|
|
83
83
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
@@ -156,7 +156,7 @@ export type BatchItemErrorCode =
|
|
|
156
156
|
| "ThrottlingError"
|
|
157
157
|
| "ValidationError";
|
|
158
158
|
export interface BatchItemError {
|
|
159
|
-
Code?: BatchItemErrorCode
|
|
159
|
+
Code?: BatchItemErrorCode;
|
|
160
160
|
Message?: string;
|
|
161
161
|
}
|
|
162
162
|
export interface BatchDeleteDevicePositionHistoryError {
|
|
@@ -272,12 +272,12 @@ export interface TruckDimensions {
|
|
|
272
272
|
Length?: number;
|
|
273
273
|
Height?: number;
|
|
274
274
|
Width?: number;
|
|
275
|
-
Unit?: DimensionUnit
|
|
275
|
+
Unit?: DimensionUnit;
|
|
276
276
|
}
|
|
277
277
|
export type VehicleWeightUnit = "Kilograms" | "Pounds";
|
|
278
278
|
export interface TruckWeight {
|
|
279
279
|
Total?: number;
|
|
280
|
-
Unit?: VehicleWeightUnit
|
|
280
|
+
Unit?: VehicleWeightUnit;
|
|
281
281
|
}
|
|
282
282
|
export interface CalculateRouteTruckModeOptions {
|
|
283
283
|
AvoidFerries?: boolean;
|
|
@@ -290,10 +290,10 @@ export interface CalculateRouteRequest {
|
|
|
290
290
|
DeparturePosition: number[] | undefined;
|
|
291
291
|
DestinationPosition: number[] | undefined;
|
|
292
292
|
WaypointPositions?: number[][];
|
|
293
|
-
TravelMode?: TravelMode
|
|
293
|
+
TravelMode?: TravelMode;
|
|
294
294
|
DepartureTime?: Date;
|
|
295
295
|
DepartNow?: boolean;
|
|
296
|
-
DistanceUnit?: DistanceUnit
|
|
296
|
+
DistanceUnit?: DistanceUnit;
|
|
297
297
|
IncludeLegGeometry?: boolean;
|
|
298
298
|
CarModeOptions?: CalculateRouteCarModeOptions;
|
|
299
299
|
TruckModeOptions?: CalculateRouteTruckModeOptions;
|
|
@@ -322,7 +322,7 @@ export interface CalculateRouteSummary {
|
|
|
322
322
|
DataSource: string | undefined;
|
|
323
323
|
Distance: number | undefined;
|
|
324
324
|
DurationSeconds: number | undefined;
|
|
325
|
-
DistanceUnit: DistanceUnit |
|
|
325
|
+
DistanceUnit: DistanceUnit | undefined;
|
|
326
326
|
}
|
|
327
327
|
export interface CalculateRouteResponse {
|
|
328
328
|
Legs: Leg[] | undefined;
|
|
@@ -332,10 +332,10 @@ export interface CalculateRouteMatrixRequest {
|
|
|
332
332
|
CalculatorName: string | undefined;
|
|
333
333
|
DeparturePositions: number[][] | undefined;
|
|
334
334
|
DestinationPositions: number[][] | undefined;
|
|
335
|
-
TravelMode?: TravelMode
|
|
335
|
+
TravelMode?: TravelMode;
|
|
336
336
|
DepartureTime?: Date;
|
|
337
337
|
DepartNow?: boolean;
|
|
338
|
-
DistanceUnit?: DistanceUnit
|
|
338
|
+
DistanceUnit?: DistanceUnit;
|
|
339
339
|
CarModeOptions?: CalculateRouteCarModeOptions;
|
|
340
340
|
TruckModeOptions?: CalculateRouteTruckModeOptions;
|
|
341
341
|
Key?: string;
|
|
@@ -348,7 +348,7 @@ export type RouteMatrixErrorCode =
|
|
|
348
348
|
| "RouteNotFound"
|
|
349
349
|
| "RouteTooLong";
|
|
350
350
|
export interface RouteMatrixEntryError {
|
|
351
|
-
Code: RouteMatrixErrorCode |
|
|
351
|
+
Code: RouteMatrixErrorCode | undefined;
|
|
352
352
|
Message?: string;
|
|
353
353
|
}
|
|
354
354
|
export interface RouteMatrixEntry {
|
|
@@ -360,7 +360,7 @@ export interface CalculateRouteMatrixSummary {
|
|
|
360
360
|
DataSource: string | undefined;
|
|
361
361
|
RouteCount: number | undefined;
|
|
362
362
|
ErrorCount: number | undefined;
|
|
363
|
-
DistanceUnit: DistanceUnit |
|
|
363
|
+
DistanceUnit: DistanceUnit | undefined;
|
|
364
364
|
}
|
|
365
365
|
export interface CalculateRouteMatrixResponse {
|
|
366
366
|
RouteMatrix: RouteMatrixEntry[][] | undefined;
|
|
@@ -374,7 +374,7 @@ export type PricingPlan =
|
|
|
374
374
|
| "RequestBasedUsage";
|
|
375
375
|
export interface CreateGeofenceCollectionRequest {
|
|
376
376
|
CollectionName: string | undefined;
|
|
377
|
-
PricingPlan?: PricingPlan
|
|
377
|
+
PricingPlan?: PricingPlan;
|
|
378
378
|
PricingPlanDataSource?: string;
|
|
379
379
|
Description?: string;
|
|
380
380
|
Tags?: Record<string, string>;
|
|
@@ -392,7 +392,7 @@ export interface MapConfiguration {
|
|
|
392
392
|
export interface CreateMapRequest {
|
|
393
393
|
MapName: string | undefined;
|
|
394
394
|
Configuration: MapConfiguration | undefined;
|
|
395
|
-
PricingPlan?: PricingPlan
|
|
395
|
+
PricingPlan?: PricingPlan;
|
|
396
396
|
Description?: string;
|
|
397
397
|
Tags?: Record<string, string>;
|
|
398
398
|
}
|
|
@@ -403,12 +403,12 @@ export interface CreateMapResponse {
|
|
|
403
403
|
}
|
|
404
404
|
export type IntendedUse = "SingleUse" | "Storage";
|
|
405
405
|
export interface DataSourceConfiguration {
|
|
406
|
-
IntendedUse?: IntendedUse
|
|
406
|
+
IntendedUse?: IntendedUse;
|
|
407
407
|
}
|
|
408
408
|
export interface CreatePlaceIndexRequest {
|
|
409
409
|
IndexName: string | undefined;
|
|
410
410
|
DataSource: string | undefined;
|
|
411
|
-
PricingPlan?: PricingPlan
|
|
411
|
+
PricingPlan?: PricingPlan;
|
|
412
412
|
Description?: string;
|
|
413
413
|
DataSourceConfiguration?: DataSourceConfiguration;
|
|
414
414
|
Tags?: Record<string, string>;
|
|
@@ -421,7 +421,7 @@ export interface CreatePlaceIndexResponse {
|
|
|
421
421
|
export interface CreateRouteCalculatorRequest {
|
|
422
422
|
CalculatorName: string | undefined;
|
|
423
423
|
DataSource: string | undefined;
|
|
424
|
-
PricingPlan?: PricingPlan
|
|
424
|
+
PricingPlan?: PricingPlan;
|
|
425
425
|
Description?: string;
|
|
426
426
|
Tags?: Record<string, string>;
|
|
427
427
|
}
|
|
@@ -433,12 +433,12 @@ export interface CreateRouteCalculatorResponse {
|
|
|
433
433
|
export type PositionFiltering = "AccuracyBased" | "DistanceBased" | "TimeBased";
|
|
434
434
|
export interface CreateTrackerRequest {
|
|
435
435
|
TrackerName: string | undefined;
|
|
436
|
-
PricingPlan?: PricingPlan
|
|
436
|
+
PricingPlan?: PricingPlan;
|
|
437
437
|
KmsKeyId?: string;
|
|
438
438
|
PricingPlanDataSource?: string;
|
|
439
439
|
Description?: string;
|
|
440
440
|
Tags?: Record<string, string>;
|
|
441
|
-
PositionFiltering?: PositionFiltering
|
|
441
|
+
PositionFiltering?: PositionFiltering;
|
|
442
442
|
EventBridgeEnabled?: boolean;
|
|
443
443
|
KmsKeyEnableGeospatialQueries?: boolean;
|
|
444
444
|
}
|
|
@@ -474,7 +474,7 @@ export interface DescribeGeofenceCollectionResponse {
|
|
|
474
474
|
CollectionName: string | undefined;
|
|
475
475
|
CollectionArn: string | undefined;
|
|
476
476
|
Description: string | undefined;
|
|
477
|
-
PricingPlan?: PricingPlan
|
|
477
|
+
PricingPlan?: PricingPlan;
|
|
478
478
|
PricingPlanDataSource?: string;
|
|
479
479
|
KmsKeyId?: string;
|
|
480
480
|
Tags?: Record<string, string>;
|
|
@@ -488,7 +488,7 @@ export interface DescribeMapRequest {
|
|
|
488
488
|
export interface DescribeMapResponse {
|
|
489
489
|
MapName: string | undefined;
|
|
490
490
|
MapArn: string | undefined;
|
|
491
|
-
PricingPlan?: PricingPlan
|
|
491
|
+
PricingPlan?: PricingPlan;
|
|
492
492
|
DataSource: string | undefined;
|
|
493
493
|
Configuration: MapConfiguration | undefined;
|
|
494
494
|
Description: string | undefined;
|
|
@@ -502,7 +502,7 @@ export interface DescribePlaceIndexRequest {
|
|
|
502
502
|
export interface DescribePlaceIndexResponse {
|
|
503
503
|
IndexName: string | undefined;
|
|
504
504
|
IndexArn: string | undefined;
|
|
505
|
-
PricingPlan?: PricingPlan
|
|
505
|
+
PricingPlan?: PricingPlan;
|
|
506
506
|
Description: string | undefined;
|
|
507
507
|
CreateTime: Date | undefined;
|
|
508
508
|
UpdateTime: Date | undefined;
|
|
@@ -516,7 +516,7 @@ export interface DescribeRouteCalculatorRequest {
|
|
|
516
516
|
export interface DescribeRouteCalculatorResponse {
|
|
517
517
|
CalculatorName: string | undefined;
|
|
518
518
|
CalculatorArn: string | undefined;
|
|
519
|
-
PricingPlan?: PricingPlan
|
|
519
|
+
PricingPlan?: PricingPlan;
|
|
520
520
|
Description: string | undefined;
|
|
521
521
|
CreateTime: Date | undefined;
|
|
522
522
|
UpdateTime: Date | undefined;
|
|
@@ -530,13 +530,13 @@ export interface DescribeTrackerResponse {
|
|
|
530
530
|
TrackerName: string | undefined;
|
|
531
531
|
TrackerArn: string | undefined;
|
|
532
532
|
Description: string | undefined;
|
|
533
|
-
PricingPlan?: PricingPlan
|
|
533
|
+
PricingPlan?: PricingPlan;
|
|
534
534
|
PricingPlanDataSource?: string;
|
|
535
535
|
Tags?: Record<string, string>;
|
|
536
536
|
CreateTime: Date | undefined;
|
|
537
537
|
UpdateTime: Date | undefined;
|
|
538
538
|
KmsKeyId?: string;
|
|
539
|
-
PositionFiltering?: PositionFiltering
|
|
539
|
+
PositionFiltering?: PositionFiltering;
|
|
540
540
|
EventBridgeEnabled?: boolean;
|
|
541
541
|
KmsKeyEnableGeospatialQueries?: boolean;
|
|
542
542
|
}
|
|
@@ -580,7 +580,7 @@ export interface ListGeofenceCollectionsRequest {
|
|
|
580
580
|
export interface ListGeofenceCollectionsResponseEntry {
|
|
581
581
|
CollectionName: string | undefined;
|
|
582
582
|
Description: string | undefined;
|
|
583
|
-
PricingPlan?: PricingPlan
|
|
583
|
+
PricingPlan?: PricingPlan;
|
|
584
584
|
PricingPlanDataSource?: string;
|
|
585
585
|
CreateTime: Date | undefined;
|
|
586
586
|
UpdateTime: Date | undefined;
|
|
@@ -619,7 +619,7 @@ export interface PutGeofenceResponse {
|
|
|
619
619
|
}
|
|
620
620
|
export interface UpdateGeofenceCollectionRequest {
|
|
621
621
|
CollectionName: string | undefined;
|
|
622
|
-
PricingPlan?: PricingPlan
|
|
622
|
+
PricingPlan?: PricingPlan;
|
|
623
623
|
PricingPlanDataSource?: string;
|
|
624
624
|
Description?: string;
|
|
625
625
|
}
|
|
@@ -756,7 +756,7 @@ export interface ListMapsResponseEntry {
|
|
|
756
756
|
MapName: string | undefined;
|
|
757
757
|
Description: string | undefined;
|
|
758
758
|
DataSource: string | undefined;
|
|
759
|
-
PricingPlan?: PricingPlan
|
|
759
|
+
PricingPlan?: PricingPlan;
|
|
760
760
|
CreateTime: Date | undefined;
|
|
761
761
|
UpdateTime: Date | undefined;
|
|
762
762
|
}
|
|
@@ -772,7 +772,7 @@ export interface ListPlaceIndexesResponseEntry {
|
|
|
772
772
|
IndexName: string | undefined;
|
|
773
773
|
Description: string | undefined;
|
|
774
774
|
DataSource: string | undefined;
|
|
775
|
-
PricingPlan?: PricingPlan
|
|
775
|
+
PricingPlan?: PricingPlan;
|
|
776
776
|
CreateTime: Date | undefined;
|
|
777
777
|
UpdateTime: Date | undefined;
|
|
778
778
|
}
|
|
@@ -788,7 +788,7 @@ export interface ListRouteCalculatorsResponseEntry {
|
|
|
788
788
|
CalculatorName: string | undefined;
|
|
789
789
|
Description: string | undefined;
|
|
790
790
|
DataSource: string | undefined;
|
|
791
|
-
PricingPlan?: PricingPlan
|
|
791
|
+
PricingPlan?: PricingPlan;
|
|
792
792
|
CreateTime: Date | undefined;
|
|
793
793
|
UpdateTime: Date | undefined;
|
|
794
794
|
}
|
|
@@ -812,7 +812,7 @@ export interface ListTrackersRequest {
|
|
|
812
812
|
export interface ListTrackersResponseEntry {
|
|
813
813
|
TrackerName: string | undefined;
|
|
814
814
|
Description: string | undefined;
|
|
815
|
-
PricingPlan?: PricingPlan
|
|
815
|
+
PricingPlan?: PricingPlan;
|
|
816
816
|
PricingPlanDataSource?: string;
|
|
817
817
|
CreateTime: Date | undefined;
|
|
818
818
|
UpdateTime: Date | undefined;
|
|
@@ -826,7 +826,7 @@ export interface MapConfigurationUpdate {
|
|
|
826
826
|
}
|
|
827
827
|
export interface UpdateMapRequest {
|
|
828
828
|
MapName: string | undefined;
|
|
829
|
-
PricingPlan?: PricingPlan
|
|
829
|
+
PricingPlan?: PricingPlan;
|
|
830
830
|
Description?: string;
|
|
831
831
|
ConfigurationUpdate?: MapConfigurationUpdate;
|
|
832
832
|
}
|
|
@@ -922,7 +922,7 @@ export interface SearchPlaceIndexForTextResponse {
|
|
|
922
922
|
}
|
|
923
923
|
export interface UpdatePlaceIndexRequest {
|
|
924
924
|
IndexName: string | undefined;
|
|
925
|
-
PricingPlan?: PricingPlan
|
|
925
|
+
PricingPlan?: PricingPlan;
|
|
926
926
|
Description?: string;
|
|
927
927
|
DataSourceConfiguration?: DataSourceConfiguration;
|
|
928
928
|
}
|
|
@@ -933,7 +933,7 @@ export interface UpdatePlaceIndexResponse {
|
|
|
933
933
|
}
|
|
934
934
|
export interface UpdateRouteCalculatorRequest {
|
|
935
935
|
CalculatorName: string | undefined;
|
|
936
|
-
PricingPlan?: PricingPlan
|
|
936
|
+
PricingPlan?: PricingPlan;
|
|
937
937
|
Description?: string;
|
|
938
938
|
}
|
|
939
939
|
export interface UpdateRouteCalculatorResponse {
|
|
@@ -943,10 +943,10 @@ export interface UpdateRouteCalculatorResponse {
|
|
|
943
943
|
}
|
|
944
944
|
export interface UpdateTrackerRequest {
|
|
945
945
|
TrackerName: string | undefined;
|
|
946
|
-
PricingPlan?: PricingPlan
|
|
946
|
+
PricingPlan?: PricingPlan;
|
|
947
947
|
PricingPlanDataSource?: string;
|
|
948
948
|
Description?: string;
|
|
949
|
-
PositionFiltering?: PositionFiltering
|
|
949
|
+
PositionFiltering?: PositionFiltering;
|
|
950
950
|
EventBridgeEnabled?: boolean;
|
|
951
951
|
KmsKeyEnableGeospatialQueries?: boolean;
|
|
952
952
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-location",
|
|
3
3
|
"description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|