@aws-sdk/client-location 3.296.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 +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { DisassociateTrackerConsumerRequest, DisassociateTrackerConsumerResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateTrackerConsumerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateTrackerConsumerCommandInput extends DisassociateTrackerConsumerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateTrackerConsumerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTrackerConsumerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the association between a tracker resource and a geofence collection.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>Once you unlink a tracker resource from a geofence collection, the tracker
|
|
@@ -29,6 +34,8 @@ export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTr
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DisassociateTrackerConsumerCommandInput - {@link DisassociateTrackerConsumerCommandInput}
|
|
38
|
+
* @returns {@link DisassociateTrackerConsumerCommandOutput}
|
|
32
39
|
* @see {@link DisassociateTrackerConsumerCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DisassociateTrackerConsumerCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTr
|
|
|
54
61
|
export declare class DisassociateTrackerConsumerCommand extends $Command<DisassociateTrackerConsumerCommandInput, DisassociateTrackerConsumerCommandOutput, LocationClientResolvedConfig> {
|
|
55
62
|
readonly input: DisassociateTrackerConsumerCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DisassociateTrackerConsumerCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateTrackerConsumerCommandInput, DisassociateTrackerConsumerCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetDevicePositionRequest, GetDevicePositionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDevicePositionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDevicePositionCommandInput extends GetDevicePositionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDevicePositionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDevicePositionCommandOutput extends GetDevicePositionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a device's most recent position according to its sample time.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>Device positions are deleted after 30 days.</p>
|
|
@@ -28,6 +33,8 @@ export interface GetDevicePositionCommandOutput extends GetDevicePositionRespons
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetDevicePositionCommandInput - {@link GetDevicePositionCommandInput}
|
|
37
|
+
* @returns {@link GetDevicePositionCommandOutput}
|
|
31
38
|
* @see {@link GetDevicePositionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetDevicePositionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetDevicePositionCommandOutput extends GetDevicePositionRespons
|
|
|
53
60
|
export declare class GetDevicePositionCommand extends $Command<GetDevicePositionCommandInput, GetDevicePositionCommandOutput, LocationClientResolvedConfig> {
|
|
54
61
|
readonly input: GetDevicePositionCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetDevicePositionCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDevicePositionCommandInput, GetDevicePositionCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetDevicePositionHistoryRequest, GetDevicePositionHistoryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDevicePositionHistoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDevicePositionHistoryCommandInput extends GetDevicePositionHistoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDevicePositionHistoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDevicePositionHistoryCommandOutput extends GetDevicePositionHistoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the device position history from a tracker resource within a specified range
|
|
18
23
|
* of time.</p>
|
|
19
24
|
* <note>
|
|
@@ -29,6 +34,8 @@ export interface GetDevicePositionHistoryCommandOutput extends GetDevicePosition
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetDevicePositionHistoryCommandInput - {@link GetDevicePositionHistoryCommandInput}
|
|
38
|
+
* @returns {@link GetDevicePositionHistoryCommandOutput}
|
|
32
39
|
* @see {@link GetDevicePositionHistoryCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetDevicePositionHistoryCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetDevicePositionHistoryCommandOutput extends GetDevicePosition
|
|
|
54
61
|
export declare class GetDevicePositionHistoryCommand extends $Command<GetDevicePositionHistoryCommandInput, GetDevicePositionHistoryCommandOutput, LocationClientResolvedConfig> {
|
|
55
62
|
readonly input: GetDevicePositionHistoryCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetDevicePositionHistoryCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDevicePositionHistoryCommandInput, GetDevicePositionHistoryCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetGeofenceRequest, GetGeofenceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGeofenceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGeofenceCommandInput extends GetGeofenceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGeofenceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the geofence details from a geofence collection.</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 GetGeofenceCommandOutput extends GetGeofenceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetGeofenceCommandInput - {@link GetGeofenceCommandInput}
|
|
34
|
+
* @returns {@link GetGeofenceCommandOutput}
|
|
28
35
|
* @see {@link GetGeofenceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetGeofenceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __Metadat
|
|
|
50
57
|
export declare class GetGeofenceCommand extends $Command<GetGeofenceCommandInput, GetGeofenceCommandOutput, LocationClientResolvedConfig> {
|
|
51
58
|
readonly input: GetGeofenceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetGeofenceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGeofenceCommandInput, GetGeofenceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetMapGlyphsRequest, GetMapGlyphsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMapGlyphsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMapGlyphsCommandInput extends GetMapGlyphsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMapGlyphsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves glyphs used to display labels on a map.</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 GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetMapGlyphsCommandInput - {@link GetMapGlyphsCommandInput}
|
|
34
|
+
* @returns {@link GetMapGlyphsCommandOutput}
|
|
28
35
|
* @see {@link GetMapGlyphsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetMapGlyphsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __Metad
|
|
|
50
57
|
export declare class GetMapGlyphsCommand extends $Command<GetMapGlyphsCommandInput, GetMapGlyphsCommandOutput, LocationClientResolvedConfig> {
|
|
51
58
|
readonly input: GetMapGlyphsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetMapGlyphsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMapGlyphsCommandInput, GetMapGlyphsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetMapSpritesRequest, GetMapSpritesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMapSpritesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMapSpritesCommandInput extends GetMapSpritesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMapSpritesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the sprite sheet corresponding to a map resource. The sprite sheet is a PNG
|
|
18
23
|
* image paired with a JSON document describing the offsets of individual icons that will
|
|
19
24
|
* be displayed on a rendered map.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetMapSpritesCommandInput - {@link GetMapSpritesCommandInput}
|
|
36
|
+
* @returns {@link GetMapSpritesCommandOutput}
|
|
30
37
|
* @see {@link GetMapSpritesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetMapSpritesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __Met
|
|
|
52
59
|
export declare class GetMapSpritesCommand extends $Command<GetMapSpritesCommandInput, GetMapSpritesCommandOutput, LocationClientResolvedConfig> {
|
|
53
60
|
readonly input: GetMapSpritesCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetMapSpritesCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMapSpritesCommandInput, GetMapSpritesCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetMapStyleDescriptorRequest, GetMapStyleDescriptorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMapStyleDescriptorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMapStyleDescriptorCommandInput extends GetMapStyleDescriptorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMapStyleDescriptorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescriptorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the map style descriptor from a map resource. </p>
|
|
18
23
|
* <p>The style descriptor contains specifications on how features render on a map. For
|
|
19
24
|
* example, what data to display, what order to display the data in, and the style for the
|
|
@@ -28,6 +33,8 @@ export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescripto
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetMapStyleDescriptorCommandInput - {@link GetMapStyleDescriptorCommandInput}
|
|
37
|
+
* @returns {@link GetMapStyleDescriptorCommandOutput}
|
|
31
38
|
* @see {@link GetMapStyleDescriptorCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetMapStyleDescriptorCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescripto
|
|
|
53
60
|
export declare class GetMapStyleDescriptorCommand extends $Command<GetMapStyleDescriptorCommandInput, GetMapStyleDescriptorCommandOutput, LocationClientResolvedConfig> {
|
|
54
61
|
readonly input: GetMapStyleDescriptorCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetMapStyleDescriptorCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMapStyleDescriptorCommandInput, GetMapStyleDescriptorCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetMapTileRequest, GetMapTileResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMapTileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMapTileCommandInput extends GetMapTileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMapTileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a vector data tile from the map resource. Map tiles are used by clients to
|
|
18
23
|
* render a map. they're addressed using a grid arrangement with an X coordinate, Y
|
|
19
24
|
* coordinate, and Z (zoom) level. </p>
|
|
@@ -30,6 +35,8 @@ export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataB
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param GetMapTileCommandInput - {@link GetMapTileCommandInput}
|
|
39
|
+
* @returns {@link GetMapTileCommandOutput}
|
|
33
40
|
* @see {@link GetMapTileCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link GetMapTileCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataB
|
|
|
55
62
|
export declare class GetMapTileCommand extends $Command<GetMapTileCommandInput, GetMapTileCommandOutput, LocationClientResolvedConfig> {
|
|
56
63
|
readonly input: GetMapTileCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: GetMapTileCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMapTileCommandInput, GetMapTileCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { GetPlaceRequest, GetPlaceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPlaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPlaceCommandInput extends GetPlaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPlaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Finds a place by its unique ID. A <code>PlaceId</code> is returned by other search
|
|
18
23
|
* operations.</p>
|
|
19
24
|
* <note>
|
|
@@ -41,6 +46,8 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare
|
|
|
41
46
|
* const response = await client.send(command);
|
|
42
47
|
* ```
|
|
43
48
|
*
|
|
49
|
+
* @param GetPlaceCommandInput - {@link GetPlaceCommandInput}
|
|
50
|
+
* @returns {@link GetPlaceCommandOutput}
|
|
44
51
|
* @see {@link GetPlaceCommandInput} for command's `input` shape.
|
|
45
52
|
* @see {@link GetPlaceCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare
|
|
|
66
73
|
export declare class GetPlaceCommand extends $Command<GetPlaceCommandInput, GetPlaceCommandOutput, LocationClientResolvedConfig> {
|
|
67
74
|
readonly input: GetPlaceCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: GetPlaceCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPlaceCommandInput, GetPlaceCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { ListDevicePositionsRequest, ListDevicePositionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDevicePositionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDevicePositionsCommandInput extends ListDevicePositionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDevicePositionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDevicePositionsCommandOutput extends ListDevicePositionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>A batch request to retrieve all device positions.</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 ListDevicePositionsCommandOutput extends ListDevicePositionsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDevicePositionsCommandInput - {@link ListDevicePositionsCommandInput}
|
|
34
|
+
* @returns {@link ListDevicePositionsCommandOutput}
|
|
28
35
|
* @see {@link ListDevicePositionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDevicePositionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListDevicePositionsCommandOutput extends ListDevicePositionsRes
|
|
|
47
54
|
export declare class ListDevicePositionsCommand extends $Command<ListDevicePositionsCommandInput, ListDevicePositionsCommandOutput, LocationClientResolvedConfig> {
|
|
48
55
|
readonly input: ListDevicePositionsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListDevicePositionsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDevicePositionsCommandInput, ListDevicePositionsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { ListGeofenceCollectionsRequest, ListGeofenceCollectionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGeofenceCollectionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGeofenceCollectionsCommandInput extends ListGeofenceCollectionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGeofenceCollectionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollectionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists geofence collections in your Amazon Web Services account.</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 ListGeofenceCollectionsCommandOutput extends ListGeofenceCollec
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListGeofenceCollectionsCommandInput - {@link ListGeofenceCollectionsCommandInput}
|
|
34
|
+
* @returns {@link ListGeofenceCollectionsCommandOutput}
|
|
28
35
|
* @see {@link ListGeofenceCollectionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListGeofenceCollectionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollec
|
|
|
47
54
|
export declare class ListGeofenceCollectionsCommand extends $Command<ListGeofenceCollectionsCommandInput, ListGeofenceCollectionsCommandOutput, LocationClientResolvedConfig> {
|
|
48
55
|
readonly input: ListGeofenceCollectionsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListGeofenceCollectionsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGeofenceCollectionsCommandInput, ListGeofenceCollectionsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { ListGeofencesRequest, ListGeofencesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGeofencesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGeofencesCommandInput extends ListGeofencesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGeofencesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists geofences stored in a given geofence collection.</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 ListGeofencesCommandOutput extends ListGeofencesResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListGeofencesCommandInput - {@link ListGeofencesCommandInput}
|
|
34
|
+
* @returns {@link ListGeofencesCommandOutput}
|
|
28
35
|
* @see {@link ListGeofencesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListGeofencesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __Met
|
|
|
50
57
|
export declare class ListGeofencesCommand extends $Command<ListGeofencesCommandInput, ListGeofencesCommandOutput, LocationClientResolvedConfig> {
|
|
51
58
|
readonly input: ListGeofencesCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListGeofencesCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGeofencesCommandInput, ListGeofencesCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
|
|
5
5
|
import { ListKeysRequest, ListKeysResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListKeysCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListKeysCommandInput extends ListKeysRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListKeysCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists API key resources in your Amazon Web Services account.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>The API keys feature is in preview. We may add, change, or remove
|
|
@@ -30,6 +35,8 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListKeysCommandInput - {@link ListKeysCommandInput}
|
|
39
|
+
* @returns {@link ListKeysCommandOutput}
|
|
33
40
|
* @see {@link ListKeysCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListKeysCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare
|
|
|
52
59
|
export declare class ListKeysCommand extends $Command<ListKeysCommandInput, ListKeysCommandOutput, LocationClientResolvedConfig> {
|
|
53
60
|
readonly input: ListKeysCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListKeysCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LocationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKeysCommandInput, ListKeysCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|