@aws-sdk/client-machine-learning 3.975.0 → 3.980.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-cjs/index.js +46 -34
- package/dist-es/MachineLearning.js +21 -1
- package/dist-types/MachineLearning.d.ts +54 -1
- package/dist-types/ts3.4/MachineLearning.d.ts +71 -1
- package/package.json +19 -19
package/dist-cjs/index.js
CHANGED
|
@@ -1299,40 +1299,6 @@ class UpdateMLModelCommand extends smithyClient.Command
|
|
|
1299
1299
|
.build() {
|
|
1300
1300
|
}
|
|
1301
1301
|
|
|
1302
|
-
const commands = {
|
|
1303
|
-
AddTagsCommand,
|
|
1304
|
-
CreateBatchPredictionCommand,
|
|
1305
|
-
CreateDataSourceFromRDSCommand,
|
|
1306
|
-
CreateDataSourceFromRedshiftCommand,
|
|
1307
|
-
CreateDataSourceFromS3Command,
|
|
1308
|
-
CreateEvaluationCommand,
|
|
1309
|
-
CreateMLModelCommand,
|
|
1310
|
-
CreateRealtimeEndpointCommand,
|
|
1311
|
-
DeleteBatchPredictionCommand,
|
|
1312
|
-
DeleteDataSourceCommand,
|
|
1313
|
-
DeleteEvaluationCommand,
|
|
1314
|
-
DeleteMLModelCommand,
|
|
1315
|
-
DeleteRealtimeEndpointCommand,
|
|
1316
|
-
DeleteTagsCommand,
|
|
1317
|
-
DescribeBatchPredictionsCommand,
|
|
1318
|
-
DescribeDataSourcesCommand,
|
|
1319
|
-
DescribeEvaluationsCommand,
|
|
1320
|
-
DescribeMLModelsCommand,
|
|
1321
|
-
DescribeTagsCommand,
|
|
1322
|
-
GetBatchPredictionCommand,
|
|
1323
|
-
GetDataSourceCommand,
|
|
1324
|
-
GetEvaluationCommand,
|
|
1325
|
-
GetMLModelCommand,
|
|
1326
|
-
PredictCommand,
|
|
1327
|
-
UpdateBatchPredictionCommand,
|
|
1328
|
-
UpdateDataSourceCommand,
|
|
1329
|
-
UpdateEvaluationCommand,
|
|
1330
|
-
UpdateMLModelCommand,
|
|
1331
|
-
};
|
|
1332
|
-
class MachineLearning extends MachineLearningClient {
|
|
1333
|
-
}
|
|
1334
|
-
smithyClient.createAggregatedClient(commands, MachineLearning);
|
|
1335
|
-
|
|
1336
1302
|
const paginateDescribeBatchPredictions = core.createPaginator(MachineLearningClient, DescribeBatchPredictionsCommand, "NextToken", "NextToken", "Limit");
|
|
1337
1303
|
|
|
1338
1304
|
const paginateDescribeDataSources = core.createPaginator(MachineLearningClient, DescribeDataSourcesCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1553,6 +1519,52 @@ const waitUntilMLModelAvailable = async (params, input) => {
|
|
|
1553
1519
|
return utilWaiter.checkExceptions(result);
|
|
1554
1520
|
};
|
|
1555
1521
|
|
|
1522
|
+
const commands = {
|
|
1523
|
+
AddTagsCommand,
|
|
1524
|
+
CreateBatchPredictionCommand,
|
|
1525
|
+
CreateDataSourceFromRDSCommand,
|
|
1526
|
+
CreateDataSourceFromRedshiftCommand,
|
|
1527
|
+
CreateDataSourceFromS3Command,
|
|
1528
|
+
CreateEvaluationCommand,
|
|
1529
|
+
CreateMLModelCommand,
|
|
1530
|
+
CreateRealtimeEndpointCommand,
|
|
1531
|
+
DeleteBatchPredictionCommand,
|
|
1532
|
+
DeleteDataSourceCommand,
|
|
1533
|
+
DeleteEvaluationCommand,
|
|
1534
|
+
DeleteMLModelCommand,
|
|
1535
|
+
DeleteRealtimeEndpointCommand,
|
|
1536
|
+
DeleteTagsCommand,
|
|
1537
|
+
DescribeBatchPredictionsCommand,
|
|
1538
|
+
DescribeDataSourcesCommand,
|
|
1539
|
+
DescribeEvaluationsCommand,
|
|
1540
|
+
DescribeMLModelsCommand,
|
|
1541
|
+
DescribeTagsCommand,
|
|
1542
|
+
GetBatchPredictionCommand,
|
|
1543
|
+
GetDataSourceCommand,
|
|
1544
|
+
GetEvaluationCommand,
|
|
1545
|
+
GetMLModelCommand,
|
|
1546
|
+
PredictCommand,
|
|
1547
|
+
UpdateBatchPredictionCommand,
|
|
1548
|
+
UpdateDataSourceCommand,
|
|
1549
|
+
UpdateEvaluationCommand,
|
|
1550
|
+
UpdateMLModelCommand,
|
|
1551
|
+
};
|
|
1552
|
+
const paginators = {
|
|
1553
|
+
paginateDescribeBatchPredictions,
|
|
1554
|
+
paginateDescribeDataSources,
|
|
1555
|
+
paginateDescribeEvaluations,
|
|
1556
|
+
paginateDescribeMLModels,
|
|
1557
|
+
};
|
|
1558
|
+
const waiters = {
|
|
1559
|
+
waitUntilBatchPredictionAvailable,
|
|
1560
|
+
waitUntilDataSourceAvailable,
|
|
1561
|
+
waitUntilEvaluationAvailable,
|
|
1562
|
+
waitUntilMLModelAvailable,
|
|
1563
|
+
};
|
|
1564
|
+
class MachineLearning extends MachineLearningClient {
|
|
1565
|
+
}
|
|
1566
|
+
smithyClient.createAggregatedClient(commands, MachineLearning, { paginators, waiters });
|
|
1567
|
+
|
|
1556
1568
|
const TaggableResourceType = {
|
|
1557
1569
|
BATCH_PREDICTION: "BatchPrediction",
|
|
1558
1570
|
DATASOURCE: "DataSource",
|
|
@@ -28,6 +28,14 @@ import { UpdateDataSourceCommand, } from "./commands/UpdateDataSourceCommand";
|
|
|
28
28
|
import { UpdateEvaluationCommand, } from "./commands/UpdateEvaluationCommand";
|
|
29
29
|
import { UpdateMLModelCommand, } from "./commands/UpdateMLModelCommand";
|
|
30
30
|
import { MachineLearningClient } from "./MachineLearningClient";
|
|
31
|
+
import { paginateDescribeBatchPredictions } from "./pagination/DescribeBatchPredictionsPaginator";
|
|
32
|
+
import { paginateDescribeDataSources } from "./pagination/DescribeDataSourcesPaginator";
|
|
33
|
+
import { paginateDescribeEvaluations } from "./pagination/DescribeEvaluationsPaginator";
|
|
34
|
+
import { paginateDescribeMLModels } from "./pagination/DescribeMLModelsPaginator";
|
|
35
|
+
import { waitUntilBatchPredictionAvailable } from "./waiters/waitForBatchPredictionAvailable";
|
|
36
|
+
import { waitUntilDataSourceAvailable } from "./waiters/waitForDataSourceAvailable";
|
|
37
|
+
import { waitUntilEvaluationAvailable } from "./waiters/waitForEvaluationAvailable";
|
|
38
|
+
import { waitUntilMLModelAvailable } from "./waiters/waitForMLModelAvailable";
|
|
31
39
|
const commands = {
|
|
32
40
|
AddTagsCommand,
|
|
33
41
|
CreateBatchPredictionCommand,
|
|
@@ -58,6 +66,18 @@ const commands = {
|
|
|
58
66
|
UpdateEvaluationCommand,
|
|
59
67
|
UpdateMLModelCommand,
|
|
60
68
|
};
|
|
69
|
+
const paginators = {
|
|
70
|
+
paginateDescribeBatchPredictions,
|
|
71
|
+
paginateDescribeDataSources,
|
|
72
|
+
paginateDescribeEvaluations,
|
|
73
|
+
paginateDescribeMLModels,
|
|
74
|
+
};
|
|
75
|
+
const waiters = {
|
|
76
|
+
waitUntilBatchPredictionAvailable,
|
|
77
|
+
waitUntilDataSourceAvailable,
|
|
78
|
+
waitUntilEvaluationAvailable,
|
|
79
|
+
waitUntilMLModelAvailable,
|
|
80
|
+
};
|
|
61
81
|
export class MachineLearning extends MachineLearningClient {
|
|
62
82
|
}
|
|
63
|
-
createAggregatedClient(commands, MachineLearning);
|
|
83
|
+
createAggregatedClient(commands, MachineLearning, { paginators, waiters });
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { type AddTagsCommandInput, type AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
3
4
|
import { type CreateBatchPredictionCommandInput, type CreateBatchPredictionCommandOutput } from "./commands/CreateBatchPredictionCommand";
|
|
4
5
|
import { type CreateDataSourceFromRDSCommandInput, type CreateDataSourceFromRDSCommandOutput } from "./commands/CreateDataSourceFromRDSCommand";
|
|
@@ -201,6 +202,58 @@ export interface MachineLearning {
|
|
|
201
202
|
updateMLModel(args: UpdateMLModelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMLModelCommandOutput>;
|
|
202
203
|
updateMLModel(args: UpdateMLModelCommandInput, cb: (err: any, data?: UpdateMLModelCommandOutput) => void): void;
|
|
203
204
|
updateMLModel(args: UpdateMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMLModelCommandOutput) => void): void;
|
|
205
|
+
/**
|
|
206
|
+
* @see {@link DescribeBatchPredictionsCommand}
|
|
207
|
+
* @param args - command input.
|
|
208
|
+
* @param paginationConfig - optional pagination config.
|
|
209
|
+
* @returns AsyncIterable of {@link DescribeBatchPredictionsCommandOutput}.
|
|
210
|
+
*/
|
|
211
|
+
paginateDescribeBatchPredictions(args?: DescribeBatchPredictionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeBatchPredictionsCommandOutput>;
|
|
212
|
+
/**
|
|
213
|
+
* @see {@link DescribeDataSourcesCommand}
|
|
214
|
+
* @param args - command input.
|
|
215
|
+
* @param paginationConfig - optional pagination config.
|
|
216
|
+
* @returns AsyncIterable of {@link DescribeDataSourcesCommandOutput}.
|
|
217
|
+
*/
|
|
218
|
+
paginateDescribeDataSources(args?: DescribeDataSourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDataSourcesCommandOutput>;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link DescribeEvaluationsCommand}
|
|
221
|
+
* @param args - command input.
|
|
222
|
+
* @param paginationConfig - optional pagination config.
|
|
223
|
+
* @returns AsyncIterable of {@link DescribeEvaluationsCommandOutput}.
|
|
224
|
+
*/
|
|
225
|
+
paginateDescribeEvaluations(args?: DescribeEvaluationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEvaluationsCommandOutput>;
|
|
226
|
+
/**
|
|
227
|
+
* @see {@link DescribeMLModelsCommand}
|
|
228
|
+
* @param args - command input.
|
|
229
|
+
* @param paginationConfig - optional pagination config.
|
|
230
|
+
* @returns AsyncIterable of {@link DescribeMLModelsCommandOutput}.
|
|
231
|
+
*/
|
|
232
|
+
paginateDescribeMLModels(args?: DescribeMLModelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMLModelsCommandOutput>;
|
|
233
|
+
/**
|
|
234
|
+
* @see {@link DescribeBatchPredictionsCommand}
|
|
235
|
+
* @param args - command input.
|
|
236
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
237
|
+
*/
|
|
238
|
+
waitUntilBatchPredictionAvailable(args: DescribeBatchPredictionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult>;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link DescribeDataSourcesCommand}
|
|
241
|
+
* @param args - command input.
|
|
242
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
243
|
+
*/
|
|
244
|
+
waitUntilDataSourceAvailable(args: DescribeDataSourcesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult>;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link DescribeEvaluationsCommand}
|
|
247
|
+
* @param args - command input.
|
|
248
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
249
|
+
*/
|
|
250
|
+
waitUntilEvaluationAvailable(args: DescribeEvaluationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult>;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link DescribeMLModelsCommand}
|
|
253
|
+
* @param args - command input.
|
|
254
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
255
|
+
*/
|
|
256
|
+
waitUntilMLModelAvailable(args: DescribeMLModelsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult>;
|
|
204
257
|
}
|
|
205
258
|
/**
|
|
206
259
|
* Definition of the public APIs
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
AddTagsCommandInput,
|
|
4
10
|
AddTagsCommandOutput,
|
|
@@ -481,6 +487,70 @@ export interface MachineLearning {
|
|
|
481
487
|
options: __HttpHandlerOptions,
|
|
482
488
|
cb: (err: any, data?: UpdateMLModelCommandOutput) => void
|
|
483
489
|
): void;
|
|
490
|
+
paginateDescribeBatchPredictions(
|
|
491
|
+
args?: DescribeBatchPredictionsCommandInput,
|
|
492
|
+
paginationConfig?: Pick<
|
|
493
|
+
PaginationConfiguration,
|
|
494
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
495
|
+
>
|
|
496
|
+
): Paginator<DescribeBatchPredictionsCommandOutput>;
|
|
497
|
+
paginateDescribeDataSources(
|
|
498
|
+
args?: DescribeDataSourcesCommandInput,
|
|
499
|
+
paginationConfig?: Pick<
|
|
500
|
+
PaginationConfiguration,
|
|
501
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
502
|
+
>
|
|
503
|
+
): Paginator<DescribeDataSourcesCommandOutput>;
|
|
504
|
+
paginateDescribeEvaluations(
|
|
505
|
+
args?: DescribeEvaluationsCommandInput,
|
|
506
|
+
paginationConfig?: Pick<
|
|
507
|
+
PaginationConfiguration,
|
|
508
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
509
|
+
>
|
|
510
|
+
): Paginator<DescribeEvaluationsCommandOutput>;
|
|
511
|
+
paginateDescribeMLModels(
|
|
512
|
+
args?: DescribeMLModelsCommandInput,
|
|
513
|
+
paginationConfig?: Pick<
|
|
514
|
+
PaginationConfiguration,
|
|
515
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
516
|
+
>
|
|
517
|
+
): Paginator<DescribeMLModelsCommandOutput>;
|
|
518
|
+
waitUntilBatchPredictionAvailable(
|
|
519
|
+
args: DescribeBatchPredictionsCommandInput,
|
|
520
|
+
waiterConfig:
|
|
521
|
+
| number
|
|
522
|
+
| Pick<
|
|
523
|
+
WaiterConfiguration<MachineLearning>,
|
|
524
|
+
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
525
|
+
>
|
|
526
|
+
): Promise<WaiterResult>;
|
|
527
|
+
waitUntilDataSourceAvailable(
|
|
528
|
+
args: DescribeDataSourcesCommandInput,
|
|
529
|
+
waiterConfig:
|
|
530
|
+
| number
|
|
531
|
+
| Pick<
|
|
532
|
+
WaiterConfiguration<MachineLearning>,
|
|
533
|
+
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
534
|
+
>
|
|
535
|
+
): Promise<WaiterResult>;
|
|
536
|
+
waitUntilEvaluationAvailable(
|
|
537
|
+
args: DescribeEvaluationsCommandInput,
|
|
538
|
+
waiterConfig:
|
|
539
|
+
| number
|
|
540
|
+
| Pick<
|
|
541
|
+
WaiterConfiguration<MachineLearning>,
|
|
542
|
+
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
543
|
+
>
|
|
544
|
+
): Promise<WaiterResult>;
|
|
545
|
+
waitUntilMLModelAvailable(
|
|
546
|
+
args: DescribeMLModelsCommandInput,
|
|
547
|
+
waiterConfig:
|
|
548
|
+
| number
|
|
549
|
+
| Pick<
|
|
550
|
+
WaiterConfiguration<MachineLearning>,
|
|
551
|
+
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
552
|
+
>
|
|
553
|
+
): Promise<WaiterResult>;
|
|
484
554
|
}
|
|
485
555
|
export declare class MachineLearning
|
|
486
556
|
extends MachineLearningClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-machine-learning",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-sdk-machinelearning": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-sdk-machinelearning": "^3.972.3",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
32
|
+
"@aws-sdk/types": "^3.973.1",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.6",
|
|
37
|
-
"@smithy/core": "^3.
|
|
37
|
+
"@smithy/core": "^3.22.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
39
39
|
"@smithy/hash-node": "^4.2.8",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
43
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
44
44
|
"@smithy/middleware-serde": "^4.2.9",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.8",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.8",
|
|
47
47
|
"@smithy/node-http-handler": "^4.4.8",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.8",
|
|
49
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
50
50
|
"@smithy/types": "^4.12.0",
|
|
51
51
|
"@smithy/url-parser": "^4.2.8",
|
|
52
52
|
"@smithy/util-base64": "^4.3.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
57
57
|
"@smithy/util-endpoints": "^3.2.8",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.8",
|
|
59
59
|
"@smithy/util-retry": "^4.2.8",
|