@aws-sdk/client-location 3.325.0 → 3.327.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/commands/AssociateTrackerConsumerCommand.d.ts +4 -0
- package/dist-types/commands/BatchDeleteDevicePositionHistoryCommand.d.ts +14 -0
- package/dist-types/commands/BatchDeleteGeofenceCommand.d.ts +14 -0
- package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +15 -0
- package/dist-types/commands/BatchGetDevicePositionCommand.d.ts +30 -0
- package/dist-types/commands/BatchPutGeofenceCommand.d.ts +21 -0
- package/dist-types/commands/BatchUpdateDevicePositionCommand.d.ts +15 -0
- package/dist-types/commands/CalculateRouteCommand.d.ts +46 -0
- package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +33 -0
- package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +8 -0
- package/dist-types/commands/CreateKeyCommand.d.ts +9 -0
- package/dist-types/commands/CreateMapCommand.d.ts +8 -0
- package/dist-types/commands/CreatePlaceIndexCommand.d.ts +8 -0
- package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +8 -0
- package/dist-types/commands/CreateTrackerCommand.d.ts +8 -0
- package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKeyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMapCommand.d.ts +4 -0
- package/dist-types/commands/DeletePlaceIndexCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTrackerCommand.d.ts +4 -0
- package/dist-types/commands/DescribeGeofenceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeKeyCommand.d.ts +26 -0
- package/dist-types/commands/DescribeMapCommand.d.ts +18 -0
- package/dist-types/commands/DescribePlaceIndexCommand.d.ts +18 -0
- package/dist-types/commands/DescribeRouteCalculatorCommand.d.ts +15 -0
- package/dist-types/commands/DescribeTrackerCommand.d.ts +17 -0
- package/dist-types/commands/DisassociateTrackerConsumerCommand.d.ts +4 -0
- package/dist-types/commands/GetDevicePositionCommand.d.ts +17 -0
- package/dist-types/commands/GetDevicePositionHistoryCommand.d.ts +22 -0
- package/dist-types/commands/GetGeofenceCommand.d.ts +24 -0
- package/dist-types/commands/GetMapGlyphsCommand.d.ts +8 -0
- package/dist-types/commands/GetMapSpritesCommand.d.ts +8 -0
- package/dist-types/commands/GetMapStyleDescriptorCommand.d.ts +8 -0
- package/dist-types/commands/GetMapTileCommand.d.ts +8 -0
- package/dist-types/commands/GetPlaceCommand.d.ts +28 -0
- package/dist-types/commands/ListDevicePositionsCommand.d.ts +21 -0
- package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListGeofencesCommand.d.ts +29 -0
- package/dist-types/commands/ListKeysCommand.d.ts +26 -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 +8 -0
- package/dist-types/commands/ListTrackerConsumersCommand.d.ts +9 -0
- package/dist-types/commands/ListTrackersCommand.d.ts +16 -0
- package/dist-types/commands/PutGeofenceCommand.d.ts +8 -0
- package/dist-types/commands/SearchPlaceIndexForPositionCommand.d.ts +42 -0
- package/dist-types/commands/SearchPlaceIndexForSuggestionsCommand.d.ts +26 -0
- package/dist-types/commands/SearchPlaceIndexForTextCommand.d.ts +53 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateGeofenceCollectionCommand.d.ts +8 -0
- package/dist-types/commands/UpdateKeyCommand.d.ts +8 -0
- package/dist-types/commands/UpdateMapCommand.d.ts +8 -0
- package/dist-types/commands/UpdatePlaceIndexCommand.d.ts +8 -0
- package/dist-types/commands/UpdateRouteCalculatorCommand.d.ts +8 -0
- package/dist-types/commands/UpdateTrackerCommand.d.ts +8 -0
- package/package.json +7 -7
|
@@ -31,6 +31,22 @@ export interface DescribeMapCommandOutput extends DescribeMapResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeMapCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeMapResponse
|
|
35
|
+
* // MapName: "STRING_VALUE", // required
|
|
36
|
+
* // MapArn: "STRING_VALUE", // required
|
|
37
|
+
* // PricingPlan: "STRING_VALUE",
|
|
38
|
+
* // DataSource: "STRING_VALUE", // required
|
|
39
|
+
* // Configuration: { // MapConfiguration
|
|
40
|
+
* // Style: "STRING_VALUE", // required
|
|
41
|
+
* // },
|
|
42
|
+
* // Description: "STRING_VALUE", // required
|
|
43
|
+
* // Tags: { // TagMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param DescribeMapCommandInput - {@link DescribeMapCommandInput}
|
|
@@ -55,6 +71,8 @@ export interface DescribeMapCommandOutput extends DescribeMapResponse, __Metadat
|
|
|
55
71
|
* @throws {@link ValidationException} (client fault)
|
|
56
72
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
73
|
*
|
|
74
|
+
* @throws {@link LocationServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
76
|
*
|
|
59
77
|
*/
|
|
60
78
|
export declare class DescribeMapCommand extends $Command<DescribeMapCommandInput, DescribeMapCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface DescribePlaceIndexCommandOutput extends DescribePlaceIndexRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribePlaceIndexCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribePlaceIndexResponse
|
|
35
|
+
* // IndexName: "STRING_VALUE", // required
|
|
36
|
+
* // IndexArn: "STRING_VALUE", // required
|
|
37
|
+
* // PricingPlan: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE", // required
|
|
39
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // DataSource: "STRING_VALUE", // required
|
|
42
|
+
* // DataSourceConfiguration: { // DataSourceConfiguration
|
|
43
|
+
* // IntendedUse: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // Tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param DescribePlaceIndexCommandInput - {@link DescribePlaceIndexCommandInput}
|
|
@@ -55,6 +71,8 @@ export interface DescribePlaceIndexCommandOutput extends DescribePlaceIndexRespo
|
|
|
55
71
|
* @throws {@link ValidationException} (client fault)
|
|
56
72
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
73
|
*
|
|
74
|
+
* @throws {@link LocationServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
76
|
*
|
|
59
77
|
*/
|
|
60
78
|
export declare class DescribePlaceIndexCommand extends $Command<DescribePlaceIndexCommandInput, DescribePlaceIndexCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -31,6 +31,19 @@ export interface DescribeRouteCalculatorCommandOutput extends DescribeRouteCalcu
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeRouteCalculatorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeRouteCalculatorResponse
|
|
35
|
+
* // CalculatorName: "STRING_VALUE", // required
|
|
36
|
+
* // CalculatorArn: "STRING_VALUE", // required
|
|
37
|
+
* // PricingPlan: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE", // required
|
|
39
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // DataSource: "STRING_VALUE", // required
|
|
42
|
+
* // Tags: { // TagMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
34
47
|
* ```
|
|
35
48
|
*
|
|
36
49
|
* @param DescribeRouteCalculatorCommandInput - {@link DescribeRouteCalculatorCommandInput}
|
|
@@ -55,6 +68,8 @@ export interface DescribeRouteCalculatorCommandOutput extends DescribeRouteCalcu
|
|
|
55
68
|
* @throws {@link ValidationException} (client fault)
|
|
56
69
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
70
|
*
|
|
71
|
+
* @throws {@link LocationServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
73
|
*
|
|
59
74
|
*/
|
|
60
75
|
export declare class DescribeRouteCalculatorCommand extends $Command<DescribeRouteCalculatorCommandInput, DescribeRouteCalculatorCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -31,6 +31,21 @@ export interface DescribeTrackerCommandOutput extends DescribeTrackerResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeTrackerCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeTrackerResponse
|
|
35
|
+
* // TrackerName: "STRING_VALUE", // required
|
|
36
|
+
* // TrackerArn: "STRING_VALUE", // required
|
|
37
|
+
* // Description: "STRING_VALUE", // required
|
|
38
|
+
* // PricingPlan: "STRING_VALUE",
|
|
39
|
+
* // PricingPlanDataSource: "STRING_VALUE",
|
|
40
|
+
* // Tags: { // TagMap
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
46
|
+
* // PositionFiltering: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
34
49
|
* ```
|
|
35
50
|
*
|
|
36
51
|
* @param DescribeTrackerCommandInput - {@link DescribeTrackerCommandInput}
|
|
@@ -55,6 +70,8 @@ export interface DescribeTrackerCommandOutput extends DescribeTrackerResponse, _
|
|
|
55
70
|
* @throws {@link ValidationException} (client fault)
|
|
56
71
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
72
|
*
|
|
73
|
+
* @throws {@link LocationServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
75
|
*
|
|
59
76
|
*/
|
|
60
77
|
export declare class DescribeTrackerCommand extends $Command<DescribeTrackerCommandInput, DescribeTrackerCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTr
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DisassociateTrackerConsumerCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param DisassociateTrackerConsumerCommandInput - {@link DisassociateTrackerConsumerCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTr
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link LocationServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DisassociateTrackerConsumerCommand extends $Command<DisassociateTrackerConsumerCommandInput, DisassociateTrackerConsumerCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -35,6 +35,21 @@ export interface GetDevicePositionCommandOutput extends GetDevicePositionRespons
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetDevicePositionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetDevicePositionResponse
|
|
39
|
+
* // DeviceId: "STRING_VALUE",
|
|
40
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // ReceivedTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // Position: [ // Position // required
|
|
43
|
+
* // Number("double"),
|
|
44
|
+
* // ],
|
|
45
|
+
* // Accuracy: { // PositionalAccuracy
|
|
46
|
+
* // Horizontal: Number("double"), // required
|
|
47
|
+
* // },
|
|
48
|
+
* // PositionProperties: { // PropertyMap
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
38
53
|
* ```
|
|
39
54
|
*
|
|
40
55
|
* @param GetDevicePositionCommandInput - {@link GetDevicePositionCommandInput}
|
|
@@ -59,6 +74,8 @@ export interface GetDevicePositionCommandOutput extends GetDevicePositionRespons
|
|
|
59
74
|
* @throws {@link ValidationException} (client fault)
|
|
60
75
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
61
76
|
*
|
|
77
|
+
* @throws {@link LocationServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
62
79
|
*
|
|
63
80
|
*/
|
|
64
81
|
export declare class GetDevicePositionCommand extends $Command<GetDevicePositionCommandInput, GetDevicePositionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -40,6 +40,26 @@ export interface GetDevicePositionHistoryCommandOutput extends GetDevicePosition
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new GetDevicePositionHistoryCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // GetDevicePositionHistoryResponse
|
|
44
|
+
* // DevicePositions: [ // DevicePositionList // required
|
|
45
|
+
* // { // DevicePosition
|
|
46
|
+
* // DeviceId: "STRING_VALUE",
|
|
47
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // ReceivedTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // Position: [ // Position // required
|
|
50
|
+
* // Number("double"),
|
|
51
|
+
* // ],
|
|
52
|
+
* // Accuracy: { // PositionalAccuracy
|
|
53
|
+
* // Horizontal: Number("double"), // required
|
|
54
|
+
* // },
|
|
55
|
+
* // PositionProperties: { // PropertyMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
43
63
|
* ```
|
|
44
64
|
*
|
|
45
65
|
* @param GetDevicePositionHistoryCommandInput - {@link GetDevicePositionHistoryCommandInput}
|
|
@@ -64,6 +84,8 @@ export interface GetDevicePositionHistoryCommandOutput extends GetDevicePosition
|
|
|
64
84
|
* @throws {@link ValidationException} (client fault)
|
|
65
85
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
66
86
|
*
|
|
87
|
+
* @throws {@link LocationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
67
89
|
*
|
|
68
90
|
*/
|
|
69
91
|
export declare class GetDevicePositionHistoryCommand extends $Command<GetDevicePositionHistoryCommandInput, GetDevicePositionHistoryCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,28 @@ export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetGeofenceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetGeofenceResponse
|
|
36
|
+
* // GeofenceId: "STRING_VALUE", // required
|
|
37
|
+
* // Geometry: { // GeofenceGeometry
|
|
38
|
+
* // Polygon: [ // LinearRings
|
|
39
|
+
* // [ // LinearRing
|
|
40
|
+
* // [ // Position
|
|
41
|
+
* // Number("double"),
|
|
42
|
+
* // ],
|
|
43
|
+
* // ],
|
|
44
|
+
* // ],
|
|
45
|
+
* // Circle: { // Circle
|
|
46
|
+
* // Center: [ // required
|
|
47
|
+
* // Number("double"),
|
|
48
|
+
* // ],
|
|
49
|
+
* // Radius: Number("double"), // required
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // Status: "STRING_VALUE", // required
|
|
53
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
35
57
|
* ```
|
|
36
58
|
*
|
|
37
59
|
* @param GetGeofenceCommandInput - {@link GetGeofenceCommandInput}
|
|
@@ -56,6 +78,8 @@ export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __Metadat
|
|
|
56
78
|
* @throws {@link ValidationException} (client fault)
|
|
57
79
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
58
80
|
*
|
|
81
|
+
* @throws {@link LocationServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
59
83
|
*
|
|
60
84
|
*/
|
|
61
85
|
export declare class GetGeofenceCommand extends $Command<GetGeofenceCommandInput, GetGeofenceCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -34,6 +34,12 @@ export interface GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetMapGlyphsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetMapGlyphsResponse
|
|
38
|
+
* // Blob: "BLOB_VALUE",
|
|
39
|
+
* // ContentType: "STRING_VALUE",
|
|
40
|
+
* // CacheControl: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
37
43
|
* ```
|
|
38
44
|
*
|
|
39
45
|
* @param GetMapGlyphsCommandInput - {@link GetMapGlyphsCommandInput}
|
|
@@ -58,6 +64,8 @@ export interface GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __Metad
|
|
|
58
64
|
* @throws {@link ValidationException} (client fault)
|
|
59
65
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
60
66
|
*
|
|
67
|
+
* @throws {@link LocationServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
61
69
|
*
|
|
62
70
|
*/
|
|
63
71
|
export declare class GetMapGlyphsCommand extends $Command<GetMapGlyphsCommandInput, GetMapGlyphsCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -35,6 +35,12 @@ export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetMapSpritesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetMapSpritesResponse
|
|
39
|
+
* // Blob: "BLOB_VALUE",
|
|
40
|
+
* // ContentType: "STRING_VALUE",
|
|
41
|
+
* // CacheControl: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
38
44
|
* ```
|
|
39
45
|
*
|
|
40
46
|
* @param GetMapSpritesCommandInput - {@link GetMapSpritesCommandInput}
|
|
@@ -59,6 +65,8 @@ export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __Met
|
|
|
59
65
|
* @throws {@link ValidationException} (client fault)
|
|
60
66
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
61
67
|
*
|
|
68
|
+
* @throws {@link LocationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
62
70
|
*
|
|
63
71
|
*/
|
|
64
72
|
export declare class GetMapSpritesCommand extends $Command<GetMapSpritesCommandInput, GetMapSpritesCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -35,6 +35,12 @@ export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescripto
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetMapStyleDescriptorCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetMapStyleDescriptorResponse
|
|
39
|
+
* // Blob: "BLOB_VALUE",
|
|
40
|
+
* // ContentType: "STRING_VALUE",
|
|
41
|
+
* // CacheControl: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
38
44
|
* ```
|
|
39
45
|
*
|
|
40
46
|
* @param GetMapStyleDescriptorCommandInput - {@link GetMapStyleDescriptorCommandInput}
|
|
@@ -59,6 +65,8 @@ export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescripto
|
|
|
59
65
|
* @throws {@link ValidationException} (client fault)
|
|
60
66
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
61
67
|
*
|
|
68
|
+
* @throws {@link LocationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
62
70
|
*
|
|
63
71
|
*/
|
|
64
72
|
export declare class GetMapStyleDescriptorCommand extends $Command<GetMapStyleDescriptorCommandInput, GetMapStyleDescriptorCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -40,6 +40,12 @@ export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataB
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new GetMapTileCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // GetMapTileResponse
|
|
44
|
+
* // Blob: "BLOB_VALUE",
|
|
45
|
+
* // ContentType: "STRING_VALUE",
|
|
46
|
+
* // CacheControl: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
43
49
|
* ```
|
|
44
50
|
*
|
|
45
51
|
* @param GetMapTileCommandInput - {@link GetMapTileCommandInput}
|
|
@@ -64,6 +70,8 @@ export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataB
|
|
|
64
70
|
* @throws {@link ValidationException} (client fault)
|
|
65
71
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
66
72
|
*
|
|
73
|
+
* @throws {@link LocationServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
67
75
|
*
|
|
68
76
|
*/
|
|
69
77
|
export declare class GetMapTileCommand extends $Command<GetMapTileCommandInput, GetMapTileCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -49,6 +49,32 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new GetPlaceCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // GetPlaceResponse
|
|
53
|
+
* // Place: { // Place
|
|
54
|
+
* // Label: "STRING_VALUE",
|
|
55
|
+
* // Geometry: { // PlaceGeometry
|
|
56
|
+
* // Point: [ // Position
|
|
57
|
+
* // Number("double"),
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // AddressNumber: "STRING_VALUE",
|
|
61
|
+
* // Street: "STRING_VALUE",
|
|
62
|
+
* // Neighborhood: "STRING_VALUE",
|
|
63
|
+
* // Municipality: "STRING_VALUE",
|
|
64
|
+
* // SubRegion: "STRING_VALUE",
|
|
65
|
+
* // Region: "STRING_VALUE",
|
|
66
|
+
* // Country: "STRING_VALUE",
|
|
67
|
+
* // PostalCode: "STRING_VALUE",
|
|
68
|
+
* // Interpolated: true || false,
|
|
69
|
+
* // TimeZone: { // TimeZone
|
|
70
|
+
* // Name: "STRING_VALUE", // required
|
|
71
|
+
* // Offset: Number("int"),
|
|
72
|
+
* // },
|
|
73
|
+
* // UnitType: "STRING_VALUE",
|
|
74
|
+
* // UnitNumber: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
52
78
|
* ```
|
|
53
79
|
*
|
|
54
80
|
* @param GetPlaceCommandInput - {@link GetPlaceCommandInput}
|
|
@@ -73,6 +99,8 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare
|
|
|
73
99
|
* @throws {@link ValidationException} (client fault)
|
|
74
100
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
75
101
|
*
|
|
102
|
+
* @throws {@link LocationServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
76
104
|
*
|
|
77
105
|
*/
|
|
78
106
|
export declare class GetPlaceCommand extends $Command<GetPlaceCommandInput, GetPlaceCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface ListDevicePositionsCommandOutput extends ListDevicePositionsRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDevicePositionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDevicePositionsResponse
|
|
37
|
+
* // Entries: [ // ListDevicePositionsResponseEntryList // required
|
|
38
|
+
* // { // ListDevicePositionsResponseEntry
|
|
39
|
+
* // DeviceId: "STRING_VALUE", // required
|
|
40
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // Position: [ // Position // required
|
|
42
|
+
* // Number("double"),
|
|
43
|
+
* // ],
|
|
44
|
+
* // Accuracy: { // PositionalAccuracy
|
|
45
|
+
* // Horizontal: Number("double"), // required
|
|
46
|
+
* // },
|
|
47
|
+
* // PositionProperties: { // PropertyMap
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // NextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param ListDevicePositionsCommandInput - {@link ListDevicePositionsCommandInput}
|
|
@@ -54,6 +73,8 @@ export interface ListDevicePositionsCommandOutput extends ListDevicePositionsRes
|
|
|
54
73
|
* @throws {@link ValidationException} (client fault)
|
|
55
74
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
56
75
|
*
|
|
76
|
+
* @throws {@link LocationServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
57
78
|
*
|
|
58
79
|
*/
|
|
59
80
|
export declare class ListDevicePositionsCommand extends $Command<ListDevicePositionsCommandInput, ListDevicePositionsCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollec
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListGeofenceCollectionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListGeofenceCollectionsResponse
|
|
36
|
+
* // Entries: [ // ListGeofenceCollectionsResponseEntryList // required
|
|
37
|
+
* // { // ListGeofenceCollectionsResponseEntry
|
|
38
|
+
* // CollectionName: "STRING_VALUE", // required
|
|
39
|
+
* // Description: "STRING_VALUE", // required
|
|
40
|
+
* // PricingPlan: "STRING_VALUE",
|
|
41
|
+
* // PricingPlanDataSource: "STRING_VALUE",
|
|
42
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListGeofenceCollectionsCommandInput - {@link ListGeofenceCollectionsCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollec
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link LocationServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListGeofenceCollectionsCommand extends $Command<ListGeofenceCollectionsCommandInput, ListGeofenceCollectionsCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -33,6 +33,33 @@ export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListGeofencesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListGeofencesResponse
|
|
37
|
+
* // Entries: [ // ListGeofenceResponseEntryList // required
|
|
38
|
+
* // { // ListGeofenceResponseEntry
|
|
39
|
+
* // GeofenceId: "STRING_VALUE", // required
|
|
40
|
+
* // Geometry: { // GeofenceGeometry
|
|
41
|
+
* // Polygon: [ // LinearRings
|
|
42
|
+
* // [ // LinearRing
|
|
43
|
+
* // [ // Position
|
|
44
|
+
* // Number("double"),
|
|
45
|
+
* // ],
|
|
46
|
+
* // ],
|
|
47
|
+
* // ],
|
|
48
|
+
* // Circle: { // Circle
|
|
49
|
+
* // Center: [ // required
|
|
50
|
+
* // Number("double"),
|
|
51
|
+
* // ],
|
|
52
|
+
* // Radius: Number("double"), // required
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // Status: "STRING_VALUE", // required
|
|
56
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
36
63
|
* ```
|
|
37
64
|
*
|
|
38
65
|
* @param ListGeofencesCommandInput - {@link ListGeofencesCommandInput}
|
|
@@ -57,6 +84,8 @@ export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __Met
|
|
|
57
84
|
* @throws {@link ValidationException} (client fault)
|
|
58
85
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
59
86
|
*
|
|
87
|
+
* @throws {@link LocationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
60
89
|
*
|
|
61
90
|
*/
|
|
62
91
|
export declare class ListGeofencesCommand extends $Command<ListGeofencesCommandInput, ListGeofencesCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -40,6 +40,30 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListKeysCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListKeysResponse
|
|
44
|
+
* // Entries: [ // ListKeysResponseEntryList // required
|
|
45
|
+
* // { // ListKeysResponseEntry
|
|
46
|
+
* // KeyName: "STRING_VALUE", // required
|
|
47
|
+
* // ExpireTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // Restrictions: { // ApiKeyRestrictions
|
|
50
|
+
* // AllowActions: [ // ApiKeyActionList // required
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // AllowResources: [ // GeoArnList // required
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // AllowReferers: [ // RefererPatternList
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
61
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
43
67
|
* ```
|
|
44
68
|
*
|
|
45
69
|
* @param ListKeysCommandInput - {@link ListKeysCommandInput}
|
|
@@ -61,6 +85,8 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare
|
|
|
61
85
|
* @throws {@link ValidationException} (client fault)
|
|
62
86
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
63
87
|
*
|
|
88
|
+
* @throws {@link LocationServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
64
90
|
*
|
|
65
91
|
*/
|
|
66
92
|
export declare class ListKeysCommand extends $Command<ListKeysCommandInput, ListKeysCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListMapsCommandOutput extends ListMapsResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListMapsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListMapsResponse
|
|
36
|
+
* // Entries: [ // ListMapsResponseEntryList // required
|
|
37
|
+
* // { // ListMapsResponseEntry
|
|
38
|
+
* // MapName: "STRING_VALUE", // required
|
|
39
|
+
* // Description: "STRING_VALUE", // required
|
|
40
|
+
* // DataSource: "STRING_VALUE", // required
|
|
41
|
+
* // PricingPlan: "STRING_VALUE",
|
|
42
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListMapsCommandInput - {@link ListMapsCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListMapsCommandOutput extends ListMapsResponse, __MetadataBeare
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link LocationServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListMapsCommand extends $Command<ListMapsCommandInput, ListMapsCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListPlaceIndexesCommandOutput extends ListPlaceIndexesResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListPlaceIndexesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListPlaceIndexesResponse
|
|
36
|
+
* // Entries: [ // ListPlaceIndexesResponseEntryList // required
|
|
37
|
+
* // { // ListPlaceIndexesResponseEntry
|
|
38
|
+
* // IndexName: "STRING_VALUE", // required
|
|
39
|
+
* // Description: "STRING_VALUE", // required
|
|
40
|
+
* // DataSource: "STRING_VALUE", // required
|
|
41
|
+
* // PricingPlan: "STRING_VALUE",
|
|
42
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListPlaceIndexesCommandInput - {@link ListPlaceIndexesCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListPlaceIndexesCommandOutput extends ListPlaceIndexesResponse,
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link LocationServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListPlaceIndexesCommand extends $Command<ListPlaceIndexesCommandInput, ListPlaceIndexesCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListRouteCalculatorsCommandOutput extends ListRouteCalculatorsR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListRouteCalculatorsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListRouteCalculatorsResponse
|
|
36
|
+
* // Entries: [ // ListRouteCalculatorsResponseEntryList // required
|
|
37
|
+
* // { // ListRouteCalculatorsResponseEntry
|
|
38
|
+
* // CalculatorName: "STRING_VALUE", // required
|
|
39
|
+
* // Description: "STRING_VALUE", // required
|
|
40
|
+
* // DataSource: "STRING_VALUE", // required
|
|
41
|
+
* // PricingPlan: "STRING_VALUE",
|
|
42
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListRouteCalculatorsCommandInput - {@link ListRouteCalculatorsCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListRouteCalculatorsCommandOutput extends ListRouteCalculatorsR
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link LocationServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListRouteCalculatorsCommand extends $Command<ListRouteCalculatorsCommandInput, ListRouteCalculatorsCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -55,6 +61,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
55
61
|
* @throws {@link ValidationException} (client fault)
|
|
56
62
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
63
|
*
|
|
64
|
+
* @throws {@link LocationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
66
|
*
|
|
59
67
|
*/
|
|
60
68
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LocationClientResolvedConfig> {
|