@aws-sdk/client-location 3.687.0 → 3.691.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-types/models/models_0.d.ts +280 -280
- package/dist-types/ts3.4/models/models_0.d.ts +280 -280
- package/package.json +7 -7
|
@@ -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 | undefined;
|
|
14
14
|
}
|
|
15
15
|
export declare class ConflictException extends __BaseException {
|
|
16
16
|
readonly name: "ConflictException";
|
|
@@ -21,15 +21,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
21
21
|
export interface ApiKeyRestrictions {
|
|
22
22
|
AllowActions: string[] | undefined;
|
|
23
23
|
AllowResources: string[] | undefined;
|
|
24
|
-
AllowReferers?: string[];
|
|
24
|
+
AllowReferers?: string[] | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface CreateKeyRequest {
|
|
27
27
|
KeyName: string | undefined;
|
|
28
28
|
Restrictions: ApiKeyRestrictions | undefined;
|
|
29
|
-
Description?: string;
|
|
30
|
-
ExpireTime?: Date;
|
|
31
|
-
NoExpiry?: boolean;
|
|
32
|
-
Tags?: Record<string, string
|
|
29
|
+
Description?: string | undefined;
|
|
30
|
+
ExpireTime?: Date | undefined;
|
|
31
|
+
NoExpiry?: boolean | undefined;
|
|
32
|
+
Tags?: Record<string, string> | undefined;
|
|
33
33
|
}
|
|
34
34
|
export interface CreateKeyResponse {
|
|
35
35
|
Key: string | undefined;
|
|
@@ -85,7 +85,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
85
85
|
}
|
|
86
86
|
export interface DeleteKeyRequest {
|
|
87
87
|
KeyName: string | undefined;
|
|
88
|
-
ForceDelete?: boolean;
|
|
88
|
+
ForceDelete?: boolean | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface DeleteKeyResponse {}
|
|
91
91
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -107,33 +107,33 @@ export interface DescribeKeyResponse {
|
|
|
107
107
|
CreateTime: Date | undefined;
|
|
108
108
|
ExpireTime: Date | undefined;
|
|
109
109
|
UpdateTime: Date | undefined;
|
|
110
|
-
Description?: string;
|
|
111
|
-
Tags?: Record<string, string
|
|
110
|
+
Description?: string | undefined;
|
|
111
|
+
Tags?: Record<string, string> | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface ListKeysRequest {
|
|
114
|
-
MaxResults?: number;
|
|
115
|
-
NextToken?: string;
|
|
116
|
-
Filter?: ApiKeyFilter;
|
|
114
|
+
MaxResults?: number | undefined;
|
|
115
|
+
NextToken?: string | undefined;
|
|
116
|
+
Filter?: ApiKeyFilter | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface ListKeysResponseEntry {
|
|
119
119
|
KeyName: string | undefined;
|
|
120
120
|
ExpireTime: Date | undefined;
|
|
121
|
-
Description?: string;
|
|
121
|
+
Description?: string | undefined;
|
|
122
122
|
Restrictions: ApiKeyRestrictions | undefined;
|
|
123
123
|
CreateTime: Date | undefined;
|
|
124
124
|
UpdateTime: Date | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface ListKeysResponse {
|
|
127
127
|
Entries: ListKeysResponseEntry[] | undefined;
|
|
128
|
-
NextToken?: string;
|
|
128
|
+
NextToken?: string | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface UpdateKeyRequest {
|
|
131
131
|
KeyName: string | undefined;
|
|
132
|
-
Description?: string;
|
|
133
|
-
ExpireTime?: Date;
|
|
134
|
-
NoExpiry?: boolean;
|
|
135
|
-
ForceUpdate?: boolean;
|
|
136
|
-
Restrictions?: ApiKeyRestrictions;
|
|
132
|
+
Description?: string | undefined;
|
|
133
|
+
ExpireTime?: Date | undefined;
|
|
134
|
+
NoExpiry?: boolean | undefined;
|
|
135
|
+
ForceUpdate?: boolean | undefined;
|
|
136
|
+
Restrictions?: ApiKeyRestrictions | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface UpdateKeyResponse {
|
|
139
139
|
KeyArn: string | undefined;
|
|
@@ -157,8 +157,8 @@ export type BatchItemErrorCode =
|
|
|
157
157
|
| "ThrottlingError"
|
|
158
158
|
| "ValidationError";
|
|
159
159
|
export interface BatchItemError {
|
|
160
|
-
Code?: BatchItemErrorCode;
|
|
161
|
-
Message?: string;
|
|
160
|
+
Code?: BatchItemErrorCode | undefined;
|
|
161
|
+
Message?: string | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface BatchDeleteDevicePositionHistoryError {
|
|
164
164
|
DeviceId: string | undefined;
|
|
@@ -185,8 +185,8 @@ export interface DevicePositionUpdate {
|
|
|
185
185
|
DeviceId: string | undefined;
|
|
186
186
|
SampleTime: Date | undefined;
|
|
187
187
|
Position: number[] | undefined;
|
|
188
|
-
Accuracy?: PositionalAccuracy;
|
|
189
|
-
PositionProperties?: Record<string, string
|
|
188
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
189
|
+
PositionProperties?: Record<string, string> | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface BatchEvaluateGeofencesRequest {
|
|
192
192
|
CollectionName: string | undefined;
|
|
@@ -205,12 +205,12 @@ export interface BatchGetDevicePositionRequest {
|
|
|
205
205
|
DeviceIds: string[] | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface DevicePosition {
|
|
208
|
-
DeviceId?: string;
|
|
208
|
+
DeviceId?: string | undefined;
|
|
209
209
|
SampleTime: Date | undefined;
|
|
210
210
|
ReceivedTime: Date | undefined;
|
|
211
211
|
Position: number[] | undefined;
|
|
212
|
-
Accuracy?: PositionalAccuracy;
|
|
213
|
-
PositionProperties?: Record<string, string
|
|
212
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
213
|
+
PositionProperties?: Record<string, string> | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface BatchGetDevicePositionError {
|
|
216
216
|
DeviceId: string | undefined;
|
|
@@ -225,14 +225,14 @@ export interface Circle {
|
|
|
225
225
|
Radius: number | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface GeofenceGeometry {
|
|
228
|
-
Polygon?: number[][][];
|
|
229
|
-
Circle?: Circle;
|
|
230
|
-
Geobuf?: Uint8Array;
|
|
228
|
+
Polygon?: number[][][] | undefined;
|
|
229
|
+
Circle?: Circle | undefined;
|
|
230
|
+
Geobuf?: Uint8Array | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface BatchPutGeofenceRequestEntry {
|
|
233
233
|
GeofenceId: string | undefined;
|
|
234
234
|
Geometry: GeofenceGeometry | undefined;
|
|
235
|
-
GeofenceProperties?: Record<string, string
|
|
235
|
+
GeofenceProperties?: Record<string, string> | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface BatchPutGeofenceRequest {
|
|
238
238
|
CollectionName: string | undefined;
|
|
@@ -264,62 +264,62 @@ export interface BatchUpdateDevicePositionResponse {
|
|
|
264
264
|
Errors: BatchUpdateDevicePositionError[] | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface CalculateRouteCarModeOptions {
|
|
267
|
-
AvoidFerries?: boolean;
|
|
268
|
-
AvoidTolls?: boolean;
|
|
267
|
+
AvoidFerries?: boolean | undefined;
|
|
268
|
+
AvoidTolls?: boolean | undefined;
|
|
269
269
|
}
|
|
270
270
|
export type DistanceUnit = "Kilometers" | "Miles";
|
|
271
271
|
export type OptimizationMode = "FastestRoute" | "ShortestRoute";
|
|
272
272
|
export type TravelMode = "Bicycle" | "Car" | "Motorcycle" | "Truck" | "Walking";
|
|
273
273
|
export type DimensionUnit = "Feet" | "Meters";
|
|
274
274
|
export interface TruckDimensions {
|
|
275
|
-
Length?: number;
|
|
276
|
-
Height?: number;
|
|
277
|
-
Width?: number;
|
|
278
|
-
Unit?: DimensionUnit;
|
|
275
|
+
Length?: number | undefined;
|
|
276
|
+
Height?: number | undefined;
|
|
277
|
+
Width?: number | undefined;
|
|
278
|
+
Unit?: DimensionUnit | undefined;
|
|
279
279
|
}
|
|
280
280
|
export type VehicleWeightUnit = "Kilograms" | "Pounds";
|
|
281
281
|
export interface TruckWeight {
|
|
282
|
-
Total?: number;
|
|
283
|
-
Unit?: VehicleWeightUnit;
|
|
282
|
+
Total?: number | undefined;
|
|
283
|
+
Unit?: VehicleWeightUnit | undefined;
|
|
284
284
|
}
|
|
285
285
|
export interface CalculateRouteTruckModeOptions {
|
|
286
|
-
AvoidFerries?: boolean;
|
|
287
|
-
AvoidTolls?: boolean;
|
|
288
|
-
Dimensions?: TruckDimensions;
|
|
289
|
-
Weight?: TruckWeight;
|
|
286
|
+
AvoidFerries?: boolean | undefined;
|
|
287
|
+
AvoidTolls?: boolean | undefined;
|
|
288
|
+
Dimensions?: TruckDimensions | undefined;
|
|
289
|
+
Weight?: TruckWeight | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface CalculateRouteRequest {
|
|
292
292
|
CalculatorName: string | undefined;
|
|
293
293
|
DeparturePosition: number[] | undefined;
|
|
294
294
|
DestinationPosition: number[] | undefined;
|
|
295
|
-
WaypointPositions?: number[][];
|
|
296
|
-
TravelMode?: TravelMode;
|
|
297
|
-
DepartureTime?: Date;
|
|
298
|
-
DepartNow?: boolean;
|
|
299
|
-
DistanceUnit?: DistanceUnit;
|
|
300
|
-
IncludeLegGeometry?: boolean;
|
|
301
|
-
CarModeOptions?: CalculateRouteCarModeOptions;
|
|
302
|
-
TruckModeOptions?: CalculateRouteTruckModeOptions;
|
|
303
|
-
ArrivalTime?: Date;
|
|
304
|
-
OptimizeFor?: OptimizationMode;
|
|
305
|
-
Key?: string;
|
|
295
|
+
WaypointPositions?: number[][] | undefined;
|
|
296
|
+
TravelMode?: TravelMode | undefined;
|
|
297
|
+
DepartureTime?: Date | undefined;
|
|
298
|
+
DepartNow?: boolean | undefined;
|
|
299
|
+
DistanceUnit?: DistanceUnit | undefined;
|
|
300
|
+
IncludeLegGeometry?: boolean | undefined;
|
|
301
|
+
CarModeOptions?: CalculateRouteCarModeOptions | undefined;
|
|
302
|
+
TruckModeOptions?: CalculateRouteTruckModeOptions | undefined;
|
|
303
|
+
ArrivalTime?: Date | undefined;
|
|
304
|
+
OptimizeFor?: OptimizationMode | undefined;
|
|
305
|
+
Key?: string | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface LegGeometry {
|
|
308
|
-
LineString?: number[][];
|
|
308
|
+
LineString?: number[][] | undefined;
|
|
309
309
|
}
|
|
310
310
|
export interface Step {
|
|
311
311
|
StartPosition: number[] | undefined;
|
|
312
312
|
EndPosition: number[] | undefined;
|
|
313
313
|
Distance: number | undefined;
|
|
314
314
|
DurationSeconds: number | undefined;
|
|
315
|
-
GeometryOffset?: number;
|
|
315
|
+
GeometryOffset?: number | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface Leg {
|
|
318
318
|
StartPosition: number[] | undefined;
|
|
319
319
|
EndPosition: number[] | undefined;
|
|
320
320
|
Distance: number | undefined;
|
|
321
321
|
DurationSeconds: number | undefined;
|
|
322
|
-
Geometry?: LegGeometry;
|
|
322
|
+
Geometry?: LegGeometry | undefined;
|
|
323
323
|
Steps: Step[] | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface CalculateRouteSummary {
|
|
@@ -337,13 +337,13 @@ export interface CalculateRouteMatrixRequest {
|
|
|
337
337
|
CalculatorName: string | undefined;
|
|
338
338
|
DeparturePositions: number[][] | undefined;
|
|
339
339
|
DestinationPositions: number[][] | undefined;
|
|
340
|
-
TravelMode?: TravelMode;
|
|
341
|
-
DepartureTime?: Date;
|
|
342
|
-
DepartNow?: boolean;
|
|
343
|
-
DistanceUnit?: DistanceUnit;
|
|
344
|
-
CarModeOptions?: CalculateRouteCarModeOptions;
|
|
345
|
-
TruckModeOptions?: CalculateRouteTruckModeOptions;
|
|
346
|
-
Key?: string;
|
|
340
|
+
TravelMode?: TravelMode | undefined;
|
|
341
|
+
DepartureTime?: Date | undefined;
|
|
342
|
+
DepartNow?: boolean | undefined;
|
|
343
|
+
DistanceUnit?: DistanceUnit | undefined;
|
|
344
|
+
CarModeOptions?: CalculateRouteCarModeOptions | undefined;
|
|
345
|
+
TruckModeOptions?: CalculateRouteTruckModeOptions | undefined;
|
|
346
|
+
Key?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
export type RouteMatrixErrorCode =
|
|
349
349
|
| "DeparturePositionNotFound"
|
|
@@ -354,12 +354,12 @@ export type RouteMatrixErrorCode =
|
|
|
354
354
|
| "RouteTooLong";
|
|
355
355
|
export interface RouteMatrixEntryError {
|
|
356
356
|
Code: RouteMatrixErrorCode | undefined;
|
|
357
|
-
Message?: string;
|
|
357
|
+
Message?: string | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface RouteMatrixEntry {
|
|
360
|
-
Distance?: number;
|
|
361
|
-
DurationSeconds?: number;
|
|
362
|
-
Error?: RouteMatrixEntryError;
|
|
360
|
+
Distance?: number | undefined;
|
|
361
|
+
DurationSeconds?: number | undefined;
|
|
362
|
+
Error?: RouteMatrixEntryError | undefined;
|
|
363
363
|
}
|
|
364
364
|
export interface CalculateRouteMatrixSummary {
|
|
365
365
|
DataSource: string | undefined;
|
|
@@ -369,8 +369,8 @@ export interface CalculateRouteMatrixSummary {
|
|
|
369
369
|
}
|
|
370
370
|
export interface CalculateRouteMatrixResponse {
|
|
371
371
|
RouteMatrix: RouteMatrixEntry[][] | undefined;
|
|
372
|
-
SnappedDeparturePositions?: number[][];
|
|
373
|
-
SnappedDestinationPositions?: number[][];
|
|
372
|
+
SnappedDeparturePositions?: number[][] | undefined;
|
|
373
|
+
SnappedDestinationPositions?: number[][] | undefined;
|
|
374
374
|
Summary: CalculateRouteMatrixSummary | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface LteLocalId {
|
|
@@ -381,20 +381,20 @@ export interface LteNetworkMeasurements {
|
|
|
381
381
|
Earfcn: number | undefined;
|
|
382
382
|
CellId: number | undefined;
|
|
383
383
|
Pci: number | undefined;
|
|
384
|
-
Rsrp?: number;
|
|
385
|
-
Rsrq?: number;
|
|
384
|
+
Rsrp?: number | undefined;
|
|
385
|
+
Rsrq?: number | undefined;
|
|
386
386
|
}
|
|
387
387
|
export interface LteCellDetails {
|
|
388
388
|
CellId: number | undefined;
|
|
389
389
|
Mcc: number | undefined;
|
|
390
390
|
Mnc: number | undefined;
|
|
391
|
-
LocalId?: LteLocalId;
|
|
392
|
-
NetworkMeasurements?: LteNetworkMeasurements[];
|
|
393
|
-
TimingAdvance?: number;
|
|
394
|
-
NrCapable?: boolean;
|
|
395
|
-
Rsrp?: number;
|
|
396
|
-
Rsrq?: number;
|
|
397
|
-
Tac?: number;
|
|
391
|
+
LocalId?: LteLocalId | undefined;
|
|
392
|
+
NetworkMeasurements?: LteNetworkMeasurements[] | undefined;
|
|
393
|
+
TimingAdvance?: number | undefined;
|
|
394
|
+
NrCapable?: boolean | undefined;
|
|
395
|
+
Rsrp?: number | undefined;
|
|
396
|
+
Rsrq?: number | undefined;
|
|
397
|
+
Tac?: number | undefined;
|
|
398
398
|
}
|
|
399
399
|
export interface CellSignals {
|
|
400
400
|
LteCellDetails: LteCellDetails[] | undefined;
|
|
@@ -405,11 +405,11 @@ export type PricingPlan =
|
|
|
405
405
|
| "RequestBasedUsage";
|
|
406
406
|
export interface CreateGeofenceCollectionRequest {
|
|
407
407
|
CollectionName: string | undefined;
|
|
408
|
-
PricingPlan?: PricingPlan;
|
|
409
|
-
PricingPlanDataSource?: string;
|
|
410
|
-
Description?: string;
|
|
411
|
-
Tags?: Record<string, string
|
|
412
|
-
KmsKeyId?: string;
|
|
408
|
+
PricingPlan?: PricingPlan | undefined;
|
|
409
|
+
PricingPlanDataSource?: string | undefined;
|
|
410
|
+
Description?: string | undefined;
|
|
411
|
+
Tags?: Record<string, string> | undefined;
|
|
412
|
+
KmsKeyId?: string | undefined;
|
|
413
413
|
}
|
|
414
414
|
export interface CreateGeofenceCollectionResponse {
|
|
415
415
|
CollectionName: string | undefined;
|
|
@@ -418,15 +418,15 @@ export interface CreateGeofenceCollectionResponse {
|
|
|
418
418
|
}
|
|
419
419
|
export interface MapConfiguration {
|
|
420
420
|
Style: string | undefined;
|
|
421
|
-
PoliticalView?: string;
|
|
422
|
-
CustomLayers?: string[];
|
|
421
|
+
PoliticalView?: string | undefined;
|
|
422
|
+
CustomLayers?: string[] | undefined;
|
|
423
423
|
}
|
|
424
424
|
export interface CreateMapRequest {
|
|
425
425
|
MapName: string | undefined;
|
|
426
426
|
Configuration: MapConfiguration | undefined;
|
|
427
|
-
PricingPlan?: PricingPlan;
|
|
428
|
-
Description?: string;
|
|
429
|
-
Tags?: Record<string, string
|
|
427
|
+
PricingPlan?: PricingPlan | undefined;
|
|
428
|
+
Description?: string | undefined;
|
|
429
|
+
Tags?: Record<string, string> | undefined;
|
|
430
430
|
}
|
|
431
431
|
export interface CreateMapResponse {
|
|
432
432
|
MapName: string | undefined;
|
|
@@ -435,15 +435,15 @@ export interface CreateMapResponse {
|
|
|
435
435
|
}
|
|
436
436
|
export type IntendedUse = "SingleUse" | "Storage";
|
|
437
437
|
export interface DataSourceConfiguration {
|
|
438
|
-
IntendedUse?: IntendedUse;
|
|
438
|
+
IntendedUse?: IntendedUse | undefined;
|
|
439
439
|
}
|
|
440
440
|
export interface CreatePlaceIndexRequest {
|
|
441
441
|
IndexName: string | undefined;
|
|
442
442
|
DataSource: string | undefined;
|
|
443
|
-
PricingPlan?: PricingPlan;
|
|
444
|
-
Description?: string;
|
|
445
|
-
DataSourceConfiguration?: DataSourceConfiguration;
|
|
446
|
-
Tags?: Record<string, string
|
|
443
|
+
PricingPlan?: PricingPlan | undefined;
|
|
444
|
+
Description?: string | undefined;
|
|
445
|
+
DataSourceConfiguration?: DataSourceConfiguration | undefined;
|
|
446
|
+
Tags?: Record<string, string> | undefined;
|
|
447
447
|
}
|
|
448
448
|
export interface CreatePlaceIndexResponse {
|
|
449
449
|
IndexName: string | undefined;
|
|
@@ -453,9 +453,9 @@ export interface CreatePlaceIndexResponse {
|
|
|
453
453
|
export interface CreateRouteCalculatorRequest {
|
|
454
454
|
CalculatorName: string | undefined;
|
|
455
455
|
DataSource: string | undefined;
|
|
456
|
-
PricingPlan?: PricingPlan;
|
|
457
|
-
Description?: string;
|
|
458
|
-
Tags?: Record<string, string
|
|
456
|
+
PricingPlan?: PricingPlan | undefined;
|
|
457
|
+
Description?: string | undefined;
|
|
458
|
+
Tags?: Record<string, string> | undefined;
|
|
459
459
|
}
|
|
460
460
|
export interface CreateRouteCalculatorResponse {
|
|
461
461
|
CalculatorName: string | undefined;
|
|
@@ -465,14 +465,14 @@ export interface CreateRouteCalculatorResponse {
|
|
|
465
465
|
export type PositionFiltering = "AccuracyBased" | "DistanceBased" | "TimeBased";
|
|
466
466
|
export interface CreateTrackerRequest {
|
|
467
467
|
TrackerName: string | undefined;
|
|
468
|
-
PricingPlan?: PricingPlan;
|
|
469
|
-
KmsKeyId?: string;
|
|
470
|
-
PricingPlanDataSource?: string;
|
|
471
|
-
Description?: string;
|
|
472
|
-
Tags?: Record<string, string
|
|
473
|
-
PositionFiltering?: PositionFiltering;
|
|
474
|
-
EventBridgeEnabled?: boolean;
|
|
475
|
-
KmsKeyEnableGeospatialQueries?: boolean;
|
|
468
|
+
PricingPlan?: PricingPlan | undefined;
|
|
469
|
+
KmsKeyId?: string | undefined;
|
|
470
|
+
PricingPlanDataSource?: string | undefined;
|
|
471
|
+
Description?: string | undefined;
|
|
472
|
+
Tags?: Record<string, string> | undefined;
|
|
473
|
+
PositionFiltering?: PositionFiltering | undefined;
|
|
474
|
+
EventBridgeEnabled?: boolean | undefined;
|
|
475
|
+
KmsKeyEnableGeospatialQueries?: boolean | undefined;
|
|
476
476
|
}
|
|
477
477
|
export interface CreateTrackerResponse {
|
|
478
478
|
TrackerName: string | undefined;
|
|
@@ -506,13 +506,13 @@ export interface DescribeGeofenceCollectionResponse {
|
|
|
506
506
|
CollectionName: string | undefined;
|
|
507
507
|
CollectionArn: string | undefined;
|
|
508
508
|
Description: string | undefined;
|
|
509
|
-
PricingPlan?: PricingPlan;
|
|
510
|
-
PricingPlanDataSource?: string;
|
|
511
|
-
KmsKeyId?: string;
|
|
512
|
-
Tags?: Record<string, string
|
|
509
|
+
PricingPlan?: PricingPlan | undefined;
|
|
510
|
+
PricingPlanDataSource?: string | undefined;
|
|
511
|
+
KmsKeyId?: string | undefined;
|
|
512
|
+
Tags?: Record<string, string> | undefined;
|
|
513
513
|
CreateTime: Date | undefined;
|
|
514
514
|
UpdateTime: Date | undefined;
|
|
515
|
-
GeofenceCount?: number;
|
|
515
|
+
GeofenceCount?: number | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface DescribeMapRequest {
|
|
518
518
|
MapName: string | undefined;
|
|
@@ -520,11 +520,11 @@ export interface DescribeMapRequest {
|
|
|
520
520
|
export interface DescribeMapResponse {
|
|
521
521
|
MapName: string | undefined;
|
|
522
522
|
MapArn: string | undefined;
|
|
523
|
-
PricingPlan?: PricingPlan;
|
|
523
|
+
PricingPlan?: PricingPlan | undefined;
|
|
524
524
|
DataSource: string | undefined;
|
|
525
525
|
Configuration: MapConfiguration | undefined;
|
|
526
526
|
Description: string | undefined;
|
|
527
|
-
Tags?: Record<string, string
|
|
527
|
+
Tags?: Record<string, string> | undefined;
|
|
528
528
|
CreateTime: Date | undefined;
|
|
529
529
|
UpdateTime: Date | undefined;
|
|
530
530
|
}
|
|
@@ -534,13 +534,13 @@ export interface DescribePlaceIndexRequest {
|
|
|
534
534
|
export interface DescribePlaceIndexResponse {
|
|
535
535
|
IndexName: string | undefined;
|
|
536
536
|
IndexArn: string | undefined;
|
|
537
|
-
PricingPlan?: PricingPlan;
|
|
537
|
+
PricingPlan?: PricingPlan | undefined;
|
|
538
538
|
Description: string | undefined;
|
|
539
539
|
CreateTime: Date | undefined;
|
|
540
540
|
UpdateTime: Date | undefined;
|
|
541
541
|
DataSource: string | undefined;
|
|
542
542
|
DataSourceConfiguration: DataSourceConfiguration | undefined;
|
|
543
|
-
Tags?: Record<string, string
|
|
543
|
+
Tags?: Record<string, string> | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface DescribeRouteCalculatorRequest {
|
|
546
546
|
CalculatorName: string | undefined;
|
|
@@ -548,12 +548,12 @@ export interface DescribeRouteCalculatorRequest {
|
|
|
548
548
|
export interface DescribeRouteCalculatorResponse {
|
|
549
549
|
CalculatorName: string | undefined;
|
|
550
550
|
CalculatorArn: string | undefined;
|
|
551
|
-
PricingPlan?: PricingPlan;
|
|
551
|
+
PricingPlan?: PricingPlan | undefined;
|
|
552
552
|
Description: string | undefined;
|
|
553
553
|
CreateTime: Date | undefined;
|
|
554
554
|
UpdateTime: Date | undefined;
|
|
555
555
|
DataSource: string | undefined;
|
|
556
|
-
Tags?: Record<string, string
|
|
556
|
+
Tags?: Record<string, string> | undefined;
|
|
557
557
|
}
|
|
558
558
|
export interface DescribeTrackerRequest {
|
|
559
559
|
TrackerName: string | undefined;
|
|
@@ -562,15 +562,15 @@ export interface DescribeTrackerResponse {
|
|
|
562
562
|
TrackerName: string | undefined;
|
|
563
563
|
TrackerArn: string | undefined;
|
|
564
564
|
Description: string | undefined;
|
|
565
|
-
PricingPlan?: PricingPlan;
|
|
566
|
-
PricingPlanDataSource?: string;
|
|
567
|
-
Tags?: Record<string, string
|
|
565
|
+
PricingPlan?: PricingPlan | undefined;
|
|
566
|
+
PricingPlanDataSource?: string | undefined;
|
|
567
|
+
Tags?: Record<string, string> | undefined;
|
|
568
568
|
CreateTime: Date | undefined;
|
|
569
569
|
UpdateTime: Date | undefined;
|
|
570
|
-
KmsKeyId?: string;
|
|
571
|
-
PositionFiltering?: PositionFiltering;
|
|
572
|
-
EventBridgeEnabled?: boolean;
|
|
573
|
-
KmsKeyEnableGeospatialQueries?: boolean;
|
|
570
|
+
KmsKeyId?: string | undefined;
|
|
571
|
+
PositionFiltering?: PositionFiltering | undefined;
|
|
572
|
+
EventBridgeEnabled?: boolean | undefined;
|
|
573
|
+
KmsKeyEnableGeospatialQueries?: boolean | undefined;
|
|
574
574
|
}
|
|
575
575
|
export interface WiFiAccessPoint {
|
|
576
576
|
MacAddress: string | undefined;
|
|
@@ -580,10 +580,10 @@ export interface DeviceState {
|
|
|
580
580
|
DeviceId: string | undefined;
|
|
581
581
|
SampleTime: Date | undefined;
|
|
582
582
|
Position: number[] | undefined;
|
|
583
|
-
Accuracy?: PositionalAccuracy;
|
|
584
|
-
Ipv4Address?: string;
|
|
585
|
-
WiFiAccessPoints?: WiFiAccessPoint[];
|
|
586
|
-
CellSignals?: CellSignals;
|
|
583
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
584
|
+
Ipv4Address?: string | undefined;
|
|
585
|
+
WiFiAccessPoints?: WiFiAccessPoint[] | undefined;
|
|
586
|
+
CellSignals?: CellSignals | undefined;
|
|
587
587
|
}
|
|
588
588
|
export interface DisassociateTrackerConsumerRequest {
|
|
589
589
|
TrackerName: string | undefined;
|
|
@@ -597,26 +597,26 @@ export interface ForecastedEvent {
|
|
|
597
597
|
IsDeviceInGeofence: boolean | undefined;
|
|
598
598
|
NearestDistance: number | undefined;
|
|
599
599
|
EventType: ForecastedGeofenceEventType | undefined;
|
|
600
|
-
ForecastedBreachTime?: Date;
|
|
601
|
-
GeofenceProperties?: Record<string, string
|
|
600
|
+
ForecastedBreachTime?: Date | undefined;
|
|
601
|
+
GeofenceProperties?: Record<string, string> | undefined;
|
|
602
602
|
}
|
|
603
603
|
export interface ForecastGeofenceEventsDeviceState {
|
|
604
604
|
Position: number[] | undefined;
|
|
605
|
-
Speed?: number;
|
|
605
|
+
Speed?: number | undefined;
|
|
606
606
|
}
|
|
607
607
|
export type SpeedUnit = "KilometersPerHour" | "MilesPerHour";
|
|
608
608
|
export interface ForecastGeofenceEventsRequest {
|
|
609
609
|
CollectionName: string | undefined;
|
|
610
610
|
DeviceState: ForecastGeofenceEventsDeviceState | undefined;
|
|
611
|
-
TimeHorizonMinutes?: number;
|
|
612
|
-
DistanceUnit?: DistanceUnit;
|
|
613
|
-
SpeedUnit?: SpeedUnit;
|
|
614
|
-
NextToken?: string;
|
|
615
|
-
MaxResults?: number;
|
|
611
|
+
TimeHorizonMinutes?: number | undefined;
|
|
612
|
+
DistanceUnit?: DistanceUnit | undefined;
|
|
613
|
+
SpeedUnit?: SpeedUnit | undefined;
|
|
614
|
+
NextToken?: string | undefined;
|
|
615
|
+
MaxResults?: number | undefined;
|
|
616
616
|
}
|
|
617
617
|
export interface ForecastGeofenceEventsResponse {
|
|
618
618
|
ForecastedEvents: ForecastedEvent[] | undefined;
|
|
619
|
-
NextToken?: string;
|
|
619
|
+
NextToken?: string | undefined;
|
|
620
620
|
DistanceUnit: DistanceUnit | undefined;
|
|
621
621
|
SpeedUnit: SpeedUnit | undefined;
|
|
622
622
|
}
|
|
@@ -624,7 +624,7 @@ export interface ListTagsForResourceRequest {
|
|
|
624
624
|
ResourceArn: string | undefined;
|
|
625
625
|
}
|
|
626
626
|
export interface ListTagsForResourceResponse {
|
|
627
|
-
Tags?: Record<string, string
|
|
627
|
+
Tags?: Record<string, string> | undefined;
|
|
628
628
|
}
|
|
629
629
|
export interface TagResourceRequest {
|
|
630
630
|
ResourceArn: string | undefined;
|
|
@@ -646,28 +646,28 @@ export interface GetGeofenceResponse {
|
|
|
646
646
|
Status: string | undefined;
|
|
647
647
|
CreateTime: Date | undefined;
|
|
648
648
|
UpdateTime: Date | undefined;
|
|
649
|
-
GeofenceProperties?: Record<string, string
|
|
649
|
+
GeofenceProperties?: Record<string, string> | undefined;
|
|
650
650
|
}
|
|
651
651
|
export interface ListGeofenceCollectionsRequest {
|
|
652
|
-
MaxResults?: number;
|
|
653
|
-
NextToken?: string;
|
|
652
|
+
MaxResults?: number | undefined;
|
|
653
|
+
NextToken?: string | undefined;
|
|
654
654
|
}
|
|
655
655
|
export interface ListGeofenceCollectionsResponseEntry {
|
|
656
656
|
CollectionName: string | undefined;
|
|
657
657
|
Description: string | undefined;
|
|
658
|
-
PricingPlan?: PricingPlan;
|
|
659
|
-
PricingPlanDataSource?: string;
|
|
658
|
+
PricingPlan?: PricingPlan | undefined;
|
|
659
|
+
PricingPlanDataSource?: string | undefined;
|
|
660
660
|
CreateTime: Date | undefined;
|
|
661
661
|
UpdateTime: Date | undefined;
|
|
662
662
|
}
|
|
663
663
|
export interface ListGeofenceCollectionsResponse {
|
|
664
664
|
Entries: ListGeofenceCollectionsResponseEntry[] | undefined;
|
|
665
|
-
NextToken?: string;
|
|
665
|
+
NextToken?: string | undefined;
|
|
666
666
|
}
|
|
667
667
|
export interface ListGeofencesRequest {
|
|
668
668
|
CollectionName: string | undefined;
|
|
669
|
-
NextToken?: string;
|
|
670
|
-
MaxResults?: number;
|
|
669
|
+
NextToken?: string | undefined;
|
|
670
|
+
MaxResults?: number | undefined;
|
|
671
671
|
}
|
|
672
672
|
export interface ListGeofenceResponseEntry {
|
|
673
673
|
GeofenceId: string | undefined;
|
|
@@ -675,17 +675,17 @@ export interface ListGeofenceResponseEntry {
|
|
|
675
675
|
Status: string | undefined;
|
|
676
676
|
CreateTime: Date | undefined;
|
|
677
677
|
UpdateTime: Date | undefined;
|
|
678
|
-
GeofenceProperties?: Record<string, string
|
|
678
|
+
GeofenceProperties?: Record<string, string> | undefined;
|
|
679
679
|
}
|
|
680
680
|
export interface ListGeofencesResponse {
|
|
681
681
|
Entries: ListGeofenceResponseEntry[] | undefined;
|
|
682
|
-
NextToken?: string;
|
|
682
|
+
NextToken?: string | undefined;
|
|
683
683
|
}
|
|
684
684
|
export interface PutGeofenceRequest {
|
|
685
685
|
CollectionName: string | undefined;
|
|
686
686
|
GeofenceId: string | undefined;
|
|
687
687
|
Geometry: GeofenceGeometry | undefined;
|
|
688
|
-
GeofenceProperties?: Record<string, string
|
|
688
|
+
GeofenceProperties?: Record<string, string> | undefined;
|
|
689
689
|
}
|
|
690
690
|
export interface PutGeofenceResponse {
|
|
691
691
|
GeofenceId: string | undefined;
|
|
@@ -694,9 +694,9 @@ export interface PutGeofenceResponse {
|
|
|
694
694
|
}
|
|
695
695
|
export interface UpdateGeofenceCollectionRequest {
|
|
696
696
|
CollectionName: string | undefined;
|
|
697
|
-
PricingPlan?: PricingPlan;
|
|
698
|
-
PricingPlanDataSource?: string;
|
|
699
|
-
Description?: string;
|
|
697
|
+
PricingPlan?: PricingPlan | undefined;
|
|
698
|
+
PricingPlanDataSource?: string | undefined;
|
|
699
|
+
Description?: string | undefined;
|
|
700
700
|
}
|
|
701
701
|
export interface UpdateGeofenceCollectionResponse {
|
|
702
702
|
CollectionName: string | undefined;
|
|
@@ -708,210 +708,210 @@ export interface GetDevicePositionRequest {
|
|
|
708
708
|
DeviceId: string | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface GetDevicePositionResponse {
|
|
711
|
-
DeviceId?: string;
|
|
711
|
+
DeviceId?: string | undefined;
|
|
712
712
|
SampleTime: Date | undefined;
|
|
713
713
|
ReceivedTime: Date | undefined;
|
|
714
714
|
Position: number[] | undefined;
|
|
715
|
-
Accuracy?: PositionalAccuracy;
|
|
716
|
-
PositionProperties?: Record<string, string
|
|
715
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
716
|
+
PositionProperties?: Record<string, string> | undefined;
|
|
717
717
|
}
|
|
718
718
|
export interface GetDevicePositionHistoryRequest {
|
|
719
719
|
TrackerName: string | undefined;
|
|
720
720
|
DeviceId: string | undefined;
|
|
721
|
-
NextToken?: string;
|
|
722
|
-
StartTimeInclusive?: Date;
|
|
723
|
-
EndTimeExclusive?: Date;
|
|
724
|
-
MaxResults?: number;
|
|
721
|
+
NextToken?: string | undefined;
|
|
722
|
+
StartTimeInclusive?: Date | undefined;
|
|
723
|
+
EndTimeExclusive?: Date | undefined;
|
|
724
|
+
MaxResults?: number | undefined;
|
|
725
725
|
}
|
|
726
726
|
export interface GetDevicePositionHistoryResponse {
|
|
727
727
|
DevicePositions: DevicePosition[] | undefined;
|
|
728
|
-
NextToken?: string;
|
|
728
|
+
NextToken?: string | undefined;
|
|
729
729
|
}
|
|
730
730
|
export interface GetMapGlyphsRequest {
|
|
731
731
|
MapName: string | undefined;
|
|
732
732
|
FontStack: string | undefined;
|
|
733
733
|
FontUnicodeRange: string | undefined;
|
|
734
|
-
Key?: string;
|
|
734
|
+
Key?: string | undefined;
|
|
735
735
|
}
|
|
736
736
|
export interface GetMapGlyphsResponse {
|
|
737
|
-
Blob?: Uint8Array;
|
|
738
|
-
ContentType?: string;
|
|
739
|
-
CacheControl?: string;
|
|
737
|
+
Blob?: Uint8Array | undefined;
|
|
738
|
+
ContentType?: string | undefined;
|
|
739
|
+
CacheControl?: string | undefined;
|
|
740
740
|
}
|
|
741
741
|
export interface GetMapSpritesRequest {
|
|
742
742
|
MapName: string | undefined;
|
|
743
743
|
FileName: string | undefined;
|
|
744
|
-
Key?: string;
|
|
744
|
+
Key?: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
export interface GetMapSpritesResponse {
|
|
747
|
-
Blob?: Uint8Array;
|
|
748
|
-
ContentType?: string;
|
|
749
|
-
CacheControl?: string;
|
|
747
|
+
Blob?: Uint8Array | undefined;
|
|
748
|
+
ContentType?: string | undefined;
|
|
749
|
+
CacheControl?: string | undefined;
|
|
750
750
|
}
|
|
751
751
|
export interface GetMapStyleDescriptorRequest {
|
|
752
752
|
MapName: string | undefined;
|
|
753
|
-
Key?: string;
|
|
753
|
+
Key?: string | undefined;
|
|
754
754
|
}
|
|
755
755
|
export interface GetMapStyleDescriptorResponse {
|
|
756
|
-
Blob?: Uint8Array;
|
|
757
|
-
ContentType?: string;
|
|
758
|
-
CacheControl?: string;
|
|
756
|
+
Blob?: Uint8Array | undefined;
|
|
757
|
+
ContentType?: string | undefined;
|
|
758
|
+
CacheControl?: string | undefined;
|
|
759
759
|
}
|
|
760
760
|
export interface GetMapTileRequest {
|
|
761
761
|
MapName: string | undefined;
|
|
762
762
|
Z: string | undefined;
|
|
763
763
|
X: string | undefined;
|
|
764
764
|
Y: string | undefined;
|
|
765
|
-
Key?: string;
|
|
765
|
+
Key?: string | undefined;
|
|
766
766
|
}
|
|
767
767
|
export interface GetMapTileResponse {
|
|
768
|
-
Blob?: Uint8Array;
|
|
769
|
-
ContentType?: string;
|
|
770
|
-
CacheControl?: string;
|
|
768
|
+
Blob?: Uint8Array | undefined;
|
|
769
|
+
ContentType?: string | undefined;
|
|
770
|
+
CacheControl?: string | undefined;
|
|
771
771
|
}
|
|
772
772
|
export interface GetPlaceRequest {
|
|
773
773
|
IndexName: string | undefined;
|
|
774
774
|
PlaceId: string | undefined;
|
|
775
|
-
Language?: string;
|
|
776
|
-
Key?: string;
|
|
775
|
+
Language?: string | undefined;
|
|
776
|
+
Key?: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface PlaceGeometry {
|
|
779
|
-
Point?: number[];
|
|
779
|
+
Point?: number[] | undefined;
|
|
780
780
|
}
|
|
781
781
|
export interface TimeZone {
|
|
782
782
|
Name: string | undefined;
|
|
783
|
-
Offset?: number;
|
|
783
|
+
Offset?: number | undefined;
|
|
784
784
|
}
|
|
785
785
|
export interface Place {
|
|
786
|
-
Label?: string;
|
|
786
|
+
Label?: string | undefined;
|
|
787
787
|
Geometry: PlaceGeometry | undefined;
|
|
788
|
-
AddressNumber?: string;
|
|
789
|
-
Street?: string;
|
|
790
|
-
Neighborhood?: string;
|
|
791
|
-
Municipality?: string;
|
|
792
|
-
SubRegion?: string;
|
|
793
|
-
Region?: string;
|
|
794
|
-
Country?: string;
|
|
795
|
-
PostalCode?: string;
|
|
796
|
-
Interpolated?: boolean;
|
|
797
|
-
TimeZone?: TimeZone;
|
|
798
|
-
UnitType?: string;
|
|
799
|
-
UnitNumber?: string;
|
|
800
|
-
Categories?: string[];
|
|
801
|
-
SupplementalCategories?: string[];
|
|
802
|
-
SubMunicipality?: string;
|
|
788
|
+
AddressNumber?: string | undefined;
|
|
789
|
+
Street?: string | undefined;
|
|
790
|
+
Neighborhood?: string | undefined;
|
|
791
|
+
Municipality?: string | undefined;
|
|
792
|
+
SubRegion?: string | undefined;
|
|
793
|
+
Region?: string | undefined;
|
|
794
|
+
Country?: string | undefined;
|
|
795
|
+
PostalCode?: string | undefined;
|
|
796
|
+
Interpolated?: boolean | undefined;
|
|
797
|
+
TimeZone?: TimeZone | undefined;
|
|
798
|
+
UnitType?: string | undefined;
|
|
799
|
+
UnitNumber?: string | undefined;
|
|
800
|
+
Categories?: string[] | undefined;
|
|
801
|
+
SupplementalCategories?: string[] | undefined;
|
|
802
|
+
SubMunicipality?: string | undefined;
|
|
803
803
|
}
|
|
804
804
|
export interface GetPlaceResponse {
|
|
805
805
|
Place: Place | undefined;
|
|
806
806
|
}
|
|
807
807
|
export interface InferredState {
|
|
808
|
-
Position?: number[];
|
|
809
|
-
Accuracy?: PositionalAccuracy;
|
|
810
|
-
DeviationDistance?: number;
|
|
808
|
+
Position?: number[] | undefined;
|
|
809
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
810
|
+
DeviationDistance?: number | undefined;
|
|
811
811
|
ProxyDetected: boolean | undefined;
|
|
812
812
|
}
|
|
813
813
|
export interface TrackingFilterGeometry {
|
|
814
|
-
Polygon?: number[][][];
|
|
814
|
+
Polygon?: number[][][] | undefined;
|
|
815
815
|
}
|
|
816
816
|
export interface ListDevicePositionsRequest {
|
|
817
817
|
TrackerName: string | undefined;
|
|
818
|
-
MaxResults?: number;
|
|
819
|
-
NextToken?: string;
|
|
820
|
-
FilterGeometry?: TrackingFilterGeometry;
|
|
818
|
+
MaxResults?: number | undefined;
|
|
819
|
+
NextToken?: string | undefined;
|
|
820
|
+
FilterGeometry?: TrackingFilterGeometry | undefined;
|
|
821
821
|
}
|
|
822
822
|
export interface ListDevicePositionsResponseEntry {
|
|
823
823
|
DeviceId: string | undefined;
|
|
824
824
|
SampleTime: Date | undefined;
|
|
825
825
|
Position: number[] | undefined;
|
|
826
|
-
Accuracy?: PositionalAccuracy;
|
|
827
|
-
PositionProperties?: Record<string, string
|
|
826
|
+
Accuracy?: PositionalAccuracy | undefined;
|
|
827
|
+
PositionProperties?: Record<string, string> | undefined;
|
|
828
828
|
}
|
|
829
829
|
export interface ListDevicePositionsResponse {
|
|
830
830
|
Entries: ListDevicePositionsResponseEntry[] | undefined;
|
|
831
|
-
NextToken?: string;
|
|
831
|
+
NextToken?: string | undefined;
|
|
832
832
|
}
|
|
833
833
|
export interface ListMapsRequest {
|
|
834
|
-
MaxResults?: number;
|
|
835
|
-
NextToken?: string;
|
|
834
|
+
MaxResults?: number | undefined;
|
|
835
|
+
NextToken?: string | undefined;
|
|
836
836
|
}
|
|
837
837
|
export interface ListMapsResponseEntry {
|
|
838
838
|
MapName: string | undefined;
|
|
839
839
|
Description: string | undefined;
|
|
840
840
|
DataSource: string | undefined;
|
|
841
|
-
PricingPlan?: PricingPlan;
|
|
841
|
+
PricingPlan?: PricingPlan | undefined;
|
|
842
842
|
CreateTime: Date | undefined;
|
|
843
843
|
UpdateTime: Date | undefined;
|
|
844
844
|
}
|
|
845
845
|
export interface ListMapsResponse {
|
|
846
846
|
Entries: ListMapsResponseEntry[] | undefined;
|
|
847
|
-
NextToken?: string;
|
|
847
|
+
NextToken?: string | undefined;
|
|
848
848
|
}
|
|
849
849
|
export interface ListPlaceIndexesRequest {
|
|
850
|
-
MaxResults?: number;
|
|
851
|
-
NextToken?: string;
|
|
850
|
+
MaxResults?: number | undefined;
|
|
851
|
+
NextToken?: string | undefined;
|
|
852
852
|
}
|
|
853
853
|
export interface ListPlaceIndexesResponseEntry {
|
|
854
854
|
IndexName: string | undefined;
|
|
855
855
|
Description: string | undefined;
|
|
856
856
|
DataSource: string | undefined;
|
|
857
|
-
PricingPlan?: PricingPlan;
|
|
857
|
+
PricingPlan?: PricingPlan | undefined;
|
|
858
858
|
CreateTime: Date | undefined;
|
|
859
859
|
UpdateTime: Date | undefined;
|
|
860
860
|
}
|
|
861
861
|
export interface ListPlaceIndexesResponse {
|
|
862
862
|
Entries: ListPlaceIndexesResponseEntry[] | undefined;
|
|
863
|
-
NextToken?: string;
|
|
863
|
+
NextToken?: string | undefined;
|
|
864
864
|
}
|
|
865
865
|
export interface ListRouteCalculatorsRequest {
|
|
866
|
-
MaxResults?: number;
|
|
867
|
-
NextToken?: string;
|
|
866
|
+
MaxResults?: number | undefined;
|
|
867
|
+
NextToken?: string | undefined;
|
|
868
868
|
}
|
|
869
869
|
export interface ListRouteCalculatorsResponseEntry {
|
|
870
870
|
CalculatorName: string | undefined;
|
|
871
871
|
Description: string | undefined;
|
|
872
872
|
DataSource: string | undefined;
|
|
873
|
-
PricingPlan?: PricingPlan;
|
|
873
|
+
PricingPlan?: PricingPlan | undefined;
|
|
874
874
|
CreateTime: Date | undefined;
|
|
875
875
|
UpdateTime: Date | undefined;
|
|
876
876
|
}
|
|
877
877
|
export interface ListRouteCalculatorsResponse {
|
|
878
878
|
Entries: ListRouteCalculatorsResponseEntry[] | undefined;
|
|
879
|
-
NextToken?: string;
|
|
879
|
+
NextToken?: string | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface ListTrackerConsumersRequest {
|
|
882
882
|
TrackerName: string | undefined;
|
|
883
|
-
MaxResults?: number;
|
|
884
|
-
NextToken?: string;
|
|
883
|
+
MaxResults?: number | undefined;
|
|
884
|
+
NextToken?: string | undefined;
|
|
885
885
|
}
|
|
886
886
|
export interface ListTrackerConsumersResponse {
|
|
887
887
|
ConsumerArns: string[] | undefined;
|
|
888
|
-
NextToken?: string;
|
|
888
|
+
NextToken?: string | undefined;
|
|
889
889
|
}
|
|
890
890
|
export interface ListTrackersRequest {
|
|
891
|
-
MaxResults?: number;
|
|
892
|
-
NextToken?: string;
|
|
891
|
+
MaxResults?: number | undefined;
|
|
892
|
+
NextToken?: string | undefined;
|
|
893
893
|
}
|
|
894
894
|
export interface ListTrackersResponseEntry {
|
|
895
895
|
TrackerName: string | undefined;
|
|
896
896
|
Description: string | undefined;
|
|
897
|
-
PricingPlan?: PricingPlan;
|
|
898
|
-
PricingPlanDataSource?: string;
|
|
897
|
+
PricingPlan?: PricingPlan | undefined;
|
|
898
|
+
PricingPlanDataSource?: string | undefined;
|
|
899
899
|
CreateTime: Date | undefined;
|
|
900
900
|
UpdateTime: Date | undefined;
|
|
901
901
|
}
|
|
902
902
|
export interface ListTrackersResponse {
|
|
903
903
|
Entries: ListTrackersResponseEntry[] | undefined;
|
|
904
|
-
NextToken?: string;
|
|
904
|
+
NextToken?: string | undefined;
|
|
905
905
|
}
|
|
906
906
|
export interface MapConfigurationUpdate {
|
|
907
|
-
PoliticalView?: string;
|
|
908
|
-
CustomLayers?: string[];
|
|
907
|
+
PoliticalView?: string | undefined;
|
|
908
|
+
CustomLayers?: string[] | undefined;
|
|
909
909
|
}
|
|
910
910
|
export interface UpdateMapRequest {
|
|
911
911
|
MapName: string | undefined;
|
|
912
|
-
PricingPlan?: PricingPlan;
|
|
913
|
-
Description?: string;
|
|
914
|
-
ConfigurationUpdate?: MapConfigurationUpdate;
|
|
912
|
+
PricingPlan?: PricingPlan | undefined;
|
|
913
|
+
Description?: string | undefined;
|
|
914
|
+
ConfigurationUpdate?: MapConfigurationUpdate | undefined;
|
|
915
915
|
}
|
|
916
916
|
export interface UpdateMapResponse {
|
|
917
917
|
MapName: string | undefined;
|
|
@@ -921,20 +921,20 @@ export interface UpdateMapResponse {
|
|
|
921
921
|
export interface SearchPlaceIndexForPositionRequest {
|
|
922
922
|
IndexName: string | undefined;
|
|
923
923
|
Position: number[] | undefined;
|
|
924
|
-
MaxResults?: number;
|
|
925
|
-
Language?: string;
|
|
926
|
-
Key?: string;
|
|
924
|
+
MaxResults?: number | undefined;
|
|
925
|
+
Language?: string | undefined;
|
|
926
|
+
Key?: string | undefined;
|
|
927
927
|
}
|
|
928
928
|
export interface SearchForPositionResult {
|
|
929
929
|
Place: Place | undefined;
|
|
930
930
|
Distance: number | undefined;
|
|
931
|
-
PlaceId?: string;
|
|
931
|
+
PlaceId?: string | undefined;
|
|
932
932
|
}
|
|
933
933
|
export interface SearchPlaceIndexForPositionSummary {
|
|
934
934
|
Position: number[] | undefined;
|
|
935
|
-
MaxResults?: number;
|
|
935
|
+
MaxResults?: number | undefined;
|
|
936
936
|
DataSource: string | undefined;
|
|
937
|
-
Language?: string;
|
|
937
|
+
Language?: string | undefined;
|
|
938
938
|
}
|
|
939
939
|
export interface SearchPlaceIndexForPositionResponse {
|
|
940
940
|
Summary: SearchPlaceIndexForPositionSummary | undefined;
|
|
@@ -943,29 +943,29 @@ export interface SearchPlaceIndexForPositionResponse {
|
|
|
943
943
|
export interface SearchPlaceIndexForSuggestionsRequest {
|
|
944
944
|
IndexName: string | undefined;
|
|
945
945
|
Text: string | undefined;
|
|
946
|
-
BiasPosition?: number[];
|
|
947
|
-
FilterBBox?: number[];
|
|
948
|
-
FilterCountries?: string[];
|
|
949
|
-
MaxResults?: number;
|
|
950
|
-
Language?: string;
|
|
951
|
-
FilterCategories?: string[];
|
|
952
|
-
Key?: string;
|
|
946
|
+
BiasPosition?: number[] | undefined;
|
|
947
|
+
FilterBBox?: number[] | undefined;
|
|
948
|
+
FilterCountries?: string[] | undefined;
|
|
949
|
+
MaxResults?: number | undefined;
|
|
950
|
+
Language?: string | undefined;
|
|
951
|
+
FilterCategories?: string[] | undefined;
|
|
952
|
+
Key?: string | undefined;
|
|
953
953
|
}
|
|
954
954
|
export interface SearchForSuggestionsResult {
|
|
955
955
|
Text: string | undefined;
|
|
956
|
-
PlaceId?: string;
|
|
957
|
-
Categories?: string[];
|
|
958
|
-
SupplementalCategories?: string[];
|
|
956
|
+
PlaceId?: string | undefined;
|
|
957
|
+
Categories?: string[] | undefined;
|
|
958
|
+
SupplementalCategories?: string[] | undefined;
|
|
959
959
|
}
|
|
960
960
|
export interface SearchPlaceIndexForSuggestionsSummary {
|
|
961
961
|
Text: string | undefined;
|
|
962
|
-
BiasPosition?: number[];
|
|
963
|
-
FilterBBox?: number[];
|
|
964
|
-
FilterCountries?: string[];
|
|
965
|
-
MaxResults?: number;
|
|
962
|
+
BiasPosition?: number[] | undefined;
|
|
963
|
+
FilterBBox?: number[] | undefined;
|
|
964
|
+
FilterCountries?: string[] | undefined;
|
|
965
|
+
MaxResults?: number | undefined;
|
|
966
966
|
DataSource: string | undefined;
|
|
967
|
-
Language?: string;
|
|
968
|
-
FilterCategories?: string[];
|
|
967
|
+
Language?: string | undefined;
|
|
968
|
+
FilterCategories?: string[] | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface SearchPlaceIndexForSuggestionsResponse {
|
|
971
971
|
Summary: SearchPlaceIndexForSuggestionsSummary | undefined;
|
|
@@ -974,30 +974,30 @@ export interface SearchPlaceIndexForSuggestionsResponse {
|
|
|
974
974
|
export interface SearchPlaceIndexForTextRequest {
|
|
975
975
|
IndexName: string | undefined;
|
|
976
976
|
Text: string | undefined;
|
|
977
|
-
BiasPosition?: number[];
|
|
978
|
-
FilterBBox?: number[];
|
|
979
|
-
FilterCountries?: string[];
|
|
980
|
-
MaxResults?: number;
|
|
981
|
-
Language?: string;
|
|
982
|
-
FilterCategories?: string[];
|
|
983
|
-
Key?: string;
|
|
977
|
+
BiasPosition?: number[] | undefined;
|
|
978
|
+
FilterBBox?: number[] | undefined;
|
|
979
|
+
FilterCountries?: string[] | undefined;
|
|
980
|
+
MaxResults?: number | undefined;
|
|
981
|
+
Language?: string | undefined;
|
|
982
|
+
FilterCategories?: string[] | undefined;
|
|
983
|
+
Key?: string | undefined;
|
|
984
984
|
}
|
|
985
985
|
export interface SearchForTextResult {
|
|
986
986
|
Place: Place | undefined;
|
|
987
|
-
Distance?: number;
|
|
988
|
-
Relevance?: number;
|
|
989
|
-
PlaceId?: string;
|
|
987
|
+
Distance?: number | undefined;
|
|
988
|
+
Relevance?: number | undefined;
|
|
989
|
+
PlaceId?: string | undefined;
|
|
990
990
|
}
|
|
991
991
|
export interface SearchPlaceIndexForTextSummary {
|
|
992
992
|
Text: string | undefined;
|
|
993
|
-
BiasPosition?: number[];
|
|
994
|
-
FilterBBox?: number[];
|
|
995
|
-
FilterCountries?: string[];
|
|
996
|
-
MaxResults?: number;
|
|
997
|
-
ResultBBox?: number[];
|
|
993
|
+
BiasPosition?: number[] | undefined;
|
|
994
|
+
FilterBBox?: number[] | undefined;
|
|
995
|
+
FilterCountries?: string[] | undefined;
|
|
996
|
+
MaxResults?: number | undefined;
|
|
997
|
+
ResultBBox?: number[] | undefined;
|
|
998
998
|
DataSource: string | undefined;
|
|
999
|
-
Language?: string;
|
|
1000
|
-
FilterCategories?: string[];
|
|
999
|
+
Language?: string | undefined;
|
|
1000
|
+
FilterCategories?: string[] | undefined;
|
|
1001
1001
|
}
|
|
1002
1002
|
export interface SearchPlaceIndexForTextResponse {
|
|
1003
1003
|
Summary: SearchPlaceIndexForTextSummary | undefined;
|
|
@@ -1005,9 +1005,9 @@ export interface SearchPlaceIndexForTextResponse {
|
|
|
1005
1005
|
}
|
|
1006
1006
|
export interface UpdatePlaceIndexRequest {
|
|
1007
1007
|
IndexName: string | undefined;
|
|
1008
|
-
PricingPlan?: PricingPlan;
|
|
1009
|
-
Description?: string;
|
|
1010
|
-
DataSourceConfiguration?: DataSourceConfiguration;
|
|
1008
|
+
PricingPlan?: PricingPlan | undefined;
|
|
1009
|
+
Description?: string | undefined;
|
|
1010
|
+
DataSourceConfiguration?: DataSourceConfiguration | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface UpdatePlaceIndexResponse {
|
|
1013
1013
|
IndexName: string | undefined;
|
|
@@ -1016,8 +1016,8 @@ export interface UpdatePlaceIndexResponse {
|
|
|
1016
1016
|
}
|
|
1017
1017
|
export interface UpdateRouteCalculatorRequest {
|
|
1018
1018
|
CalculatorName: string | undefined;
|
|
1019
|
-
PricingPlan?: PricingPlan;
|
|
1020
|
-
Description?: string;
|
|
1019
|
+
PricingPlan?: PricingPlan | undefined;
|
|
1020
|
+
Description?: string | undefined;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface UpdateRouteCalculatorResponse {
|
|
1023
1023
|
CalculatorName: string | undefined;
|
|
@@ -1026,12 +1026,12 @@ export interface UpdateRouteCalculatorResponse {
|
|
|
1026
1026
|
}
|
|
1027
1027
|
export interface UpdateTrackerRequest {
|
|
1028
1028
|
TrackerName: string | undefined;
|
|
1029
|
-
PricingPlan?: PricingPlan;
|
|
1030
|
-
PricingPlanDataSource?: string;
|
|
1031
|
-
Description?: string;
|
|
1032
|
-
PositionFiltering?: PositionFiltering;
|
|
1033
|
-
EventBridgeEnabled?: boolean;
|
|
1034
|
-
KmsKeyEnableGeospatialQueries?: boolean;
|
|
1029
|
+
PricingPlan?: PricingPlan | undefined;
|
|
1030
|
+
PricingPlanDataSource?: string | undefined;
|
|
1031
|
+
Description?: string | undefined;
|
|
1032
|
+
PositionFiltering?: PositionFiltering | undefined;
|
|
1033
|
+
EventBridgeEnabled?: boolean | undefined;
|
|
1034
|
+
KmsKeyEnableGeospatialQueries?: boolean | undefined;
|
|
1035
1035
|
}
|
|
1036
1036
|
export interface UpdateTrackerResponse {
|
|
1037
1037
|
TrackerName: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ export interface UpdateTrackerResponse {
|
|
|
1041
1041
|
export interface VerifyDevicePositionRequest {
|
|
1042
1042
|
TrackerName: string | undefined;
|
|
1043
1043
|
DeviceState: DeviceState | undefined;
|
|
1044
|
-
DistanceUnit?: DistanceUnit;
|
|
1044
|
+
DistanceUnit?: DistanceUnit | undefined;
|
|
1045
1045
|
}
|
|
1046
1046
|
export interface VerifyDevicePositionResponse {
|
|
1047
1047
|
InferredState: InferredState | undefined;
|