@aws-sdk/client-location 3.325.0 → 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.
Files changed (59) hide show
  1. package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +4 -0
  2. package/dist-types/commands/BatchDeleteDevicePositionHistoryCommand.d.ts +14 -0
  3. package/dist-types/commands/BatchDeleteGeofenceCommand.d.ts +14 -0
  4. package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +15 -0
  5. package/dist-types/commands/BatchGetDevicePositionCommand.d.ts +30 -0
  6. package/dist-types/commands/BatchPutGeofenceCommand.d.ts +21 -0
  7. package/dist-types/commands/BatchUpdateDevicePositionCommand.d.ts +15 -0
  8. package/dist-types/commands/CalculateRouteCommand.d.ts +46 -0
  9. package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +33 -0
  10. package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +8 -0
  11. package/dist-types/commands/CreateKeyCommand.d.ts +9 -0
  12. package/dist-types/commands/CreateMapCommand.d.ts +8 -0
  13. package/dist-types/commands/CreatePlaceIndexCommand.d.ts +8 -0
  14. package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +8 -0
  15. package/dist-types/commands/CreateTrackerCommand.d.ts +8 -0
  16. package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteKeyCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteMapCommand.d.ts +4 -0
  19. package/dist-types/commands/DeletePlaceIndexCommand.d.ts +4 -0
  20. package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +4 -0
  21. package/dist-types/commands/DeleteTrackerCommand.d.ts +4 -0
  22. package/dist-types/commands/DescribeGeofenceCollectionCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeKeyCommand.d.ts +26 -0
  24. package/dist-types/commands/DescribeMapCommand.d.ts +18 -0
  25. package/dist-types/commands/DescribePlaceIndexCommand.d.ts +18 -0
  26. package/dist-types/commands/DescribeRouteCalculatorCommand.d.ts +15 -0
  27. package/dist-types/commands/DescribeTrackerCommand.d.ts +17 -0
  28. package/dist-types/commands/DisassociateTrackerConsumerCommand.d.ts +4 -0
  29. package/dist-types/commands/GetDevicePositionCommand.d.ts +17 -0
  30. package/dist-types/commands/GetDevicePositionHistoryCommand.d.ts +22 -0
  31. package/dist-types/commands/GetGeofenceCommand.d.ts +24 -0
  32. package/dist-types/commands/GetMapGlyphsCommand.d.ts +8 -0
  33. package/dist-types/commands/GetMapSpritesCommand.d.ts +8 -0
  34. package/dist-types/commands/GetMapStyleDescriptorCommand.d.ts +8 -0
  35. package/dist-types/commands/GetMapTileCommand.d.ts +8 -0
  36. package/dist-types/commands/GetPlaceCommand.d.ts +28 -0
  37. package/dist-types/commands/ListDevicePositionsCommand.d.ts +21 -0
  38. package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +16 -0
  39. package/dist-types/commands/ListGeofencesCommand.d.ts +29 -0
  40. package/dist-types/commands/ListKeysCommand.d.ts +26 -0
  41. package/dist-types/commands/ListMapsCommand.d.ts +16 -0
  42. package/dist-types/commands/ListPlaceIndexesCommand.d.ts +16 -0
  43. package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +16 -0
  44. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  45. package/dist-types/commands/ListTrackerConsumersCommand.d.ts +9 -0
  46. package/dist-types/commands/ListTrackersCommand.d.ts +16 -0
  47. package/dist-types/commands/PutGeofenceCommand.d.ts +8 -0
  48. package/dist-types/commands/SearchPlaceIndexForPositionCommand.d.ts +42 -0
  49. package/dist-types/commands/SearchPlaceIndexForSuggestionsCommand.d.ts +26 -0
  50. package/dist-types/commands/SearchPlaceIndexForTextCommand.d.ts +53 -0
  51. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  52. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  53. package/dist-types/commands/UpdateGeofenceCollectionCommand.d.ts +8 -0
  54. package/dist-types/commands/UpdateKeyCommand.d.ts +8 -0
  55. package/dist-types/commands/UpdateMapCommand.d.ts +8 -0
  56. package/dist-types/commands/UpdatePlaceIndexCommand.d.ts +8 -0
  57. package/dist-types/commands/UpdateRouteCalculatorCommand.d.ts +8 -0
  58. package/dist-types/commands/UpdateTrackerCommand.d.ts +8 -0
  59. package/package.json +3 -3
@@ -33,6 +33,13 @@ export interface ListTrackerConsumersCommandOutput extends ListTrackerConsumersR
33
33
  * };
34
34
  * const command = new ListTrackerConsumersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTrackerConsumersResponse
37
+ * // ConsumerArns: [ // ArnList // required
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // NextToken: "STRING_VALUE",
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param ListTrackerConsumersCommandInput - {@link ListTrackerConsumersCommandInput}
@@ -57,6 +64,8 @@ export interface ListTrackerConsumersCommandOutput extends ListTrackerConsumersR
57
64
  * @throws {@link ValidationException} (client fault)
58
65
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
59
66
  *
67
+ * @throws {@link LocationServiceException}
68
+ * <p>Base exception class for all service exceptions from Location service.</p>
60
69
  *
61
70
  */
62
71
  export declare class ListTrackerConsumersCommand extends $Command<ListTrackerConsumersCommandInput, ListTrackerConsumersCommandOutput, LocationClientResolvedConfig> {
@@ -32,6 +32,20 @@ export interface ListTrackersCommandOutput extends ListTrackersResponse, __Metad
32
32
  * };
33
33
  * const command = new ListTrackersCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListTrackersResponse
36
+ * // Entries: [ // ListTrackersResponseEntryList // required
37
+ * // { // ListTrackersResponseEntry
38
+ * // TrackerName: "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 ListTrackersCommandInput - {@link ListTrackersCommandInput}
@@ -53,6 +67,8 @@ export interface ListTrackersCommandOutput extends ListTrackersResponse, __Metad
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 ListTrackersCommand extends $Command<ListTrackersCommandInput, ListTrackersCommandOutput, LocationClientResolvedConfig> {
@@ -48,6 +48,12 @@ export interface PutGeofenceCommandOutput extends PutGeofenceResponse, __Metadat
48
48
  * };
49
49
  * const command = new PutGeofenceCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // PutGeofenceResponse
52
+ * // GeofenceId: "STRING_VALUE", // required
53
+ * // CreateTime: new Date("TIMESTAMP"), // required
54
+ * // UpdateTime: new Date("TIMESTAMP"), // required
55
+ * // };
56
+ *
51
57
  * ```
52
58
  *
53
59
  * @param PutGeofenceCommandInput - {@link PutGeofenceCommandInput}
@@ -75,6 +81,8 @@ export interface PutGeofenceCommandOutput extends PutGeofenceResponse, __Metadat
75
81
  * @throws {@link ValidationException} (client fault)
76
82
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
77
83
  *
84
+ * @throws {@link LocationServiceException}
85
+ * <p>Base exception class for all service exceptions from Location service.</p>
78
86
  *
79
87
  */
80
88
  export declare class PutGeofenceCommand extends $Command<PutGeofenceCommandInput, PutGeofenceCommandOutput, LocationClientResolvedConfig> {
@@ -37,6 +37,46 @@ export interface SearchPlaceIndexForPositionCommandOutput extends SearchPlaceInd
37
37
  * };
38
38
  * const command = new SearchPlaceIndexForPositionCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // SearchPlaceIndexForPositionResponse
41
+ * // Summary: { // SearchPlaceIndexForPositionSummary
42
+ * // Position: [ // Position // required
43
+ * // Number("double"),
44
+ * // ],
45
+ * // MaxResults: Number("int"),
46
+ * // DataSource: "STRING_VALUE", // required
47
+ * // Language: "STRING_VALUE",
48
+ * // },
49
+ * // Results: [ // SearchForPositionResultList // required
50
+ * // { // SearchForPositionResult
51
+ * // Place: { // Place
52
+ * // Label: "STRING_VALUE",
53
+ * // Geometry: { // PlaceGeometry
54
+ * // Point: [
55
+ * // Number("double"),
56
+ * // ],
57
+ * // },
58
+ * // AddressNumber: "STRING_VALUE",
59
+ * // Street: "STRING_VALUE",
60
+ * // Neighborhood: "STRING_VALUE",
61
+ * // Municipality: "STRING_VALUE",
62
+ * // SubRegion: "STRING_VALUE",
63
+ * // Region: "STRING_VALUE",
64
+ * // Country: "STRING_VALUE",
65
+ * // PostalCode: "STRING_VALUE",
66
+ * // Interpolated: true || false,
67
+ * // TimeZone: { // TimeZone
68
+ * // Name: "STRING_VALUE", // required
69
+ * // Offset: Number("int"),
70
+ * // },
71
+ * // UnitType: "STRING_VALUE",
72
+ * // UnitNumber: "STRING_VALUE",
73
+ * // },
74
+ * // Distance: Number("double"), // required
75
+ * // PlaceId: "STRING_VALUE",
76
+ * // },
77
+ * // ],
78
+ * // };
79
+ *
40
80
  * ```
41
81
  *
42
82
  * @param SearchPlaceIndexForPositionCommandInput - {@link SearchPlaceIndexForPositionCommandInput}
@@ -61,6 +101,8 @@ export interface SearchPlaceIndexForPositionCommandOutput extends SearchPlaceInd
61
101
  * @throws {@link ValidationException} (client fault)
62
102
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
63
103
  *
104
+ * @throws {@link LocationServiceException}
105
+ * <p>Base exception class for all service exceptions from Location service.</p>
64
106
  *
65
107
  */
66
108
  export declare class SearchPlaceIndexForPositionCommand extends $Command<SearchPlaceIndexForPositionCommandInput, SearchPlaceIndexForPositionCommandOutput, LocationClientResolvedConfig> {
@@ -54,6 +54,30 @@ export interface SearchPlaceIndexForSuggestionsCommandOutput extends SearchPlace
54
54
  * };
55
55
  * const command = new SearchPlaceIndexForSuggestionsCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // SearchPlaceIndexForSuggestionsResponse
58
+ * // Summary: { // SearchPlaceIndexForSuggestionsSummary
59
+ * // Text: "STRING_VALUE", // required
60
+ * // BiasPosition: [ // Position
61
+ * // Number("double"),
62
+ * // ],
63
+ * // FilterBBox: [ // BoundingBox
64
+ * // Number("double"),
65
+ * // ],
66
+ * // FilterCountries: [ // CountryCodeList
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // MaxResults: Number("int"),
70
+ * // DataSource: "STRING_VALUE", // required
71
+ * // Language: "STRING_VALUE",
72
+ * // },
73
+ * // Results: [ // SearchForSuggestionsResultList // required
74
+ * // { // SearchForSuggestionsResult
75
+ * // Text: "STRING_VALUE", // required
76
+ * // PlaceId: "STRING_VALUE",
77
+ * // },
78
+ * // ],
79
+ * // };
80
+ *
57
81
  * ```
58
82
  *
59
83
  * @param SearchPlaceIndexForSuggestionsCommandInput - {@link SearchPlaceIndexForSuggestionsCommandInput}
@@ -78,6 +102,8 @@ export interface SearchPlaceIndexForSuggestionsCommandOutput extends SearchPlace
78
102
  * @throws {@link ValidationException} (client fault)
79
103
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
80
104
  *
105
+ * @throws {@link LocationServiceException}
106
+ * <p>Base exception class for all service exceptions from Location service.</p>
81
107
  *
82
108
  */
83
109
  export declare class SearchPlaceIndexForSuggestionsCommand extends $Command<SearchPlaceIndexForSuggestionsCommandInput, SearchPlaceIndexForSuggestionsCommandOutput, LocationClientResolvedConfig> {
@@ -52,6 +52,57 @@ export interface SearchPlaceIndexForTextCommandOutput extends SearchPlaceIndexFo
52
52
  * };
53
53
  * const command = new SearchPlaceIndexForTextCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // SearchPlaceIndexForTextResponse
56
+ * // Summary: { // SearchPlaceIndexForTextSummary
57
+ * // Text: "STRING_VALUE", // required
58
+ * // BiasPosition: [ // Position
59
+ * // Number("double"),
60
+ * // ],
61
+ * // FilterBBox: [ // BoundingBox
62
+ * // Number("double"),
63
+ * // ],
64
+ * // FilterCountries: [ // CountryCodeList
65
+ * // "STRING_VALUE",
66
+ * // ],
67
+ * // MaxResults: Number("int"),
68
+ * // ResultBBox: [
69
+ * // Number("double"),
70
+ * // ],
71
+ * // DataSource: "STRING_VALUE", // required
72
+ * // Language: "STRING_VALUE",
73
+ * // },
74
+ * // Results: [ // SearchForTextResultList // required
75
+ * // { // SearchForTextResult
76
+ * // Place: { // Place
77
+ * // Label: "STRING_VALUE",
78
+ * // Geometry: { // PlaceGeometry
79
+ * // Point: [
80
+ * // Number("double"),
81
+ * // ],
82
+ * // },
83
+ * // AddressNumber: "STRING_VALUE",
84
+ * // Street: "STRING_VALUE",
85
+ * // Neighborhood: "STRING_VALUE",
86
+ * // Municipality: "STRING_VALUE",
87
+ * // SubRegion: "STRING_VALUE",
88
+ * // Region: "STRING_VALUE",
89
+ * // Country: "STRING_VALUE",
90
+ * // PostalCode: "STRING_VALUE",
91
+ * // Interpolated: true || false,
92
+ * // TimeZone: { // TimeZone
93
+ * // Name: "STRING_VALUE", // required
94
+ * // Offset: Number("int"),
95
+ * // },
96
+ * // UnitType: "STRING_VALUE",
97
+ * // UnitNumber: "STRING_VALUE",
98
+ * // },
99
+ * // Distance: Number("double"),
100
+ * // Relevance: Number("double"),
101
+ * // PlaceId: "STRING_VALUE",
102
+ * // },
103
+ * // ],
104
+ * // };
105
+ *
55
106
  * ```
56
107
  *
57
108
  * @param SearchPlaceIndexForTextCommandInput - {@link SearchPlaceIndexForTextCommandInput}
@@ -76,6 +127,8 @@ export interface SearchPlaceIndexForTextCommandOutput extends SearchPlaceIndexFo
76
127
  * @throws {@link ValidationException} (client fault)
77
128
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
78
129
  *
130
+ * @throws {@link LocationServiceException}
131
+ * <p>Base exception class for all service exceptions from Location service.</p>
79
132
  *
80
133
  */
81
134
  export declare class SearchPlaceIndexForTextCommand extends $Command<SearchPlaceIndexForTextCommandInput, SearchPlaceIndexForTextCommandOutput, LocationClientResolvedConfig> {
@@ -44,6 +44,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
44
44
  * };
45
45
  * const command = new TagResourceCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // {};
48
+ *
47
49
  * ```
48
50
  *
49
51
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -68,6 +70,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
68
70
  * @throws {@link ValidationException} (client fault)
69
71
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
70
72
  *
73
+ * @throws {@link LocationServiceException}
74
+ * <p>Base exception class for all service exceptions from Location service.</p>
71
75
  *
72
76
  */
73
77
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, LocationClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -58,6 +60,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
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 UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, LocationClientResolvedConfig> {
@@ -34,6 +34,12 @@ export interface UpdateGeofenceCollectionCommandOutput extends UpdateGeofenceCol
34
34
  * };
35
35
  * const command = new UpdateGeofenceCollectionCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateGeofenceCollectionResponse
38
+ * // CollectionName: "STRING_VALUE", // required
39
+ * // CollectionArn: "STRING_VALUE", // required
40
+ * // UpdateTime: new Date("TIMESTAMP"), // required
41
+ * // };
42
+ *
37
43
  * ```
38
44
  *
39
45
  * @param UpdateGeofenceCollectionCommandInput - {@link UpdateGeofenceCollectionCommandInput}
@@ -58,6 +64,8 @@ export interface UpdateGeofenceCollectionCommandOutput extends UpdateGeofenceCol
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 UpdateGeofenceCollectionCommand extends $Command<UpdateGeofenceCollectionCommandInput, UpdateGeofenceCollectionCommandOutput, LocationClientResolvedConfig> {
@@ -51,6 +51,12 @@ export interface UpdateKeyCommandOutput extends UpdateKeyResponse, __MetadataBea
51
51
  * };
52
52
  * const command = new UpdateKeyCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // UpdateKeyResponse
55
+ * // KeyArn: "STRING_VALUE", // required
56
+ * // KeyName: "STRING_VALUE", // required
57
+ * // UpdateTime: new Date("TIMESTAMP"), // required
58
+ * // };
59
+ *
54
60
  * ```
55
61
  *
56
62
  * @param UpdateKeyCommandInput - {@link UpdateKeyCommandInput}
@@ -75,6 +81,8 @@ export interface UpdateKeyCommandOutput extends UpdateKeyResponse, __MetadataBea
75
81
  * @throws {@link ValidationException} (client fault)
76
82
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
77
83
  *
84
+ * @throws {@link LocationServiceException}
85
+ * <p>Base exception class for all service exceptions from Location service.</p>
78
86
  *
79
87
  */
80
88
  export declare class UpdateKeyCommand extends $Command<UpdateKeyCommandInput, UpdateKeyCommandOutput, LocationClientResolvedConfig> {
@@ -33,6 +33,12 @@ export interface UpdateMapCommandOutput extends UpdateMapResponse, __MetadataBea
33
33
  * };
34
34
  * const command = new UpdateMapCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // UpdateMapResponse
37
+ * // MapName: "STRING_VALUE", // required
38
+ * // MapArn: "STRING_VALUE", // required
39
+ * // UpdateTime: new Date("TIMESTAMP"), // required
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param UpdateMapCommandInput - {@link UpdateMapCommandInput}
@@ -57,6 +63,8 @@ export interface UpdateMapCommandOutput extends UpdateMapResponse, __MetadataBea
57
63
  * @throws {@link ValidationException} (client fault)
58
64
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
59
65
  *
66
+ * @throws {@link LocationServiceException}
67
+ * <p>Base exception class for all service exceptions from Location service.</p>
60
68
  *
61
69
  */
62
70
  export declare class UpdateMapCommand extends $Command<UpdateMapCommandInput, UpdateMapCommandOutput, LocationClientResolvedConfig> {
@@ -36,6 +36,12 @@ export interface UpdatePlaceIndexCommandOutput extends UpdatePlaceIndexResponse,
36
36
  * };
37
37
  * const command = new UpdatePlaceIndexCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // UpdatePlaceIndexResponse
40
+ * // IndexName: "STRING_VALUE", // required
41
+ * // IndexArn: "STRING_VALUE", // required
42
+ * // UpdateTime: new Date("TIMESTAMP"), // required
43
+ * // };
44
+ *
39
45
  * ```
40
46
  *
41
47
  * @param UpdatePlaceIndexCommandInput - {@link UpdatePlaceIndexCommandInput}
@@ -60,6 +66,8 @@ export interface UpdatePlaceIndexCommandOutput extends UpdatePlaceIndexResponse,
60
66
  * @throws {@link ValidationException} (client fault)
61
67
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
62
68
  *
69
+ * @throws {@link LocationServiceException}
70
+ * <p>Base exception class for all service exceptions from Location service.</p>
63
71
  *
64
72
  */
65
73
  export declare class UpdatePlaceIndexCommand extends $Command<UpdatePlaceIndexCommandInput, UpdatePlaceIndexCommandOutput, LocationClientResolvedConfig> {
@@ -33,6 +33,12 @@ export interface UpdateRouteCalculatorCommandOutput extends UpdateRouteCalculato
33
33
  * };
34
34
  * const command = new UpdateRouteCalculatorCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // UpdateRouteCalculatorResponse
37
+ * // CalculatorName: "STRING_VALUE", // required
38
+ * // CalculatorArn: "STRING_VALUE", // required
39
+ * // UpdateTime: new Date("TIMESTAMP"), // required
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param UpdateRouteCalculatorCommandInput - {@link UpdateRouteCalculatorCommandInput}
@@ -57,6 +63,8 @@ export interface UpdateRouteCalculatorCommandOutput extends UpdateRouteCalculato
57
63
  * @throws {@link ValidationException} (client fault)
58
64
  * <p>The input failed to meet the constraints specified by the AWS service. </p>
59
65
  *
66
+ * @throws {@link LocationServiceException}
67
+ * <p>Base exception class for all service exceptions from Location service.</p>
60
68
  *
61
69
  */
62
70
  export declare class UpdateRouteCalculatorCommand extends $Command<UpdateRouteCalculatorCommandInput, UpdateRouteCalculatorCommandOutput, LocationClientResolvedConfig> {
@@ -35,6 +35,12 @@ export interface UpdateTrackerCommandOutput extends UpdateTrackerResponse, __Met
35
35
  * };
36
36
  * const command = new UpdateTrackerCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateTrackerResponse
39
+ * // TrackerName: "STRING_VALUE", // required
40
+ * // TrackerArn: "STRING_VALUE", // required
41
+ * // UpdateTime: new Date("TIMESTAMP"), // required
42
+ * // };
43
+ *
38
44
  * ```
39
45
  *
40
46
  * @param UpdateTrackerCommandInput - {@link UpdateTrackerCommandInput}
@@ -59,6 +65,8 @@ export interface UpdateTrackerCommandOutput extends UpdateTrackerResponse, __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 UpdateTrackerCommand extends $Command<UpdateTrackerCommandInput, UpdateTrackerCommandOutput, LocationClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-location",
3
3
  "description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",