@aws-sdk/client-location 3.295.0 → 3.297.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/Location.d.ts +60 -1
- package/dist-types/LocationClient.d.ts +24 -4
- package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteDevicePositionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteGeofenceCommand.d.ts +16 -0
- package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetDevicePositionCommand.d.ts +16 -0
- package/dist-types/commands/BatchPutGeofenceCommand.d.ts +16 -0
- package/dist-types/commands/BatchUpdateDevicePositionCommand.d.ts +17 -1
- package/dist-types/commands/CalculateRouteCommand.d.ts +16 -0
- package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +16 -0
- package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateKeyCommand.d.ts +16 -0
- package/dist-types/commands/CreateMapCommand.d.ts +16 -0
- package/dist-types/commands/CreatePlaceIndexCommand.d.ts +16 -0
- package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +16 -0
- package/dist-types/commands/CreateTrackerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMapCommand.d.ts +16 -0
- package/dist-types/commands/DeletePlaceIndexCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTrackerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeGeofenceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeKeyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeMapCommand.d.ts +16 -0
- package/dist-types/commands/DescribePlaceIndexCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRouteCalculatorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrackerCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateTrackerConsumerCommand.d.ts +16 -0
- package/dist-types/commands/GetDevicePositionCommand.d.ts +16 -0
- package/dist-types/commands/GetDevicePositionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/GetGeofenceCommand.d.ts +16 -0
- package/dist-types/commands/GetMapGlyphsCommand.d.ts +16 -0
- package/dist-types/commands/GetMapSpritesCommand.d.ts +16 -0
- package/dist-types/commands/GetMapStyleDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/GetMapTileCommand.d.ts +16 -0
- package/dist-types/commands/GetPlaceCommand.d.ts +16 -0
- package/dist-types/commands/ListDevicePositionsCommand.d.ts +16 -0
- package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListGeofencesCommand.d.ts +16 -0
- package/dist-types/commands/ListKeysCommand.d.ts +16 -0
- package/dist-types/commands/ListMapsCommand.d.ts +16 -0
- package/dist-types/commands/ListPlaceIndexesCommand.d.ts +16 -0
- package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTrackerConsumersCommand.d.ts +16 -0
- package/dist-types/commands/ListTrackersCommand.d.ts +16 -0
- package/dist-types/commands/PutGeofenceCommand.d.ts +16 -0
- package/dist-types/commands/SearchPlaceIndexForPositionCommand.d.ts +16 -0
- package/dist-types/commands/SearchPlaceIndexForSuggestionsCommand.d.ts +16 -0
- package/dist-types/commands/SearchPlaceIndexForTextCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGeofenceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateKeyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMapCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePlaceIndexCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRouteCalculatorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTrackerCommand.d.ts +16 -0
- package/dist-types/models/LocationServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +434 -3
- package/dist-types/pagination/GetDevicePositionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDevicePositionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGeofenceCollectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGeofencesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListKeysPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMapsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPlaceIndexesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRouteCalculatorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTrackerConsumersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTrackersPaginator.d.ts +3 -0
- package/package.json +29 -29
package/dist-types/Location.d.ts
CHANGED
|
@@ -59,10 +59,12 @@ import { UpdateRouteCalculatorCommandInput, UpdateRouteCalculatorCommandOutput }
|
|
|
59
59
|
import { UpdateTrackerCommandInput, UpdateTrackerCommandOutput } from "./commands/UpdateTrackerCommand";
|
|
60
60
|
import { LocationClient } from "./LocationClient";
|
|
61
61
|
/**
|
|
62
|
+
* @public
|
|
62
63
|
* <p>"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing"</p>
|
|
63
64
|
*/
|
|
64
65
|
export declare class Location extends LocationClient {
|
|
65
66
|
/**
|
|
67
|
+
* @public
|
|
66
68
|
* <p>Creates an association between a geofence collection and a tracker resource. This
|
|
67
69
|
* allows the tracker resource to communicate location data to the linked geofence
|
|
68
70
|
* collection. </p>
|
|
@@ -75,12 +77,14 @@ export declare class Location extends LocationClient {
|
|
|
75
77
|
associateTrackerConsumer(args: AssociateTrackerConsumerCommandInput, cb: (err: any, data?: AssociateTrackerConsumerCommandOutput) => void): void;
|
|
76
78
|
associateTrackerConsumer(args: AssociateTrackerConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrackerConsumerCommandOutput) => void): void;
|
|
77
79
|
/**
|
|
80
|
+
* @public
|
|
78
81
|
* <p>Deletes the position history of one or more devices from a tracker resource.</p>
|
|
79
82
|
*/
|
|
80
83
|
batchDeleteDevicePositionHistory(args: BatchDeleteDevicePositionHistoryCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteDevicePositionHistoryCommandOutput>;
|
|
81
84
|
batchDeleteDevicePositionHistory(args: BatchDeleteDevicePositionHistoryCommandInput, cb: (err: any, data?: BatchDeleteDevicePositionHistoryCommandOutput) => void): void;
|
|
82
85
|
batchDeleteDevicePositionHistory(args: BatchDeleteDevicePositionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteDevicePositionHistoryCommandOutput) => void): void;
|
|
83
86
|
/**
|
|
87
|
+
* @public
|
|
84
88
|
* <p>Deletes a batch of geofences from a geofence collection.</p>
|
|
85
89
|
* <note>
|
|
86
90
|
* <p>This operation deletes the resource permanently.</p>
|
|
@@ -90,6 +94,7 @@ export declare class Location extends LocationClient {
|
|
|
90
94
|
batchDeleteGeofence(args: BatchDeleteGeofenceCommandInput, cb: (err: any, data?: BatchDeleteGeofenceCommandOutput) => void): void;
|
|
91
95
|
batchDeleteGeofence(args: BatchDeleteGeofenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteGeofenceCommandOutput) => void): void;
|
|
92
96
|
/**
|
|
97
|
+
* @public
|
|
93
98
|
* <p>Evaluates device positions against the geofence geometries from a given geofence
|
|
94
99
|
* collection.</p>
|
|
95
100
|
* <p>This operation always returns an empty response because geofences are asynchronously
|
|
@@ -124,12 +129,14 @@ export declare class Location extends LocationClient {
|
|
|
124
129
|
batchEvaluateGeofences(args: BatchEvaluateGeofencesCommandInput, cb: (err: any, data?: BatchEvaluateGeofencesCommandOutput) => void): void;
|
|
125
130
|
batchEvaluateGeofences(args: BatchEvaluateGeofencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchEvaluateGeofencesCommandOutput) => void): void;
|
|
126
131
|
/**
|
|
132
|
+
* @public
|
|
127
133
|
* <p>Lists the latest device positions for requested devices.</p>
|
|
128
134
|
*/
|
|
129
135
|
batchGetDevicePosition(args: BatchGetDevicePositionCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetDevicePositionCommandOutput>;
|
|
130
136
|
batchGetDevicePosition(args: BatchGetDevicePositionCommandInput, cb: (err: any, data?: BatchGetDevicePositionCommandOutput) => void): void;
|
|
131
137
|
batchGetDevicePosition(args: BatchGetDevicePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetDevicePositionCommandOutput) => void): void;
|
|
132
138
|
/**
|
|
139
|
+
* @public
|
|
133
140
|
* <p>A batch request for storing geofence geometries into a given geofence collection, or
|
|
134
141
|
* updates the geometry of an existing geofence if a geofence ID is included in the request.</p>
|
|
135
142
|
*/
|
|
@@ -137,6 +144,7 @@ export declare class Location extends LocationClient {
|
|
|
137
144
|
batchPutGeofence(args: BatchPutGeofenceCommandInput, cb: (err: any, data?: BatchPutGeofenceCommandOutput) => void): void;
|
|
138
145
|
batchPutGeofence(args: BatchPutGeofenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutGeofenceCommandOutput) => void): void;
|
|
139
146
|
/**
|
|
147
|
+
* @public
|
|
140
148
|
* <p>Uploads position update data for one or more devices to a tracker resource. Amazon Location
|
|
141
149
|
* uses the data when it reports the last known device position and position history. Amazon Location retains location data for 30
|
|
142
150
|
* days.</p>
|
|
@@ -153,7 +161,7 @@ export declare class Location extends LocationClient {
|
|
|
153
161
|
* updates from a device have a horizontal accuracy of 5 m and 10 m, the second update
|
|
154
162
|
* is neither stored or evaluated if the device has moved less than 15 m. If
|
|
155
163
|
* <code>PositionFiltering</code> is set to <code>AccuracyBased</code> filtering, Amazon Location
|
|
156
|
-
* uses the default value <code
|
|
164
|
+
* uses the default value <code>\{ "Horizontal": 0\}</code> when accuracy is not provided on
|
|
157
165
|
* a <code>DevicePositionUpdate</code>.</p>
|
|
158
166
|
* </note>
|
|
159
167
|
*/
|
|
@@ -161,6 +169,7 @@ export declare class Location extends LocationClient {
|
|
|
161
169
|
batchUpdateDevicePosition(args: BatchUpdateDevicePositionCommandInput, cb: (err: any, data?: BatchUpdateDevicePositionCommandOutput) => void): void;
|
|
162
170
|
batchUpdateDevicePosition(args: BatchUpdateDevicePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateDevicePositionCommandOutput) => void): void;
|
|
163
171
|
/**
|
|
172
|
+
* @public
|
|
164
173
|
* <p>
|
|
165
174
|
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route.html">Calculates a route</a> given the following required parameters:
|
|
166
175
|
* <code>DeparturePosition</code> and <code>DestinationPosition</code>. Requires that
|
|
@@ -200,6 +209,7 @@ export declare class Location extends LocationClient {
|
|
|
200
209
|
calculateRoute(args: CalculateRouteCommandInput, cb: (err: any, data?: CalculateRouteCommandOutput) => void): void;
|
|
201
210
|
calculateRoute(args: CalculateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CalculateRouteCommandOutput) => void): void;
|
|
202
211
|
/**
|
|
212
|
+
* @public
|
|
203
213
|
* <p>
|
|
204
214
|
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html"> Calculates a route
|
|
205
215
|
* matrix</a> given the following required parameters:
|
|
@@ -247,12 +257,14 @@ export declare class Location extends LocationClient {
|
|
|
247
257
|
calculateRouteMatrix(args: CalculateRouteMatrixCommandInput, cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void): void;
|
|
248
258
|
calculateRouteMatrix(args: CalculateRouteMatrixCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void): void;
|
|
249
259
|
/**
|
|
260
|
+
* @public
|
|
250
261
|
* <p>Creates a geofence collection, which manages and stores geofences.</p>
|
|
251
262
|
*/
|
|
252
263
|
createGeofenceCollection(args: CreateGeofenceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateGeofenceCollectionCommandOutput>;
|
|
253
264
|
createGeofenceCollection(args: CreateGeofenceCollectionCommandInput, cb: (err: any, data?: CreateGeofenceCollectionCommandOutput) => void): void;
|
|
254
265
|
createGeofenceCollection(args: CreateGeofenceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGeofenceCollectionCommandOutput) => void): void;
|
|
255
266
|
/**
|
|
267
|
+
* @public
|
|
256
268
|
* <p>Creates an API key resource in your Amazon Web Services account, which lets you grant
|
|
257
269
|
* <code>geo:GetMap*</code> actions for Amazon Location Map resources to the API key
|
|
258
270
|
* bearer.</p>
|
|
@@ -266,6 +278,7 @@ export declare class Location extends LocationClient {
|
|
|
266
278
|
createKey(args: CreateKeyCommandInput, cb: (err: any, data?: CreateKeyCommandOutput) => void): void;
|
|
267
279
|
createKey(args: CreateKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeyCommandOutput) => void): void;
|
|
268
280
|
/**
|
|
281
|
+
* @public
|
|
269
282
|
* <p>Creates a map resource in your Amazon Web Services account, which provides map tiles of different
|
|
270
283
|
* styles sourced from global location data providers.</p>
|
|
271
284
|
* <note>
|
|
@@ -279,6 +292,7 @@ export declare class Location extends LocationClient {
|
|
|
279
292
|
createMap(args: CreateMapCommandInput, cb: (err: any, data?: CreateMapCommandOutput) => void): void;
|
|
280
293
|
createMap(args: CreateMapCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMapCommandOutput) => void): void;
|
|
281
294
|
/**
|
|
295
|
+
* @public
|
|
282
296
|
* <p>Creates a place index resource in your Amazon Web Services account. Use a place index resource to
|
|
283
297
|
* geocode addresses and other text queries by using the
|
|
284
298
|
* <code>SearchPlaceIndexForText</code> operation, and reverse geocode coordinates by
|
|
@@ -295,6 +309,7 @@ export declare class Location extends LocationClient {
|
|
|
295
309
|
createPlaceIndex(args: CreatePlaceIndexCommandInput, cb: (err: any, data?: CreatePlaceIndexCommandOutput) => void): void;
|
|
296
310
|
createPlaceIndex(args: CreatePlaceIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePlaceIndexCommandOutput) => void): void;
|
|
297
311
|
/**
|
|
312
|
+
* @public
|
|
298
313
|
* <p>Creates a route calculator resource in your Amazon Web Services account.</p>
|
|
299
314
|
* <p>You can send requests to a route calculator resource to estimate travel time,
|
|
300
315
|
* distance, and get directions. A route calculator sources traffic and road network data
|
|
@@ -310,6 +325,7 @@ export declare class Location extends LocationClient {
|
|
|
310
325
|
createRouteCalculator(args: CreateRouteCalculatorCommandInput, cb: (err: any, data?: CreateRouteCalculatorCommandOutput) => void): void;
|
|
311
326
|
createRouteCalculator(args: CreateRouteCalculatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteCalculatorCommandOutput) => void): void;
|
|
312
327
|
/**
|
|
328
|
+
* @public
|
|
313
329
|
* <p>Creates a tracker resource in your Amazon Web Services account, which lets you retrieve current and
|
|
314
330
|
* historical location of devices.</p>
|
|
315
331
|
*/
|
|
@@ -317,6 +333,7 @@ export declare class Location extends LocationClient {
|
|
|
317
333
|
createTracker(args: CreateTrackerCommandInput, cb: (err: any, data?: CreateTrackerCommandOutput) => void): void;
|
|
318
334
|
createTracker(args: CreateTrackerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrackerCommandOutput) => void): void;
|
|
319
335
|
/**
|
|
336
|
+
* @public
|
|
320
337
|
* <p>Deletes a geofence collection from your Amazon Web Services account.</p>
|
|
321
338
|
* <note>
|
|
322
339
|
* <p>This operation deletes the resource permanently. If the geofence collection is the
|
|
@@ -327,6 +344,7 @@ export declare class Location extends LocationClient {
|
|
|
327
344
|
deleteGeofenceCollection(args: DeleteGeofenceCollectionCommandInput, cb: (err: any, data?: DeleteGeofenceCollectionCommandOutput) => void): void;
|
|
328
345
|
deleteGeofenceCollection(args: DeleteGeofenceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGeofenceCollectionCommandOutput) => void): void;
|
|
329
346
|
/**
|
|
347
|
+
* @public
|
|
330
348
|
* <p>Deletes the specified API key. The API key must have been deactivated more than
|
|
331
349
|
* 90 days previously.</p>
|
|
332
350
|
*/
|
|
@@ -334,6 +352,7 @@ export declare class Location extends LocationClient {
|
|
|
334
352
|
deleteKey(args: DeleteKeyCommandInput, cb: (err: any, data?: DeleteKeyCommandOutput) => void): void;
|
|
335
353
|
deleteKey(args: DeleteKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKeyCommandOutput) => void): void;
|
|
336
354
|
/**
|
|
355
|
+
* @public
|
|
337
356
|
* <p>Deletes a map resource from your Amazon Web Services account.</p>
|
|
338
357
|
* <note>
|
|
339
358
|
* <p>This operation deletes the resource permanently. If the map is being used in an application,
|
|
@@ -344,6 +363,7 @@ export declare class Location extends LocationClient {
|
|
|
344
363
|
deleteMap(args: DeleteMapCommandInput, cb: (err: any, data?: DeleteMapCommandOutput) => void): void;
|
|
345
364
|
deleteMap(args: DeleteMapCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMapCommandOutput) => void): void;
|
|
346
365
|
/**
|
|
366
|
+
* @public
|
|
347
367
|
* <p>Deletes a place index resource from your Amazon Web Services account.</p>
|
|
348
368
|
* <note>
|
|
349
369
|
* <p>This operation deletes the resource permanently.</p>
|
|
@@ -353,6 +373,7 @@ export declare class Location extends LocationClient {
|
|
|
353
373
|
deletePlaceIndex(args: DeletePlaceIndexCommandInput, cb: (err: any, data?: DeletePlaceIndexCommandOutput) => void): void;
|
|
354
374
|
deletePlaceIndex(args: DeletePlaceIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePlaceIndexCommandOutput) => void): void;
|
|
355
375
|
/**
|
|
376
|
+
* @public
|
|
356
377
|
* <p>Deletes a route calculator resource from your Amazon Web Services account.</p>
|
|
357
378
|
* <note>
|
|
358
379
|
* <p>This operation deletes the resource permanently.</p>
|
|
@@ -362,6 +383,7 @@ export declare class Location extends LocationClient {
|
|
|
362
383
|
deleteRouteCalculator(args: DeleteRouteCalculatorCommandInput, cb: (err: any, data?: DeleteRouteCalculatorCommandOutput) => void): void;
|
|
363
384
|
deleteRouteCalculator(args: DeleteRouteCalculatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteCalculatorCommandOutput) => void): void;
|
|
364
385
|
/**
|
|
386
|
+
* @public
|
|
365
387
|
* <p>Deletes a tracker resource from your Amazon Web Services account.</p>
|
|
366
388
|
* <note>
|
|
367
389
|
* <p>This operation deletes the resource permanently. If the tracker resource is in use, you may
|
|
@@ -373,12 +395,14 @@ export declare class Location extends LocationClient {
|
|
|
373
395
|
deleteTracker(args: DeleteTrackerCommandInput, cb: (err: any, data?: DeleteTrackerCommandOutput) => void): void;
|
|
374
396
|
deleteTracker(args: DeleteTrackerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrackerCommandOutput) => void): void;
|
|
375
397
|
/**
|
|
398
|
+
* @public
|
|
376
399
|
* <p>Retrieves the geofence collection details.</p>
|
|
377
400
|
*/
|
|
378
401
|
describeGeofenceCollection(args: DescribeGeofenceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGeofenceCollectionCommandOutput>;
|
|
379
402
|
describeGeofenceCollection(args: DescribeGeofenceCollectionCommandInput, cb: (err: any, data?: DescribeGeofenceCollectionCommandOutput) => void): void;
|
|
380
403
|
describeGeofenceCollection(args: DescribeGeofenceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGeofenceCollectionCommandOutput) => void): void;
|
|
381
404
|
/**
|
|
405
|
+
* @public
|
|
382
406
|
* <p>Retrieves the API key resource details.</p>
|
|
383
407
|
* <important>
|
|
384
408
|
* <p>The API keys feature is in preview. We may add, change, or remove
|
|
@@ -390,30 +414,35 @@ export declare class Location extends LocationClient {
|
|
|
390
414
|
describeKey(args: DescribeKeyCommandInput, cb: (err: any, data?: DescribeKeyCommandOutput) => void): void;
|
|
391
415
|
describeKey(args: DescribeKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeKeyCommandOutput) => void): void;
|
|
392
416
|
/**
|
|
417
|
+
* @public
|
|
393
418
|
* <p>Retrieves the map resource details.</p>
|
|
394
419
|
*/
|
|
395
420
|
describeMap(args: DescribeMapCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMapCommandOutput>;
|
|
396
421
|
describeMap(args: DescribeMapCommandInput, cb: (err: any, data?: DescribeMapCommandOutput) => void): void;
|
|
397
422
|
describeMap(args: DescribeMapCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMapCommandOutput) => void): void;
|
|
398
423
|
/**
|
|
424
|
+
* @public
|
|
399
425
|
* <p>Retrieves the place index resource details.</p>
|
|
400
426
|
*/
|
|
401
427
|
describePlaceIndex(args: DescribePlaceIndexCommandInput, options?: __HttpHandlerOptions): Promise<DescribePlaceIndexCommandOutput>;
|
|
402
428
|
describePlaceIndex(args: DescribePlaceIndexCommandInput, cb: (err: any, data?: DescribePlaceIndexCommandOutput) => void): void;
|
|
403
429
|
describePlaceIndex(args: DescribePlaceIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePlaceIndexCommandOutput) => void): void;
|
|
404
430
|
/**
|
|
431
|
+
* @public
|
|
405
432
|
* <p>Retrieves the route calculator resource details.</p>
|
|
406
433
|
*/
|
|
407
434
|
describeRouteCalculator(args: DescribeRouteCalculatorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRouteCalculatorCommandOutput>;
|
|
408
435
|
describeRouteCalculator(args: DescribeRouteCalculatorCommandInput, cb: (err: any, data?: DescribeRouteCalculatorCommandOutput) => void): void;
|
|
409
436
|
describeRouteCalculator(args: DescribeRouteCalculatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRouteCalculatorCommandOutput) => void): void;
|
|
410
437
|
/**
|
|
438
|
+
* @public
|
|
411
439
|
* <p>Retrieves the tracker resource details.</p>
|
|
412
440
|
*/
|
|
413
441
|
describeTracker(args: DescribeTrackerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrackerCommandOutput>;
|
|
414
442
|
describeTracker(args: DescribeTrackerCommandInput, cb: (err: any, data?: DescribeTrackerCommandOutput) => void): void;
|
|
415
443
|
describeTracker(args: DescribeTrackerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrackerCommandOutput) => void): void;
|
|
416
444
|
/**
|
|
445
|
+
* @public
|
|
417
446
|
* <p>Removes the association between a tracker resource and a geofence collection.</p>
|
|
418
447
|
* <note>
|
|
419
448
|
* <p>Once you unlink a tracker resource from a geofence collection, the tracker
|
|
@@ -424,6 +453,7 @@ export declare class Location extends LocationClient {
|
|
|
424
453
|
disassociateTrackerConsumer(args: DisassociateTrackerConsumerCommandInput, cb: (err: any, data?: DisassociateTrackerConsumerCommandOutput) => void): void;
|
|
425
454
|
disassociateTrackerConsumer(args: DisassociateTrackerConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrackerConsumerCommandOutput) => void): void;
|
|
426
455
|
/**
|
|
456
|
+
* @public
|
|
427
457
|
* <p>Retrieves a device's most recent position according to its sample time.</p>
|
|
428
458
|
* <note>
|
|
429
459
|
* <p>Device positions are deleted after 30 days.</p>
|
|
@@ -433,6 +463,7 @@ export declare class Location extends LocationClient {
|
|
|
433
463
|
getDevicePosition(args: GetDevicePositionCommandInput, cb: (err: any, data?: GetDevicePositionCommandOutput) => void): void;
|
|
434
464
|
getDevicePosition(args: GetDevicePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDevicePositionCommandOutput) => void): void;
|
|
435
465
|
/**
|
|
466
|
+
* @public
|
|
436
467
|
* <p>Retrieves the device position history from a tracker resource within a specified range
|
|
437
468
|
* of time.</p>
|
|
438
469
|
* <note>
|
|
@@ -443,18 +474,21 @@ export declare class Location extends LocationClient {
|
|
|
443
474
|
getDevicePositionHistory(args: GetDevicePositionHistoryCommandInput, cb: (err: any, data?: GetDevicePositionHistoryCommandOutput) => void): void;
|
|
444
475
|
getDevicePositionHistory(args: GetDevicePositionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDevicePositionHistoryCommandOutput) => void): void;
|
|
445
476
|
/**
|
|
477
|
+
* @public
|
|
446
478
|
* <p>Retrieves the geofence details from a geofence collection.</p>
|
|
447
479
|
*/
|
|
448
480
|
getGeofence(args: GetGeofenceCommandInput, options?: __HttpHandlerOptions): Promise<GetGeofenceCommandOutput>;
|
|
449
481
|
getGeofence(args: GetGeofenceCommandInput, cb: (err: any, data?: GetGeofenceCommandOutput) => void): void;
|
|
450
482
|
getGeofence(args: GetGeofenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGeofenceCommandOutput) => void): void;
|
|
451
483
|
/**
|
|
484
|
+
* @public
|
|
452
485
|
* <p>Retrieves glyphs used to display labels on a map.</p>
|
|
453
486
|
*/
|
|
454
487
|
getMapGlyphs(args: GetMapGlyphsCommandInput, options?: __HttpHandlerOptions): Promise<GetMapGlyphsCommandOutput>;
|
|
455
488
|
getMapGlyphs(args: GetMapGlyphsCommandInput, cb: (err: any, data?: GetMapGlyphsCommandOutput) => void): void;
|
|
456
489
|
getMapGlyphs(args: GetMapGlyphsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMapGlyphsCommandOutput) => void): void;
|
|
457
490
|
/**
|
|
491
|
+
* @public
|
|
458
492
|
* <p>Retrieves the sprite sheet corresponding to a map resource. The sprite sheet is a PNG
|
|
459
493
|
* image paired with a JSON document describing the offsets of individual icons that will
|
|
460
494
|
* be displayed on a rendered map.</p>
|
|
@@ -463,6 +497,7 @@ export declare class Location extends LocationClient {
|
|
|
463
497
|
getMapSprites(args: GetMapSpritesCommandInput, cb: (err: any, data?: GetMapSpritesCommandOutput) => void): void;
|
|
464
498
|
getMapSprites(args: GetMapSpritesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMapSpritesCommandOutput) => void): void;
|
|
465
499
|
/**
|
|
500
|
+
* @public
|
|
466
501
|
* <p>Retrieves the map style descriptor from a map resource. </p>
|
|
467
502
|
* <p>The style descriptor contains specifications on how features render on a map. For
|
|
468
503
|
* example, what data to display, what order to display the data in, and the style for the
|
|
@@ -472,6 +507,7 @@ export declare class Location extends LocationClient {
|
|
|
472
507
|
getMapStyleDescriptor(args: GetMapStyleDescriptorCommandInput, cb: (err: any, data?: GetMapStyleDescriptorCommandOutput) => void): void;
|
|
473
508
|
getMapStyleDescriptor(args: GetMapStyleDescriptorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMapStyleDescriptorCommandOutput) => void): void;
|
|
474
509
|
/**
|
|
510
|
+
* @public
|
|
475
511
|
* <p>Retrieves a vector data tile from the map resource. Map tiles are used by clients to
|
|
476
512
|
* render a map. they're addressed using a grid arrangement with an X coordinate, Y
|
|
477
513
|
* coordinate, and Z (zoom) level. </p>
|
|
@@ -483,6 +519,7 @@ export declare class Location extends LocationClient {
|
|
|
483
519
|
getMapTile(args: GetMapTileCommandInput, cb: (err: any, data?: GetMapTileCommandOutput) => void): void;
|
|
484
520
|
getMapTile(args: GetMapTileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMapTileCommandOutput) => void): void;
|
|
485
521
|
/**
|
|
522
|
+
* @public
|
|
486
523
|
* <p>Finds a place by its unique ID. A <code>PlaceId</code> is returned by other search
|
|
487
524
|
* operations.</p>
|
|
488
525
|
* <note>
|
|
@@ -505,24 +542,28 @@ export declare class Location extends LocationClient {
|
|
|
505
542
|
getPlace(args: GetPlaceCommandInput, cb: (err: any, data?: GetPlaceCommandOutput) => void): void;
|
|
506
543
|
getPlace(args: GetPlaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPlaceCommandOutput) => void): void;
|
|
507
544
|
/**
|
|
545
|
+
* @public
|
|
508
546
|
* <p>A batch request to retrieve all device positions.</p>
|
|
509
547
|
*/
|
|
510
548
|
listDevicePositions(args: ListDevicePositionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicePositionsCommandOutput>;
|
|
511
549
|
listDevicePositions(args: ListDevicePositionsCommandInput, cb: (err: any, data?: ListDevicePositionsCommandOutput) => void): void;
|
|
512
550
|
listDevicePositions(args: ListDevicePositionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicePositionsCommandOutput) => void): void;
|
|
513
551
|
/**
|
|
552
|
+
* @public
|
|
514
553
|
* <p>Lists geofence collections in your Amazon Web Services account.</p>
|
|
515
554
|
*/
|
|
516
555
|
listGeofenceCollections(args: ListGeofenceCollectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListGeofenceCollectionsCommandOutput>;
|
|
517
556
|
listGeofenceCollections(args: ListGeofenceCollectionsCommandInput, cb: (err: any, data?: ListGeofenceCollectionsCommandOutput) => void): void;
|
|
518
557
|
listGeofenceCollections(args: ListGeofenceCollectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGeofenceCollectionsCommandOutput) => void): void;
|
|
519
558
|
/**
|
|
559
|
+
* @public
|
|
520
560
|
* <p>Lists geofences stored in a given geofence collection.</p>
|
|
521
561
|
*/
|
|
522
562
|
listGeofences(args: ListGeofencesCommandInput, options?: __HttpHandlerOptions): Promise<ListGeofencesCommandOutput>;
|
|
523
563
|
listGeofences(args: ListGeofencesCommandInput, cb: (err: any, data?: ListGeofencesCommandOutput) => void): void;
|
|
524
564
|
listGeofences(args: ListGeofencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGeofencesCommandOutput) => void): void;
|
|
525
565
|
/**
|
|
566
|
+
* @public
|
|
526
567
|
* <p>Lists API key resources in your Amazon Web Services account.</p>
|
|
527
568
|
* <important>
|
|
528
569
|
* <p>The API keys feature is in preview. We may add, change, or remove
|
|
@@ -534,42 +575,49 @@ export declare class Location extends LocationClient {
|
|
|
534
575
|
listKeys(args: ListKeysCommandInput, cb: (err: any, data?: ListKeysCommandOutput) => void): void;
|
|
535
576
|
listKeys(args: ListKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKeysCommandOutput) => void): void;
|
|
536
577
|
/**
|
|
578
|
+
* @public
|
|
537
579
|
* <p>Lists map resources in your Amazon Web Services account.</p>
|
|
538
580
|
*/
|
|
539
581
|
listMaps(args: ListMapsCommandInput, options?: __HttpHandlerOptions): Promise<ListMapsCommandOutput>;
|
|
540
582
|
listMaps(args: ListMapsCommandInput, cb: (err: any, data?: ListMapsCommandOutput) => void): void;
|
|
541
583
|
listMaps(args: ListMapsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMapsCommandOutput) => void): void;
|
|
542
584
|
/**
|
|
585
|
+
* @public
|
|
543
586
|
* <p>Lists place index resources in your Amazon Web Services account.</p>
|
|
544
587
|
*/
|
|
545
588
|
listPlaceIndexes(args: ListPlaceIndexesCommandInput, options?: __HttpHandlerOptions): Promise<ListPlaceIndexesCommandOutput>;
|
|
546
589
|
listPlaceIndexes(args: ListPlaceIndexesCommandInput, cb: (err: any, data?: ListPlaceIndexesCommandOutput) => void): void;
|
|
547
590
|
listPlaceIndexes(args: ListPlaceIndexesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPlaceIndexesCommandOutput) => void): void;
|
|
548
591
|
/**
|
|
592
|
+
* @public
|
|
549
593
|
* <p>Lists route calculator resources in your Amazon Web Services account.</p>
|
|
550
594
|
*/
|
|
551
595
|
listRouteCalculators(args: ListRouteCalculatorsCommandInput, options?: __HttpHandlerOptions): Promise<ListRouteCalculatorsCommandOutput>;
|
|
552
596
|
listRouteCalculators(args: ListRouteCalculatorsCommandInput, cb: (err: any, data?: ListRouteCalculatorsCommandOutput) => void): void;
|
|
553
597
|
listRouteCalculators(args: ListRouteCalculatorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRouteCalculatorsCommandOutput) => void): void;
|
|
554
598
|
/**
|
|
599
|
+
* @public
|
|
555
600
|
* <p>Returns a list of tags that are applied to the specified Amazon Location resource.</p>
|
|
556
601
|
*/
|
|
557
602
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
558
603
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
559
604
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
560
605
|
/**
|
|
606
|
+
* @public
|
|
561
607
|
* <p>Lists geofence collections currently associated to the given tracker resource.</p>
|
|
562
608
|
*/
|
|
563
609
|
listTrackerConsumers(args: ListTrackerConsumersCommandInput, options?: __HttpHandlerOptions): Promise<ListTrackerConsumersCommandOutput>;
|
|
564
610
|
listTrackerConsumers(args: ListTrackerConsumersCommandInput, cb: (err: any, data?: ListTrackerConsumersCommandOutput) => void): void;
|
|
565
611
|
listTrackerConsumers(args: ListTrackerConsumersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrackerConsumersCommandOutput) => void): void;
|
|
566
612
|
/**
|
|
613
|
+
* @public
|
|
567
614
|
* <p>Lists tracker resources in your Amazon Web Services account.</p>
|
|
568
615
|
*/
|
|
569
616
|
listTrackers(args: ListTrackersCommandInput, options?: __HttpHandlerOptions): Promise<ListTrackersCommandOutput>;
|
|
570
617
|
listTrackers(args: ListTrackersCommandInput, cb: (err: any, data?: ListTrackersCommandOutput) => void): void;
|
|
571
618
|
listTrackers(args: ListTrackersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrackersCommandOutput) => void): void;
|
|
572
619
|
/**
|
|
620
|
+
* @public
|
|
573
621
|
* <p>Stores a geofence geometry in a given geofence collection, or updates the geometry of
|
|
574
622
|
* an existing geofence if a geofence ID is included in the request. </p>
|
|
575
623
|
*/
|
|
@@ -577,6 +625,7 @@ export declare class Location extends LocationClient {
|
|
|
577
625
|
putGeofence(args: PutGeofenceCommandInput, cb: (err: any, data?: PutGeofenceCommandOutput) => void): void;
|
|
578
626
|
putGeofence(args: PutGeofenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutGeofenceCommandOutput) => void): void;
|
|
579
627
|
/**
|
|
628
|
+
* @public
|
|
580
629
|
* <p>Reverse geocodes a given coordinate and returns a legible address. Allows you to
|
|
581
630
|
* search for Places or points of interest near a given position.</p>
|
|
582
631
|
*/
|
|
@@ -584,6 +633,7 @@ export declare class Location extends LocationClient {
|
|
|
584
633
|
searchPlaceIndexForPosition(args: SearchPlaceIndexForPositionCommandInput, cb: (err: any, data?: SearchPlaceIndexForPositionCommandOutput) => void): void;
|
|
585
634
|
searchPlaceIndexForPosition(args: SearchPlaceIndexForPositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchPlaceIndexForPositionCommandOutput) => void): void;
|
|
586
635
|
/**
|
|
636
|
+
* @public
|
|
587
637
|
* <p>Generates suggestions for addresses and points of interest based on partial or
|
|
588
638
|
* misspelled free-form text. This operation is also known as autocomplete, autosuggest, or
|
|
589
639
|
* fuzzy matching.</p>
|
|
@@ -601,6 +651,7 @@ export declare class Location extends LocationClient {
|
|
|
601
651
|
searchPlaceIndexForSuggestions(args: SearchPlaceIndexForSuggestionsCommandInput, cb: (err: any, data?: SearchPlaceIndexForSuggestionsCommandOutput) => void): void;
|
|
602
652
|
searchPlaceIndexForSuggestions(args: SearchPlaceIndexForSuggestionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchPlaceIndexForSuggestionsCommandOutput) => void): void;
|
|
603
653
|
/**
|
|
654
|
+
* @public
|
|
604
655
|
* <p>Geocodes free-form text, such as an address, name, city, or region to allow you to
|
|
605
656
|
* search for Places or points of interest. </p>
|
|
606
657
|
* <p>Optional parameters let you narrow your search results by bounding box or country, or
|
|
@@ -616,6 +667,7 @@ export declare class Location extends LocationClient {
|
|
|
616
667
|
searchPlaceIndexForText(args: SearchPlaceIndexForTextCommandInput, cb: (err: any, data?: SearchPlaceIndexForTextCommandOutput) => void): void;
|
|
617
668
|
searchPlaceIndexForText(args: SearchPlaceIndexForTextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchPlaceIndexForTextCommandOutput) => void): void;
|
|
618
669
|
/**
|
|
670
|
+
* @public
|
|
619
671
|
* <p>Assigns one or more tags (key-value pairs) to the specified Amazon Location Service
|
|
620
672
|
* resource.</p>
|
|
621
673
|
* <p>Tags can help you organize and categorize your resources. You can also use them to
|
|
@@ -632,18 +684,21 @@ export declare class Location extends LocationClient {
|
|
|
632
684
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
633
685
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
634
686
|
/**
|
|
687
|
+
* @public
|
|
635
688
|
* <p>Removes one or more tags from the specified Amazon Location resource.</p>
|
|
636
689
|
*/
|
|
637
690
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
638
691
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
639
692
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
640
693
|
/**
|
|
694
|
+
* @public
|
|
641
695
|
* <p>Updates the specified properties of a given geofence collection.</p>
|
|
642
696
|
*/
|
|
643
697
|
updateGeofenceCollection(args: UpdateGeofenceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGeofenceCollectionCommandOutput>;
|
|
644
698
|
updateGeofenceCollection(args: UpdateGeofenceCollectionCommandInput, cb: (err: any, data?: UpdateGeofenceCollectionCommandOutput) => void): void;
|
|
645
699
|
updateGeofenceCollection(args: UpdateGeofenceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGeofenceCollectionCommandOutput) => void): void;
|
|
646
700
|
/**
|
|
701
|
+
* @public
|
|
647
702
|
* <p>Updates the specified properties of a given API key resource.</p>
|
|
648
703
|
* <important>
|
|
649
704
|
* <p>The API keys feature is in preview. We may add, change, or remove
|
|
@@ -655,24 +710,28 @@ export declare class Location extends LocationClient {
|
|
|
655
710
|
updateKey(args: UpdateKeyCommandInput, cb: (err: any, data?: UpdateKeyCommandOutput) => void): void;
|
|
656
711
|
updateKey(args: UpdateKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKeyCommandOutput) => void): void;
|
|
657
712
|
/**
|
|
713
|
+
* @public
|
|
658
714
|
* <p>Updates the specified properties of a given map resource.</p>
|
|
659
715
|
*/
|
|
660
716
|
updateMap(args: UpdateMapCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMapCommandOutput>;
|
|
661
717
|
updateMap(args: UpdateMapCommandInput, cb: (err: any, data?: UpdateMapCommandOutput) => void): void;
|
|
662
718
|
updateMap(args: UpdateMapCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMapCommandOutput) => void): void;
|
|
663
719
|
/**
|
|
720
|
+
* @public
|
|
664
721
|
* <p>Updates the specified properties of a given place index resource.</p>
|
|
665
722
|
*/
|
|
666
723
|
updatePlaceIndex(args: UpdatePlaceIndexCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePlaceIndexCommandOutput>;
|
|
667
724
|
updatePlaceIndex(args: UpdatePlaceIndexCommandInput, cb: (err: any, data?: UpdatePlaceIndexCommandOutput) => void): void;
|
|
668
725
|
updatePlaceIndex(args: UpdatePlaceIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePlaceIndexCommandOutput) => void): void;
|
|
669
726
|
/**
|
|
727
|
+
* @public
|
|
670
728
|
* <p>Updates the specified properties for a given route calculator resource.</p>
|
|
671
729
|
*/
|
|
672
730
|
updateRouteCalculator(args: UpdateRouteCalculatorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteCalculatorCommandOutput>;
|
|
673
731
|
updateRouteCalculator(args: UpdateRouteCalculatorCommandInput, cb: (err: any, data?: UpdateRouteCalculatorCommandOutput) => void): void;
|
|
674
732
|
updateRouteCalculator(args: UpdateRouteCalculatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouteCalculatorCommandOutput) => void): void;
|
|
675
733
|
/**
|
|
734
|
+
* @public
|
|
676
735
|
* <p>Updates the specified properties of a given tracker resource.</p>
|
|
677
736
|
*/
|
|
678
737
|
updateTracker(args: UpdateTrackerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrackerCommandOutput>;
|
|
@@ -66,15 +66,24 @@ import { UpdatePlaceIndexCommandInput, UpdatePlaceIndexCommandOutput } from "./c
|
|
|
66
66
|
import { UpdateRouteCalculatorCommandInput, UpdateRouteCalculatorCommandOutput } from "./commands/UpdateRouteCalculatorCommand";
|
|
67
67
|
import { UpdateTrackerCommandInput, UpdateTrackerCommandOutput } from "./commands/UpdateTrackerCommand";
|
|
68
68
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
69
72
|
export type ServiceInputTypes = AssociateTrackerConsumerCommandInput | BatchDeleteDevicePositionHistoryCommandInput | BatchDeleteGeofenceCommandInput | BatchEvaluateGeofencesCommandInput | BatchGetDevicePositionCommandInput | BatchPutGeofenceCommandInput | BatchUpdateDevicePositionCommandInput | CalculateRouteCommandInput | CalculateRouteMatrixCommandInput | CreateGeofenceCollectionCommandInput | CreateKeyCommandInput | CreateMapCommandInput | CreatePlaceIndexCommandInput | CreateRouteCalculatorCommandInput | CreateTrackerCommandInput | DeleteGeofenceCollectionCommandInput | DeleteKeyCommandInput | DeleteMapCommandInput | DeletePlaceIndexCommandInput | DeleteRouteCalculatorCommandInput | DeleteTrackerCommandInput | DescribeGeofenceCollectionCommandInput | DescribeKeyCommandInput | DescribeMapCommandInput | DescribePlaceIndexCommandInput | DescribeRouteCalculatorCommandInput | DescribeTrackerCommandInput | DisassociateTrackerConsumerCommandInput | GetDevicePositionCommandInput | GetDevicePositionHistoryCommandInput | GetGeofenceCommandInput | GetMapGlyphsCommandInput | GetMapSpritesCommandInput | GetMapStyleDescriptorCommandInput | GetMapTileCommandInput | GetPlaceCommandInput | ListDevicePositionsCommandInput | ListGeofenceCollectionsCommandInput | ListGeofencesCommandInput | ListKeysCommandInput | ListMapsCommandInput | ListPlaceIndexesCommandInput | ListRouteCalculatorsCommandInput | ListTagsForResourceCommandInput | ListTrackerConsumersCommandInput | ListTrackersCommandInput | PutGeofenceCommandInput | SearchPlaceIndexForPositionCommandInput | SearchPlaceIndexForSuggestionsCommandInput | SearchPlaceIndexForTextCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateGeofenceCollectionCommandInput | UpdateKeyCommandInput | UpdateMapCommandInput | UpdatePlaceIndexCommandInput | UpdateRouteCalculatorCommandInput | UpdateTrackerCommandInput;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
70
76
|
export type ServiceOutputTypes = AssociateTrackerConsumerCommandOutput | BatchDeleteDevicePositionHistoryCommandOutput | BatchDeleteGeofenceCommandOutput | BatchEvaluateGeofencesCommandOutput | BatchGetDevicePositionCommandOutput | BatchPutGeofenceCommandOutput | BatchUpdateDevicePositionCommandOutput | CalculateRouteCommandOutput | CalculateRouteMatrixCommandOutput | CreateGeofenceCollectionCommandOutput | CreateKeyCommandOutput | CreateMapCommandOutput | CreatePlaceIndexCommandOutput | CreateRouteCalculatorCommandOutput | CreateTrackerCommandOutput | DeleteGeofenceCollectionCommandOutput | DeleteKeyCommandOutput | DeleteMapCommandOutput | DeletePlaceIndexCommandOutput | DeleteRouteCalculatorCommandOutput | DeleteTrackerCommandOutput | DescribeGeofenceCollectionCommandOutput | DescribeKeyCommandOutput | DescribeMapCommandOutput | DescribePlaceIndexCommandOutput | DescribeRouteCalculatorCommandOutput | DescribeTrackerCommandOutput | DisassociateTrackerConsumerCommandOutput | GetDevicePositionCommandOutput | GetDevicePositionHistoryCommandOutput | GetGeofenceCommandOutput | GetMapGlyphsCommandOutput | GetMapSpritesCommandOutput | GetMapStyleDescriptorCommandOutput | GetMapTileCommandOutput | GetPlaceCommandOutput | ListDevicePositionsCommandOutput | ListGeofenceCollectionsCommandOutput | ListGeofencesCommandOutput | ListKeysCommandOutput | ListMapsCommandOutput | ListPlaceIndexesCommandOutput | ListRouteCalculatorsCommandOutput | ListTagsForResourceCommandOutput | ListTrackerConsumersCommandOutput | ListTrackersCommandOutput | PutGeofenceCommandOutput | SearchPlaceIndexForPositionCommandOutput | SearchPlaceIndexForSuggestionsCommandOutput | SearchPlaceIndexForTextCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateGeofenceCollectionCommandOutput | UpdateKeyCommandOutput | UpdateMapCommandOutput | UpdatePlaceIndexCommandOutput | UpdateRouteCalculatorCommandOutput | UpdateTrackerCommandOutput;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
71
80
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
72
81
|
/**
|
|
73
82
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
74
83
|
*/
|
|
75
84
|
requestHandler?: __HttpHandler;
|
|
76
85
|
/**
|
|
77
|
-
* A constructor for a class implementing the {@link
|
|
86
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
78
87
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
79
88
|
* @internal
|
|
80
89
|
*/
|
|
@@ -164,23 +173,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
164
173
|
*/
|
|
165
174
|
logger?: __Logger;
|
|
166
175
|
/**
|
|
167
|
-
* The {@link
|
|
176
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
168
177
|
*/
|
|
169
178
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
170
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
171
183
|
type LocationClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
172
184
|
/**
|
|
173
|
-
*
|
|
185
|
+
* @public
|
|
186
|
+
*
|
|
187
|
+
* The configuration interface of LocationClient class constructor that set the region, credentials and other options.
|
|
174
188
|
*/
|
|
175
189
|
export interface LocationClientConfig extends LocationClientConfigType {
|
|
176
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
177
194
|
type LocationClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
178
195
|
/**
|
|
179
|
-
*
|
|
196
|
+
* @public
|
|
197
|
+
*
|
|
198
|
+
* The resolved configuration interface of LocationClient class. This is resolved and normalized from the {@link LocationClientConfig | constructor configuration interface}.
|
|
180
199
|
*/
|
|
181
200
|
export interface LocationClientResolvedConfig extends LocationClientResolvedConfigType {
|
|
182
201
|
}
|
|
183
202
|
/**
|
|
203
|
+
* @public
|
|
184
204
|
* <p>"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing"</p>
|
|
185
205
|
*/
|
|
186
206
|
export declare class LocationClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LocationClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { AssociateTrackerConsumerRequest, AssociateTrackerConsumerResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateTrackerConsumerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateTrackerConsumerCommandInput extends AssociateTrackerConsumerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateTrackerConsumerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerConsumerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an association between a geofence collection and a tracker resource. This
|
|
18
23
|
* allows the tracker resource to communicate location data to the linked geofence
|
|
19
24
|
* collection. </p>
|
|
@@ -31,6 +36,8 @@ export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerC
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param AssociateTrackerConsumerCommandInput - {@link AssociateTrackerConsumerCommandInput}
|
|
40
|
+
* @returns {@link AssociateTrackerConsumerCommandOutput}
|
|
34
41
|
* @see {@link AssociateTrackerConsumerCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link AssociateTrackerConsumerCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerC
|
|
|
63
70
|
export declare class AssociateTrackerConsumerCommand extends $Command<AssociateTrackerConsumerCommandInput, AssociateTrackerConsumerCommandOutput, LocationClientResolvedConfig> {
|
|
64
71
|
readonly input: AssociateTrackerConsumerCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: AssociateTrackerConsumerCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateTrackerConsumerCommandInput, AssociateTrackerConsumerCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { BatchDeleteDevicePositionHistoryRequest, BatchDeleteDevicePositionHistoryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchDeleteDevicePositionHistoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchDeleteDevicePositionHistoryCommandInput extends BatchDeleteDevicePositionHistoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchDeleteDevicePositionHistoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchDeleteDevicePositionHistoryCommandOutput extends BatchDeleteDevicePositionHistoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the position history of one or more devices from a tracker resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchDeleteDevicePositionHistoryCommandOutput extends BatchDele
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchDeleteDevicePositionHistoryCommandInput - {@link BatchDeleteDevicePositionHistoryCommandInput}
|
|
34
|
+
* @returns {@link BatchDeleteDevicePositionHistoryCommandOutput}
|
|
28
35
|
* @see {@link BatchDeleteDevicePositionHistoryCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchDeleteDevicePositionHistoryCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface BatchDeleteDevicePositionHistoryCommandOutput extends BatchDele
|
|
|
50
57
|
export declare class BatchDeleteDevicePositionHistoryCommand extends $Command<BatchDeleteDevicePositionHistoryCommandInput, BatchDeleteDevicePositionHistoryCommandOutput, LocationClientResolvedConfig> {
|
|
51
58
|
readonly input: BatchDeleteDevicePositionHistoryCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: BatchDeleteDevicePositionHistoryCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteDevicePositionHistoryCommandInput, BatchDeleteDevicePositionHistoryCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|