@aws-sdk/client-location 3.321.1 → 3.326.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 +16 -16
|
@@ -38,6 +38,8 @@ export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerC
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new AssociateTrackerConsumerCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param AssociateTrackerConsumerCommandInput - {@link AssociateTrackerConsumerCommandInput}
|
|
@@ -69,6 +71,8 @@ export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerC
|
|
|
69
71
|
* @throws {@link ValidationException} (client fault)
|
|
70
72
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
71
73
|
*
|
|
74
|
+
* @throws {@link LocationServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
72
76
|
*
|
|
73
77
|
*/
|
|
74
78
|
export declare class AssociateTrackerConsumerCommand extends $Command<AssociateTrackerConsumerCommandInput, AssociateTrackerConsumerCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -34,6 +34,18 @@ export interface BatchDeleteDevicePositionHistoryCommandOutput extends BatchDele
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new BatchDeleteDevicePositionHistoryCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // BatchDeleteDevicePositionHistoryResponse
|
|
38
|
+
* // Errors: [ // BatchDeleteDevicePositionHistoryErrorList // required
|
|
39
|
+
* // { // BatchDeleteDevicePositionHistoryError
|
|
40
|
+
* // DeviceId: "STRING_VALUE", // required
|
|
41
|
+
* // Error: { // BatchItemError
|
|
42
|
+
* // Code: "STRING_VALUE",
|
|
43
|
+
* // Message: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* @param BatchDeleteDevicePositionHistoryCommandInput - {@link BatchDeleteDevicePositionHistoryCommandInput}
|
|
@@ -58,6 +70,8 @@ export interface BatchDeleteDevicePositionHistoryCommandOutput extends BatchDele
|
|
|
58
70
|
* @throws {@link ValidationException} (client fault)
|
|
59
71
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
60
72
|
*
|
|
73
|
+
* @throws {@link LocationServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
61
75
|
*
|
|
62
76
|
*/
|
|
63
77
|
export declare class BatchDeleteDevicePositionHistoryCommand extends $Command<BatchDeleteDevicePositionHistoryCommandInput, BatchDeleteDevicePositionHistoryCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -37,6 +37,18 @@ export interface BatchDeleteGeofenceCommandOutput extends BatchDeleteGeofenceRes
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new BatchDeleteGeofenceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // BatchDeleteGeofenceResponse
|
|
41
|
+
* // Errors: [ // BatchDeleteGeofenceErrorList // required
|
|
42
|
+
* // { // BatchDeleteGeofenceError
|
|
43
|
+
* // GeofenceId: "STRING_VALUE", // required
|
|
44
|
+
* // Error: { // BatchItemError
|
|
45
|
+
* // Code: "STRING_VALUE",
|
|
46
|
+
* // Message: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
40
52
|
* ```
|
|
41
53
|
*
|
|
42
54
|
* @param BatchDeleteGeofenceCommandInput - {@link BatchDeleteGeofenceCommandInput}
|
|
@@ -61,6 +73,8 @@ export interface BatchDeleteGeofenceCommandOutput extends BatchDeleteGeofenceRes
|
|
|
61
73
|
* @throws {@link ValidationException} (client fault)
|
|
62
74
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
63
75
|
*
|
|
76
|
+
* @throws {@link LocationServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
64
78
|
*
|
|
65
79
|
*/
|
|
66
80
|
export declare class BatchDeleteGeofenceCommand extends $Command<BatchDeleteGeofenceCommandInput, BatchDeleteGeofenceCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -74,6 +74,19 @@ export interface BatchEvaluateGeofencesCommandOutput extends BatchEvaluateGeofen
|
|
|
74
74
|
* };
|
|
75
75
|
* const command = new BatchEvaluateGeofencesCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
77
|
+
* // { // BatchEvaluateGeofencesResponse
|
|
78
|
+
* // Errors: [ // BatchEvaluateGeofencesErrorList // required
|
|
79
|
+
* // { // BatchEvaluateGeofencesError
|
|
80
|
+
* // DeviceId: "STRING_VALUE", // required
|
|
81
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
82
|
+
* // Error: { // BatchItemError
|
|
83
|
+
* // Code: "STRING_VALUE",
|
|
84
|
+
* // Message: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // };
|
|
89
|
+
*
|
|
77
90
|
* ```
|
|
78
91
|
*
|
|
79
92
|
* @param BatchEvaluateGeofencesCommandInput - {@link BatchEvaluateGeofencesCommandInput}
|
|
@@ -98,6 +111,8 @@ export interface BatchEvaluateGeofencesCommandOutput extends BatchEvaluateGeofen
|
|
|
98
111
|
* @throws {@link ValidationException} (client fault)
|
|
99
112
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
100
113
|
*
|
|
114
|
+
* @throws {@link LocationServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
101
116
|
*
|
|
102
117
|
*/
|
|
103
118
|
export declare class BatchEvaluateGeofencesCommand extends $Command<BatchEvaluateGeofencesCommandInput, BatchEvaluateGeofencesCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -34,6 +34,34 @@ export interface BatchGetDevicePositionCommandOutput extends BatchGetDevicePosit
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new BatchGetDevicePositionCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // BatchGetDevicePositionResponse
|
|
38
|
+
* // Errors: [ // BatchGetDevicePositionErrorList // required
|
|
39
|
+
* // { // BatchGetDevicePositionError
|
|
40
|
+
* // DeviceId: "STRING_VALUE", // required
|
|
41
|
+
* // Error: { // BatchItemError
|
|
42
|
+
* // Code: "STRING_VALUE",
|
|
43
|
+
* // Message: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // DevicePositions: [ // DevicePositionList // required
|
|
48
|
+
* // { // DevicePosition
|
|
49
|
+
* // DeviceId: "STRING_VALUE",
|
|
50
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // ReceivedTime: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // Position: [ // Position // required
|
|
53
|
+
* // Number("double"),
|
|
54
|
+
* // ],
|
|
55
|
+
* // Accuracy: { // PositionalAccuracy
|
|
56
|
+
* // Horizontal: Number("double"), // required
|
|
57
|
+
* // },
|
|
58
|
+
* // PositionProperties: { // PropertyMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
37
65
|
* ```
|
|
38
66
|
*
|
|
39
67
|
* @param BatchGetDevicePositionCommandInput - {@link BatchGetDevicePositionCommandInput}
|
|
@@ -58,6 +86,8 @@ export interface BatchGetDevicePositionCommandOutput extends BatchGetDevicePosit
|
|
|
58
86
|
* @throws {@link ValidationException} (client fault)
|
|
59
87
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
60
88
|
*
|
|
89
|
+
* @throws {@link LocationServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
61
91
|
*
|
|
62
92
|
*/
|
|
63
93
|
export declare class BatchGetDevicePositionCommand extends $Command<BatchGetDevicePositionCommandInput, BatchGetDevicePositionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -52,6 +52,25 @@ export interface BatchPutGeofenceCommandOutput extends BatchPutGeofenceResponse,
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new BatchPutGeofenceCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // BatchPutGeofenceResponse
|
|
56
|
+
* // Successes: [ // BatchPutGeofenceSuccessList // required
|
|
57
|
+
* // { // BatchPutGeofenceSuccess
|
|
58
|
+
* // GeofenceId: "STRING_VALUE", // required
|
|
59
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // Errors: [ // BatchPutGeofenceErrorList // required
|
|
64
|
+
* // { // BatchPutGeofenceError
|
|
65
|
+
* // GeofenceId: "STRING_VALUE", // required
|
|
66
|
+
* // Error: { // BatchItemError
|
|
67
|
+
* // Code: "STRING_VALUE",
|
|
68
|
+
* // Message: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
55
74
|
* ```
|
|
56
75
|
*
|
|
57
76
|
* @param BatchPutGeofenceCommandInput - {@link BatchPutGeofenceCommandInput}
|
|
@@ -76,6 +95,8 @@ export interface BatchPutGeofenceCommandOutput extends BatchPutGeofenceResponse,
|
|
|
76
95
|
* @throws {@link ValidationException} (client fault)
|
|
77
96
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
78
97
|
*
|
|
98
|
+
* @throws {@link LocationServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
79
100
|
*
|
|
80
101
|
*/
|
|
81
102
|
export declare class BatchPutGeofenceCommand extends $Command<BatchPutGeofenceCommandInput, BatchPutGeofenceCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -64,6 +64,19 @@ export interface BatchUpdateDevicePositionCommandOutput extends BatchUpdateDevic
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new BatchUpdateDevicePositionCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // BatchUpdateDevicePositionResponse
|
|
68
|
+
* // Errors: [ // BatchUpdateDevicePositionErrorList // required
|
|
69
|
+
* // { // BatchUpdateDevicePositionError
|
|
70
|
+
* // DeviceId: "STRING_VALUE", // required
|
|
71
|
+
* // SampleTime: new Date("TIMESTAMP"), // required
|
|
72
|
+
* // Error: { // BatchItemError
|
|
73
|
+
* // Code: "STRING_VALUE",
|
|
74
|
+
* // Message: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
67
80
|
* ```
|
|
68
81
|
*
|
|
69
82
|
* @param BatchUpdateDevicePositionCommandInput - {@link BatchUpdateDevicePositionCommandInput}
|
|
@@ -88,6 +101,8 @@ export interface BatchUpdateDevicePositionCommandOutput extends BatchUpdateDevic
|
|
|
88
101
|
* @throws {@link ValidationException} (client fault)
|
|
89
102
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
90
103
|
*
|
|
104
|
+
* @throws {@link LocationServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
91
106
|
*
|
|
92
107
|
*/
|
|
93
108
|
export declare class BatchUpdateDevicePositionCommand extends $Command<BatchUpdateDevicePositionCommandInput, BatchUpdateDevicePositionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -98,6 +98,50 @@ export interface CalculateRouteCommandOutput extends CalculateRouteResponse, __M
|
|
|
98
98
|
* };
|
|
99
99
|
* const command = new CalculateRouteCommand(input);
|
|
100
100
|
* const response = await client.send(command);
|
|
101
|
+
* // { // CalculateRouteResponse
|
|
102
|
+
* // Legs: [ // LegList // required
|
|
103
|
+
* // { // Leg
|
|
104
|
+
* // StartPosition: [ // Position // required
|
|
105
|
+
* // Number("double"),
|
|
106
|
+
* // ],
|
|
107
|
+
* // EndPosition: [ // required
|
|
108
|
+
* // Number("double"),
|
|
109
|
+
* // ],
|
|
110
|
+
* // Distance: Number("double"), // required
|
|
111
|
+
* // DurationSeconds: Number("double"), // required
|
|
112
|
+
* // Geometry: { // LegGeometry
|
|
113
|
+
* // LineString: [ // LineString
|
|
114
|
+
* // [
|
|
115
|
+
* // Number("double"),
|
|
116
|
+
* // ],
|
|
117
|
+
* // ],
|
|
118
|
+
* // },
|
|
119
|
+
* // Steps: [ // StepList // required
|
|
120
|
+
* // { // Step
|
|
121
|
+
* // StartPosition: [ // required
|
|
122
|
+
* // Number("double"),
|
|
123
|
+
* // ],
|
|
124
|
+
* // EndPosition: [ // required
|
|
125
|
+
* // Number("double"),
|
|
126
|
+
* // ],
|
|
127
|
+
* // Distance: Number("double"), // required
|
|
128
|
+
* // DurationSeconds: Number("double"), // required
|
|
129
|
+
* // GeometryOffset: Number("int"),
|
|
130
|
+
* // },
|
|
131
|
+
* // ],
|
|
132
|
+
* // },
|
|
133
|
+
* // ],
|
|
134
|
+
* // Summary: { // CalculateRouteSummary
|
|
135
|
+
* // RouteBBox: [ // BoundingBox // required
|
|
136
|
+
* // Number("double"),
|
|
137
|
+
* // ],
|
|
138
|
+
* // DataSource: "STRING_VALUE", // required
|
|
139
|
+
* // Distance: Number("double"), // required
|
|
140
|
+
* // DurationSeconds: Number("double"), // required
|
|
141
|
+
* // DistanceUnit: "STRING_VALUE", // required
|
|
142
|
+
* // },
|
|
143
|
+
* // };
|
|
144
|
+
*
|
|
101
145
|
* ```
|
|
102
146
|
*
|
|
103
147
|
* @param CalculateRouteCommandInput - {@link CalculateRouteCommandInput}
|
|
@@ -122,6 +166,8 @@ export interface CalculateRouteCommandOutput extends CalculateRouteResponse, __M
|
|
|
122
166
|
* @throws {@link ValidationException} (client fault)
|
|
123
167
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
124
168
|
*
|
|
169
|
+
* @throws {@link LocationServiceException}
|
|
170
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
125
171
|
*
|
|
126
172
|
*/
|
|
127
173
|
export declare class CalculateRouteCommand extends $Command<CalculateRouteCommandInput, CalculateRouteCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -104,6 +104,37 @@ export interface CalculateRouteMatrixCommandOutput extends CalculateRouteMatrixR
|
|
|
104
104
|
* };
|
|
105
105
|
* const command = new CalculateRouteMatrixCommand(input);
|
|
106
106
|
* const response = await client.send(command);
|
|
107
|
+
* // { // CalculateRouteMatrixResponse
|
|
108
|
+
* // RouteMatrix: [ // RouteMatrix // required
|
|
109
|
+
* // [ // RouteMatrixRow
|
|
110
|
+
* // { // RouteMatrixEntry
|
|
111
|
+
* // Distance: Number("double"),
|
|
112
|
+
* // DurationSeconds: Number("double"),
|
|
113
|
+
* // Error: { // RouteMatrixEntryError
|
|
114
|
+
* // Code: "STRING_VALUE", // required
|
|
115
|
+
* // Message: "STRING_VALUE",
|
|
116
|
+
* // },
|
|
117
|
+
* // },
|
|
118
|
+
* // ],
|
|
119
|
+
* // ],
|
|
120
|
+
* // SnappedDeparturePositions: [ // PositionList
|
|
121
|
+
* // [ // Position
|
|
122
|
+
* // Number("double"),
|
|
123
|
+
* // ],
|
|
124
|
+
* // ],
|
|
125
|
+
* // SnappedDestinationPositions: [
|
|
126
|
+
* // [
|
|
127
|
+
* // Number("double"),
|
|
128
|
+
* // ],
|
|
129
|
+
* // ],
|
|
130
|
+
* // Summary: { // CalculateRouteMatrixSummary
|
|
131
|
+
* // DataSource: "STRING_VALUE", // required
|
|
132
|
+
* // RouteCount: Number("int"), // required
|
|
133
|
+
* // ErrorCount: Number("int"), // required
|
|
134
|
+
* // DistanceUnit: "STRING_VALUE", // required
|
|
135
|
+
* // },
|
|
136
|
+
* // };
|
|
137
|
+
*
|
|
107
138
|
* ```
|
|
108
139
|
*
|
|
109
140
|
* @param CalculateRouteMatrixCommandInput - {@link CalculateRouteMatrixCommandInput}
|
|
@@ -128,6 +159,8 @@ export interface CalculateRouteMatrixCommandOutput extends CalculateRouteMatrixR
|
|
|
128
159
|
* @throws {@link ValidationException} (client fault)
|
|
129
160
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
130
161
|
*
|
|
162
|
+
* @throws {@link LocationServiceException}
|
|
163
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
131
164
|
*
|
|
132
165
|
*/
|
|
133
166
|
export declare class CalculateRouteMatrixCommand extends $Command<CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -38,6 +38,12 @@ export interface CreateGeofenceCollectionCommandOutput extends CreateGeofenceCol
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateGeofenceCollectionCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateGeofenceCollectionResponse
|
|
42
|
+
* // CollectionName: "STRING_VALUE", // required
|
|
43
|
+
* // CollectionArn: "STRING_VALUE", // required
|
|
44
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
41
47
|
* ```
|
|
42
48
|
*
|
|
43
49
|
* @param CreateGeofenceCollectionCommandInput - {@link CreateGeofenceCollectionCommandInput}
|
|
@@ -66,6 +72,8 @@ export interface CreateGeofenceCollectionCommandOutput extends CreateGeofenceCol
|
|
|
66
72
|
* @throws {@link ValidationException} (client fault)
|
|
67
73
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
68
74
|
*
|
|
75
|
+
* @throws {@link LocationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
69
77
|
*
|
|
70
78
|
*/
|
|
71
79
|
export declare class CreateGeofenceCollectionCommand extends $Command<CreateGeofenceCollectionCommandInput, CreateGeofenceCollectionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -55,6 +55,13 @@ export interface CreateKeyCommandOutput extends CreateKeyResponse, __MetadataBea
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new CreateKeyCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateKeyResponse
|
|
59
|
+
* // Key: "STRING_VALUE", // required
|
|
60
|
+
* // KeyArn: "STRING_VALUE", // required
|
|
61
|
+
* // KeyName: "STRING_VALUE", // required
|
|
62
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
58
65
|
* ```
|
|
59
66
|
*
|
|
60
67
|
* @param CreateKeyCommandInput - {@link CreateKeyCommandInput}
|
|
@@ -83,6 +90,8 @@ export interface CreateKeyCommandOutput extends CreateKeyResponse, __MetadataBea
|
|
|
83
90
|
* @throws {@link ValidationException} (client fault)
|
|
84
91
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
85
92
|
*
|
|
93
|
+
* @throws {@link LocationServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
86
95
|
*
|
|
87
96
|
*/
|
|
88
97
|
export declare class CreateKeyCommand extends $Command<CreateKeyCommandInput, CreateKeyCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -46,6 +46,12 @@ export interface CreateMapCommandOutput extends CreateMapResponse, __MetadataBea
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateMapCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateMapResponse
|
|
50
|
+
* // MapName: "STRING_VALUE", // required
|
|
51
|
+
* // MapArn: "STRING_VALUE", // required
|
|
52
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
49
55
|
* ```
|
|
50
56
|
*
|
|
51
57
|
* @param CreateMapCommandInput - {@link CreateMapCommandInput}
|
|
@@ -74,6 +80,8 @@ export interface CreateMapCommandOutput extends CreateMapResponse, __MetadataBea
|
|
|
74
80
|
* @throws {@link ValidationException} (client fault)
|
|
75
81
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
76
82
|
*
|
|
83
|
+
* @throws {@link LocationServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
77
85
|
*
|
|
78
86
|
*/
|
|
79
87
|
export declare class CreateMapCommand extends $Command<CreateMapCommandInput, CreateMapCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -50,6 +50,12 @@ export interface CreatePlaceIndexCommandOutput extends CreatePlaceIndexResponse,
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreatePlaceIndexCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // CreatePlaceIndexResponse
|
|
54
|
+
* // IndexName: "STRING_VALUE", // required
|
|
55
|
+
* // IndexArn: "STRING_VALUE", // required
|
|
56
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
53
59
|
* ```
|
|
54
60
|
*
|
|
55
61
|
* @param CreatePlaceIndexCommandInput - {@link CreatePlaceIndexCommandInput}
|
|
@@ -78,6 +84,8 @@ export interface CreatePlaceIndexCommandOutput extends CreatePlaceIndexResponse,
|
|
|
78
84
|
* @throws {@link ValidationException} (client fault)
|
|
79
85
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
80
86
|
*
|
|
87
|
+
* @throws {@link LocationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
81
89
|
*
|
|
82
90
|
*/
|
|
83
91
|
export declare class CreatePlaceIndexCommand extends $Command<CreatePlaceIndexCommandInput, CreatePlaceIndexCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -46,6 +46,12 @@ export interface CreateRouteCalculatorCommandOutput extends CreateRouteCalculato
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateRouteCalculatorCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateRouteCalculatorResponse
|
|
50
|
+
* // CalculatorName: "STRING_VALUE", // required
|
|
51
|
+
* // CalculatorArn: "STRING_VALUE", // required
|
|
52
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
49
55
|
* ```
|
|
50
56
|
*
|
|
51
57
|
* @param CreateRouteCalculatorCommandInput - {@link CreateRouteCalculatorCommandInput}
|
|
@@ -74,6 +80,8 @@ export interface CreateRouteCalculatorCommandOutput extends CreateRouteCalculato
|
|
|
74
80
|
* @throws {@link ValidationException} (client fault)
|
|
75
81
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
76
82
|
*
|
|
83
|
+
* @throws {@link LocationServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
77
85
|
*
|
|
78
86
|
*/
|
|
79
87
|
export declare class CreateRouteCalculatorCommand extends $Command<CreateRouteCalculatorCommandInput, CreateRouteCalculatorCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -40,6 +40,12 @@ export interface CreateTrackerCommandOutput extends CreateTrackerResponse, __Met
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateTrackerCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateTrackerResponse
|
|
44
|
+
* // TrackerName: "STRING_VALUE", // required
|
|
45
|
+
* // TrackerArn: "STRING_VALUE", // required
|
|
46
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
43
49
|
* ```
|
|
44
50
|
*
|
|
45
51
|
* @param CreateTrackerCommandInput - {@link CreateTrackerCommandInput}
|
|
@@ -64,6 +70,8 @@ export interface CreateTrackerCommandOutput extends CreateTrackerResponse, __Met
|
|
|
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 CreateTrackerCommand extends $Command<CreateTrackerCommandInput, CreateTrackerCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteGeofenceCollectionCommandOutput extends DeleteGeofenceCol
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteGeofenceCollectionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteGeofenceCollectionCommandInput - {@link DeleteGeofenceCollectionCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteGeofenceCollectionCommandOutput extends DeleteGeofenceCol
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link LocationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteGeofenceCollectionCommand extends $Command<DeleteGeofenceCollectionCommandInput, DeleteGeofenceCollectionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteKeyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteKeyCommandInput - {@link DeleteKeyCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBea
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link LocationServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteKeyCommand extends $Command<DeleteKeyCommandInput, DeleteKeyCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteMapCommandOutput extends DeleteMapResponse, __MetadataBea
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteMapCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteMapCommandInput - {@link DeleteMapCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteMapCommandOutput extends DeleteMapResponse, __MetadataBea
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link LocationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteMapCommand extends $Command<DeleteMapCommandInput, DeleteMapCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeletePlaceIndexCommandOutput extends DeletePlaceIndexResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeletePlaceIndexCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeletePlaceIndexCommandInput - {@link DeletePlaceIndexCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeletePlaceIndexCommandOutput extends DeletePlaceIndexResponse,
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link LocationServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeletePlaceIndexCommand extends $Command<DeletePlaceIndexCommandInput, DeletePlaceIndexCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteRouteCalculatorCommandOutput extends DeleteRouteCalculato
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteRouteCalculatorCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteRouteCalculatorCommandInput - {@link DeleteRouteCalculatorCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteRouteCalculatorCommandOutput extends DeleteRouteCalculato
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link LocationServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteRouteCalculatorCommand extends $Command<DeleteRouteCalculatorCommandInput, DeleteRouteCalculatorCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface DeleteTrackerCommandOutput extends DeleteTrackerResponse, __Met
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteTrackerCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param DeleteTrackerCommandInput - {@link DeleteTrackerCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteTrackerCommandOutput extends DeleteTrackerResponse, __Met
|
|
|
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 DeleteTrackerCommand extends $Command<DeleteTrackerCommandInput, DeleteTrackerCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -31,6 +31,20 @@ export interface DescribeGeofenceCollectionCommandOutput extends DescribeGeofenc
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeGeofenceCollectionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeGeofenceCollectionResponse
|
|
35
|
+
* // CollectionName: "STRING_VALUE", // required
|
|
36
|
+
* // CollectionArn: "STRING_VALUE", // required
|
|
37
|
+
* // Description: "STRING_VALUE", // required
|
|
38
|
+
* // PricingPlan: "STRING_VALUE",
|
|
39
|
+
* // PricingPlanDataSource: "STRING_VALUE",
|
|
40
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
41
|
+
* // Tags: { // TagMap
|
|
42
|
+
* // "<keys>": "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
34
48
|
* ```
|
|
35
49
|
*
|
|
36
50
|
* @param DescribeGeofenceCollectionCommandInput - {@link DescribeGeofenceCollectionCommandInput}
|
|
@@ -55,6 +69,8 @@ export interface DescribeGeofenceCollectionCommandOutput extends DescribeGeofenc
|
|
|
55
69
|
* @throws {@link ValidationException} (client fault)
|
|
56
70
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
57
71
|
*
|
|
72
|
+
* @throws {@link LocationServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
58
74
|
*
|
|
59
75
|
*/
|
|
60
76
|
export declare class DescribeGeofenceCollectionCommand extends $Command<DescribeGeofenceCollectionCommandInput, DescribeGeofenceCollectionCommandOutput, LocationClientResolvedConfig> {
|
|
@@ -36,6 +36,30 @@ export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __Metadat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeKeyCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DescribeKeyResponse
|
|
40
|
+
* // Key: "STRING_VALUE", // required
|
|
41
|
+
* // KeyArn: "STRING_VALUE", // required
|
|
42
|
+
* // KeyName: "STRING_VALUE", // required
|
|
43
|
+
* // Restrictions: { // ApiKeyRestrictions
|
|
44
|
+
* // AllowActions: [ // ApiKeyActionList // required
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // AllowResources: [ // GeoArnList // required
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // AllowReferers: [ // RefererPatternList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // ExpireTime: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // UpdateTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // Description: "STRING_VALUE",
|
|
58
|
+
* // Tags: { // TagMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
39
63
|
* ```
|
|
40
64
|
*
|
|
41
65
|
* @param DescribeKeyCommandInput - {@link DescribeKeyCommandInput}
|
|
@@ -60,6 +84,8 @@ export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __Metadat
|
|
|
60
84
|
* @throws {@link ValidationException} (client fault)
|
|
61
85
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
62
86
|
*
|
|
87
|
+
* @throws {@link LocationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Location service.</p>
|
|
63
89
|
*
|
|
64
90
|
*/
|
|
65
91
|
export declare class DescribeKeyCommand extends $Command<DescribeKeyCommandInput, DescribeKeyCommandOutput, LocationClientResolvedConfig> {
|