@aws-sdk/client-machine-learning 3.890.0 → 3.891.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 (29) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +2 -0
  2. package/dist-types/commands/CreateBatchPredictionCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +2 -0
  5. package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +2 -0
  6. package/dist-types/commands/CreateEvaluationCommand.d.ts +2 -0
  7. package/dist-types/commands/CreateMLModelCommand.d.ts +2 -0
  8. package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +2 -0
  9. package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +2 -0
  10. package/dist-types/commands/DeleteDataSourceCommand.d.ts +2 -0
  11. package/dist-types/commands/DeleteEvaluationCommand.d.ts +2 -0
  12. package/dist-types/commands/DeleteMLModelCommand.d.ts +2 -0
  13. package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +2 -0
  14. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -0
  15. package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +2 -0
  16. package/dist-types/commands/DescribeDataSourcesCommand.d.ts +2 -0
  17. package/dist-types/commands/DescribeEvaluationsCommand.d.ts +2 -0
  18. package/dist-types/commands/DescribeMLModelsCommand.d.ts +2 -0
  19. package/dist-types/commands/DescribeTagsCommand.d.ts +2 -0
  20. package/dist-types/commands/GetBatchPredictionCommand.d.ts +2 -0
  21. package/dist-types/commands/GetDataSourceCommand.d.ts +2 -0
  22. package/dist-types/commands/GetEvaluationCommand.d.ts +2 -0
  23. package/dist-types/commands/GetMLModelCommand.d.ts +2 -0
  24. package/dist-types/commands/PredictCommand.d.ts +2 -0
  25. package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +2 -0
  26. package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -0
  27. package/dist-types/commands/UpdateEvaluationCommand.d.ts +2 -0
  28. package/dist-types/commands/UpdateMLModelCommand.d.ts +2 -0
  29. package/package.json +11 -11
@@ -35,6 +35,8 @@ declare const AddTagsCommand_base: {
35
35
  * ```javascript
36
36
  * import { MachineLearningClient, AddTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
37
37
  * // const { MachineLearningClient, AddTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
38
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
39
+ * const config = {}; // type is MachineLearningClientConfig
38
40
  * const client = new MachineLearningClient(config);
39
41
  * const input = { // AddTagsInput
40
42
  * Tags: [ // TagList // required
@@ -44,6 +44,8 @@ declare const CreateBatchPredictionCommand_base: {
44
44
  * ```javascript
45
45
  * import { MachineLearningClient, CreateBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
46
46
  * // const { MachineLearningClient, CreateBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
47
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
48
+ * const config = {}; // type is MachineLearningClientConfig
47
49
  * const client = new MachineLearningClient(config);
48
50
  * const input = { // CreateBatchPredictionInput
49
51
  * BatchPredictionId: "STRING_VALUE", // required
@@ -44,6 +44,8 @@ declare const CreateDataSourceFromRDSCommand_base: {
44
44
  * ```javascript
45
45
  * import { MachineLearningClient, CreateDataSourceFromRDSCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
46
46
  * // const { MachineLearningClient, CreateDataSourceFromRDSCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
47
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
48
+ * const config = {}; // type is MachineLearningClientConfig
47
49
  * const client = new MachineLearningClient(config);
48
50
  * const input = { // CreateDataSourceFromRDSInput
49
51
  * DataSourceId: "STRING_VALUE", // required
@@ -65,6 +65,8 @@ declare const CreateDataSourceFromRedshiftCommand_base: {
65
65
  * ```javascript
66
66
  * import { MachineLearningClient, CreateDataSourceFromRedshiftCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
67
67
  * // const { MachineLearningClient, CreateDataSourceFromRedshiftCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
68
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
69
+ * const config = {}; // type is MachineLearningClientConfig
68
70
  * const client = new MachineLearningClient(config);
69
71
  * const input = { // CreateDataSourceFromRedshiftInput
70
72
  * DataSourceId: "STRING_VALUE", // required
@@ -63,6 +63,8 @@ declare const CreateDataSourceFromS3Command_base: {
63
63
  * ```javascript
64
64
  * import { MachineLearningClient, CreateDataSourceFromS3Command } from "@aws-sdk/client-machine-learning"; // ES Modules import
65
65
  * // const { MachineLearningClient, CreateDataSourceFromS3Command } = require("@aws-sdk/client-machine-learning"); // CommonJS import
66
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
67
+ * const config = {}; // type is MachineLearningClientConfig
66
68
  * const client = new MachineLearningClient(config);
67
69
  * const input = { // CreateDataSourceFromS3Input
68
70
  * DataSourceId: "STRING_VALUE", // required
@@ -44,6 +44,8 @@ declare const CreateEvaluationCommand_base: {
44
44
  * ```javascript
45
45
  * import { MachineLearningClient, CreateEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
46
46
  * // const { MachineLearningClient, CreateEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
47
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
48
+ * const config = {}; // type is MachineLearningClientConfig
47
49
  * const client = new MachineLearningClient(config);
48
50
  * const input = { // CreateEvaluationInput
49
51
  * EvaluationId: "STRING_VALUE", // required
@@ -52,6 +52,8 @@ declare const CreateMLModelCommand_base: {
52
52
  * ```javascript
53
53
  * import { MachineLearningClient, CreateMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
54
54
  * // const { MachineLearningClient, CreateMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
55
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
56
+ * const config = {}; // type is MachineLearningClientConfig
55
57
  * const client = new MachineLearningClient(config);
56
58
  * const input = { // CreateMLModelInput
57
59
  * MLModelId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateRealtimeEndpointCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, CreateRealtimeEndpointCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, CreateRealtimeEndpointCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // CreateRealtimeEndpointInput
38
40
  * MLModelId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const DeleteBatchPredictionCommand_base: {
38
38
  * ```javascript
39
39
  * import { MachineLearningClient, DeleteBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
40
40
  * // const { MachineLearningClient, DeleteBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
41
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
42
+ * const config = {}; // type is MachineLearningClientConfig
41
43
  * const client = new MachineLearningClient(config);
42
44
  * const input = { // DeleteBatchPredictionInput
43
45
  * BatchPredictionId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const DeleteDataSourceCommand_base: {
36
36
  * ```javascript
37
37
  * import { MachineLearningClient, DeleteDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, DeleteDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
40
+ * const config = {}; // type is MachineLearningClientConfig
39
41
  * const client = new MachineLearningClient(config);
40
42
  * const input = { // DeleteDataSourceInput
41
43
  * DataSourceId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const DeleteEvaluationCommand_base: {
38
38
  * ```javascript
39
39
  * import { MachineLearningClient, DeleteEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
40
40
  * // const { MachineLearningClient, DeleteEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
41
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
42
+ * const config = {}; // type is MachineLearningClientConfig
41
43
  * const client = new MachineLearningClient(config);
42
44
  * const input = { // DeleteEvaluationInput
43
45
  * EvaluationId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const DeleteMLModelCommand_base: {
38
38
  * ```javascript
39
39
  * import { MachineLearningClient, DeleteMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
40
40
  * // const { MachineLearningClient, DeleteMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
41
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
42
+ * const config = {}; // type is MachineLearningClientConfig
41
43
  * const client = new MachineLearningClient(config);
42
44
  * const input = { // DeleteMLModelInput
43
45
  * MLModelId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteRealtimeEndpointCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DeleteRealtimeEndpointCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DeleteRealtimeEndpointCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DeleteRealtimeEndpointInput
38
40
  * MLModelId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DeleteTagsCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, DeleteTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, DeleteTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // DeleteTagsInput
39
41
  * TagKeys: [ // TagKeyList // required
@@ -33,6 +33,8 @@ declare const DescribeBatchPredictionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DescribeBatchPredictionsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DescribeBatchPredictionsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DescribeBatchPredictionsInput
38
40
  * FilterVariable: "CreatedAt" || "LastUpdatedAt" || "Status" || "Name" || "IAMUser" || "MLModelId" || "DataSourceId" || "DataURI",
@@ -33,6 +33,8 @@ declare const DescribeDataSourcesCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DescribeDataSourcesCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DescribeDataSourcesCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DescribeDataSourcesInput
38
40
  * FilterVariable: "CreatedAt" || "LastUpdatedAt" || "Status" || "Name" || "DataLocationS3" || "IAMUser",
@@ -33,6 +33,8 @@ declare const DescribeEvaluationsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DescribeEvaluationsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DescribeEvaluationsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DescribeEvaluationsInput
38
40
  * FilterVariable: "CreatedAt" || "LastUpdatedAt" || "Status" || "Name" || "IAMUser" || "MLModelId" || "DataSourceId" || "DataURI",
@@ -33,6 +33,8 @@ declare const DescribeMLModelsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DescribeMLModelsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DescribeMLModelsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DescribeMLModelsInput
38
40
  * FilterVariable: "CreatedAt" || "LastUpdatedAt" || "Status" || "Name" || "IAMUser" || "TrainingDataSourceId" || "RealtimeEndpointStatus" || "MLModelType" || "Algorithm" || "TrainingDataURI",
@@ -33,6 +33,8 @@ declare const DescribeTagsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, DescribeTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, DescribeTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // DescribeTagsInput
38
40
  * ResourceId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const GetBatchPredictionCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, GetBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, GetBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // GetBatchPredictionInput
39
41
  * BatchPredictionId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const GetDataSourceCommand_base: {
36
36
  * ```javascript
37
37
  * import { MachineLearningClient, GetDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, GetDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
40
+ * const config = {}; // type is MachineLearningClientConfig
39
41
  * const client = new MachineLearningClient(config);
40
42
  * const input = { // GetDataSourceInput
41
43
  * DataSourceId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetEvaluationCommand_base: {
33
33
  * ```javascript
34
34
  * import { MachineLearningClient, GetEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
35
35
  * // const { MachineLearningClient, GetEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
36
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
37
+ * const config = {}; // type is MachineLearningClientConfig
36
38
  * const client = new MachineLearningClient(config);
37
39
  * const input = { // GetEvaluationInput
38
40
  * EvaluationId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const GetMLModelCommand_base: {
35
35
  * ```javascript
36
36
  * import { MachineLearningClient, GetMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
37
37
  * // const { MachineLearningClient, GetMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
38
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
39
+ * const config = {}; // type is MachineLearningClientConfig
38
40
  * const client = new MachineLearningClient(config);
39
41
  * const input = { // GetMLModelInput
40
42
  * MLModelId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const PredictCommand_base: {
36
36
  * ```javascript
37
37
  * import { MachineLearningClient, PredictCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, PredictCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
40
+ * const config = {}; // type is MachineLearningClientConfig
39
41
  * const client = new MachineLearningClient(config);
40
42
  * const input = { // PredictInput
41
43
  * MLModelId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const UpdateBatchPredictionCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, UpdateBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, UpdateBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // UpdateBatchPredictionInput
39
41
  * BatchPredictionId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const UpdateDataSourceCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, UpdateDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, UpdateDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // UpdateDataSourceInput
39
41
  * DataSourceId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const UpdateEvaluationCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, UpdateEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, UpdateEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // UpdateEvaluationInput
39
41
  * EvaluationId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const UpdateMLModelCommand_base: {
34
34
  * ```javascript
35
35
  * import { MachineLearningClient, UpdateMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
36
36
  * // const { MachineLearningClient, UpdateMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
37
+ * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning";
38
+ * const config = {}; // type is MachineLearningClientConfig
37
39
  * const client = new MachineLearningClient(config);
38
40
  * const input = { // UpdateMLModelInput
39
41
  * MLModelId: "STRING_VALUE", // required
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.890.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-machine-learning",
@@ -21,17 +21,17 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-sdk-machinelearning": "3.887.0",
29
- "@aws-sdk/middleware-user-agent": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-sdk-machinelearning": "3.891.0",
29
+ "@aws-sdk/middleware-user-agent": "3.891.0",
30
30
  "@aws-sdk/region-config-resolver": "3.890.0",
31
31
  "@aws-sdk/types": "3.887.0",
32
- "@aws-sdk/util-endpoints": "3.890.0",
32
+ "@aws-sdk/util-endpoints": "3.891.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.887.0",
34
- "@aws-sdk/util-user-agent-node": "3.890.0",
34
+ "@aws-sdk/util-user-agent-node": "3.891.0",
35
35
  "@smithy/config-resolver": "^4.2.2",
36
36
  "@smithy/core": "^3.11.0",
37
37
  "@smithy/fetch-http-handler": "^5.2.1",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.1.1",
40
40
  "@smithy/middleware-content-length": "^4.1.1",
41
41
  "@smithy/middleware-endpoint": "^4.2.2",
42
- "@smithy/middleware-retry": "^4.2.2",
42
+ "@smithy/middleware-retry": "^4.2.3",
43
43
  "@smithy/middleware-serde": "^4.1.1",
44
44
  "@smithy/middleware-stack": "^4.1.1",
45
45
  "@smithy/node-config-provider": "^4.2.2",
@@ -55,7 +55,7 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.1.2",
56
56
  "@smithy/util-endpoints": "^3.1.2",
57
57
  "@smithy/util-middleware": "^4.1.1",
58
- "@smithy/util-retry": "^4.1.1",
58
+ "@smithy/util-retry": "^4.1.2",
59
59
  "@smithy/util-utf8": "^4.1.0",
60
60
  "@smithy/util-waiter": "^4.1.1",
61
61
  "tslib": "^2.6.2"