@aws-sdk/client-personalize 3.58.0 → 3.72.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 (71) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +2 -2
  3. package/dist-cjs/Personalize.js +45 -0
  4. package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
  5. package/dist-cjs/commands/TagResourceCommand.js +36 -0
  6. package/dist-cjs/commands/UntagResourceCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +3 -0
  8. package/dist-cjs/models/models_0.js +72 -4
  9. package/dist-cjs/protocols/Aws_json1_1.js +315 -2
  10. package/dist-es/Personalize.js +45 -0
  11. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  12. package/dist-es/commands/TagResourceCommand.js +39 -0
  13. package/dist-es/commands/UntagResourceCommand.js +39 -0
  14. package/dist-es/commands/index.js +3 -0
  15. package/dist-es/models/models_0.js +52 -0
  16. package/dist-es/protocols/Aws_json1_1.js +403 -47
  17. package/dist-types/Personalize.d.ts +113 -89
  18. package/dist-types/PersonalizeClient.d.ts +5 -2
  19. package/dist-types/commands/CreateBatchInferenceJobCommand.d.ts +3 -1
  20. package/dist-types/commands/CreateBatchSegmentJobCommand.d.ts +2 -1
  21. package/dist-types/commands/CreateCampaignCommand.d.ts +5 -6
  22. package/dist-types/commands/CreateDatasetCommand.d.ts +8 -6
  23. package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +1 -1
  24. package/dist-types/commands/CreateDatasetGroupCommand.d.ts +7 -7
  25. package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +3 -3
  26. package/dist-types/commands/CreateEventTrackerCommand.d.ts +4 -4
  27. package/dist-types/commands/CreateFilterCommand.d.ts +1 -1
  28. package/dist-types/commands/CreateRecommenderCommand.d.ts +5 -5
  29. package/dist-types/commands/CreateSchemaCommand.d.ts +4 -4
  30. package/dist-types/commands/CreateSolutionCommand.d.ts +10 -10
  31. package/dist-types/commands/CreateSolutionVersionCommand.d.ts +9 -10
  32. package/dist-types/commands/DeleteCampaignCommand.d.ts +1 -1
  33. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  34. package/dist-types/commands/DeleteEventTrackerCommand.d.ts +1 -1
  35. package/dist-types/commands/DeleteSchemaCommand.d.ts +1 -1
  36. package/dist-types/commands/DeleteSolutionCommand.d.ts +2 -2
  37. package/dist-types/commands/DescribeCampaignCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  39. package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +1 -1
  40. package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +1 -1
  41. package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +1 -1
  42. package/dist-types/commands/DescribeEventTrackerCommand.d.ts +1 -1
  43. package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
  44. package/dist-types/commands/DescribeSchemaCommand.d.ts +1 -1
  45. package/dist-types/commands/DescribeSolutionCommand.d.ts +1 -1
  46. package/dist-types/commands/DescribeSolutionVersionCommand.d.ts +2 -1
  47. package/dist-types/commands/ListCampaignsCommand.d.ts +1 -1
  48. package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +2 -2
  49. package/dist-types/commands/ListDatasetGroupsCommand.d.ts +1 -1
  50. package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +2 -2
  51. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  52. package/dist-types/commands/ListEventTrackersCommand.d.ts +1 -1
  53. package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
  54. package/dist-types/commands/ListSolutionVersionsCommand.d.ts +1 -2
  55. package/dist-types/commands/ListSolutionsCommand.d.ts +1 -1
  56. package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
  57. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  58. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  59. package/dist-types/commands/UpdateCampaignCommand.d.ts +2 -2
  60. package/dist-types/commands/index.d.ts +3 -0
  61. package/dist-types/models/models_0.d.ts +199 -34
  62. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  63. package/dist-types/ts3.4/Personalize.d.ts +15 -0
  64. package/dist-types/ts3.4/PersonalizeClient.d.ts +5 -2
  65. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  66. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  69. package/dist-types/ts3.4/models/models_0.d.ts +97 -0
  70. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  71. package/package.json +6 -6
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PersonalizeClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PersonalizeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, PersonalizeClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PersonalizeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, PersonalizeClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PersonalizeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -50,6 +50,9 @@ export * from "./ListRecommendersCommand";
50
50
  export * from "./ListSchemasCommand";
51
51
  export * from "./ListSolutionVersionsCommand";
52
52
  export * from "./ListSolutionsCommand";
53
+ export * from "./ListTagsForResourceCommand";
53
54
  export * from "./StopSolutionVersionCreationCommand";
55
+ export * from "./TagResourceCommand";
56
+ export * from "./UntagResourceCommand";
54
57
  export * from "./UpdateCampaignCommand";
55
58
  export * from "./UpdateRecommenderCommand";
@@ -138,6 +138,17 @@ export declare namespace BatchInferenceJobOutput {
138
138
 
139
139
  const filterSensitiveLog: (obj: BatchInferenceJobOutput) => any;
140
140
  }
141
+
142
+ export interface Tag {
143
+
144
+ tagKey: string | undefined;
145
+
146
+ tagValue: string | undefined;
147
+ }
148
+ export declare namespace Tag {
149
+
150
+ const filterSensitiveLog: (obj: Tag) => any;
151
+ }
141
152
  export interface CreateBatchInferenceJobRequest {
142
153
 
143
154
  jobName: string | undefined;
@@ -155,6 +166,8 @@ export interface CreateBatchInferenceJobRequest {
155
166
  roleArn: string | undefined;
156
167
 
157
168
  batchInferenceJobConfig?: BatchInferenceJobConfig;
169
+
170
+ tags?: Tag[];
158
171
  }
159
172
  export declare namespace CreateBatchInferenceJobRequest {
160
173
 
@@ -204,6 +217,13 @@ export declare class ResourceNotFoundException extends __BaseException {
204
217
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
205
218
  }
206
219
 
220
+ export declare class TooManyTagsException extends __BaseException {
221
+ readonly name: "TooManyTagsException";
222
+ readonly $fault: "client";
223
+
224
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
225
+ }
226
+
207
227
  export interface BatchSegmentJobInput {
208
228
 
209
229
  s3DataSource: S3DataConfig | undefined;
@@ -236,6 +256,8 @@ export interface CreateBatchSegmentJobRequest {
236
256
  jobOutput: BatchSegmentJobOutput | undefined;
237
257
 
238
258
  roleArn: string | undefined;
259
+
260
+ tags?: Tag[];
239
261
  }
240
262
  export declare namespace CreateBatchSegmentJobRequest {
241
263
 
@@ -269,6 +291,8 @@ export interface CreateCampaignRequest {
269
291
  minProvisionedTPS?: number;
270
292
 
271
293
  campaignConfig?: CampaignConfig;
294
+
295
+ tags?: Tag[];
272
296
  }
273
297
  export declare namespace CreateCampaignRequest {
274
298
 
@@ -291,6 +315,8 @@ export interface CreateDatasetRequest {
291
315
  datasetGroupArn: string | undefined;
292
316
 
293
317
  datasetType: string | undefined;
318
+
319
+ tags?: Tag[];
294
320
  }
295
321
  export declare namespace CreateDatasetRequest {
296
322
 
@@ -329,6 +355,8 @@ export interface CreateDatasetExportJobRequest {
329
355
  roleArn: string | undefined;
330
356
 
331
357
  jobOutput: DatasetExportJobOutput | undefined;
358
+
359
+ tags?: Tag[];
332
360
  }
333
361
  export declare namespace CreateDatasetExportJobRequest {
334
362
 
@@ -355,6 +383,8 @@ export interface CreateDatasetGroupRequest {
355
383
  kmsKeyArn?: string;
356
384
 
357
385
  domain?: Domain | string;
386
+
387
+ tags?: Tag[];
358
388
  }
359
389
  export declare namespace CreateDatasetGroupRequest {
360
390
 
@@ -388,6 +418,8 @@ export interface CreateDatasetImportJobRequest {
388
418
  dataSource: DataSource | undefined;
389
419
 
390
420
  roleArn: string | undefined;
421
+
422
+ tags?: Tag[];
391
423
  }
392
424
  export declare namespace CreateDatasetImportJobRequest {
393
425
 
@@ -406,6 +438,8 @@ export interface CreateEventTrackerRequest {
406
438
  name: string | undefined;
407
439
 
408
440
  datasetGroupArn: string | undefined;
441
+
442
+ tags?: Tag[];
409
443
  }
410
444
  export declare namespace CreateEventTrackerRequest {
411
445
 
@@ -428,6 +462,8 @@ export interface CreateFilterRequest {
428
462
  datasetGroupArn: string | undefined;
429
463
 
430
464
  filterExpression: string | undefined;
465
+
466
+ tags?: Tag[];
431
467
  }
432
468
  export declare namespace CreateFilterRequest {
433
469
 
@@ -463,6 +499,8 @@ export interface CreateRecommenderRequest {
463
499
  recipeArn: string | undefined;
464
500
 
465
501
  recommenderConfig?: RecommenderConfig;
502
+
503
+ tags?: Tag[];
466
504
  }
467
505
  export declare namespace CreateRecommenderRequest {
468
506
 
@@ -649,6 +687,8 @@ export interface CreateSolutionRequest {
649
687
  eventType?: string;
650
688
 
651
689
  solutionConfig?: SolutionConfig;
690
+
691
+ tags?: Tag[];
652
692
  }
653
693
  export declare namespace CreateSolutionRequest {
654
694
 
@@ -671,6 +711,8 @@ export interface CreateSolutionVersionRequest {
671
711
  solutionArn: string | undefined;
672
712
 
673
713
  trainingMode?: TrainingMode | string;
714
+
715
+ tags?: Tag[];
674
716
  }
675
717
  export declare namespace CreateSolutionVersionRequest {
676
718
 
@@ -2067,6 +2109,22 @@ export declare namespace ListSolutionVersionsResponse {
2067
2109
 
2068
2110
  const filterSensitiveLog: (obj: ListSolutionVersionsResponse) => any;
2069
2111
  }
2112
+ export interface ListTagsForResourceRequest {
2113
+
2114
+ resourceArn: string | undefined;
2115
+ }
2116
+ export declare namespace ListTagsForResourceRequest {
2117
+
2118
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2119
+ }
2120
+ export interface ListTagsForResourceResponse {
2121
+
2122
+ tags?: Tag[];
2123
+ }
2124
+ export declare namespace ListTagsForResourceResponse {
2125
+
2126
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2127
+ }
2070
2128
  export interface StopSolutionVersionCreationRequest {
2071
2129
 
2072
2130
  solutionVersionArn: string | undefined;
@@ -2075,6 +2133,45 @@ export declare namespace StopSolutionVersionCreationRequest {
2075
2133
 
2076
2134
  const filterSensitiveLog: (obj: StopSolutionVersionCreationRequest) => any;
2077
2135
  }
2136
+ export interface TagResourceRequest {
2137
+
2138
+ resourceArn: string | undefined;
2139
+
2140
+ tags: Tag[] | undefined;
2141
+ }
2142
+ export declare namespace TagResourceRequest {
2143
+
2144
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
2145
+ }
2146
+ export interface TagResourceResponse {
2147
+ }
2148
+ export declare namespace TagResourceResponse {
2149
+
2150
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
2151
+ }
2152
+
2153
+ export declare class TooManyTagKeysException extends __BaseException {
2154
+ readonly name: "TooManyTagKeysException";
2155
+ readonly $fault: "client";
2156
+
2157
+ constructor(opts: __ExceptionOptionType<TooManyTagKeysException, __BaseException>);
2158
+ }
2159
+ export interface UntagResourceRequest {
2160
+
2161
+ resourceArn: string | undefined;
2162
+
2163
+ tagKeys: string[] | undefined;
2164
+ }
2165
+ export declare namespace UntagResourceRequest {
2166
+
2167
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
2168
+ }
2169
+ export interface UntagResourceResponse {
2170
+ }
2171
+ export declare namespace UntagResourceResponse {
2172
+
2173
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
2174
+ }
2078
2175
  export interface UpdateCampaignRequest {
2079
2176
 
2080
2177
  campaignArn: string | undefined;
@@ -52,7 +52,10 @@ import { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "../
52
52
  import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
53
53
  import { ListSolutionsCommandInput, ListSolutionsCommandOutput } from "../commands/ListSolutionsCommand";
54
54
  import { ListSolutionVersionsCommandInput, ListSolutionVersionsCommandOutput } from "../commands/ListSolutionVersionsCommand";
55
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
55
56
  import { StopSolutionVersionCreationCommandInput, StopSolutionVersionCreationCommandOutput } from "../commands/StopSolutionVersionCreationCommand";
57
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
58
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
56
59
  import { UpdateCampaignCommandInput, UpdateCampaignCommandOutput } from "../commands/UpdateCampaignCommand";
57
60
  import { UpdateRecommenderCommandInput, UpdateRecommenderCommandOutput } from "../commands/UpdateRecommenderCommand";
58
61
  export declare const serializeAws_json1_1CreateBatchInferenceJobCommand: (input: CreateBatchInferenceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -107,7 +110,10 @@ export declare const serializeAws_json1_1ListRecommendersCommand: (input: ListRe
107
110
  export declare const serializeAws_json1_1ListSchemasCommand: (input: ListSchemasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
111
  export declare const serializeAws_json1_1ListSolutionsCommand: (input: ListSolutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
112
  export declare const serializeAws_json1_1ListSolutionVersionsCommand: (input: ListSolutionVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
114
  export declare const serializeAws_json1_1StopSolutionVersionCreationCommand: (input: StopSolutionVersionCreationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
+ export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
117
  export declare const serializeAws_json1_1UpdateCampaignCommand: (input: UpdateCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
118
  export declare const serializeAws_json1_1UpdateRecommenderCommand: (input: UpdateRecommenderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
119
  export declare const deserializeAws_json1_1CreateBatchInferenceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchInferenceJobCommandOutput>;
@@ -162,6 +168,9 @@ export declare const deserializeAws_json1_1ListRecommendersCommand: (output: __H
162
168
  export declare const deserializeAws_json1_1ListSchemasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemasCommandOutput>;
163
169
  export declare const deserializeAws_json1_1ListSolutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSolutionsCommandOutput>;
164
170
  export declare const deserializeAws_json1_1ListSolutionVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSolutionVersionsCommandOutput>;
171
+ export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
165
172
  export declare const deserializeAws_json1_1StopSolutionVersionCreationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSolutionVersionCreationCommandOutput>;
173
+ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
174
+ export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
166
175
  export declare const deserializeAws_json1_1UpdateCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCampaignCommandOutput>;
167
176
  export declare const deserializeAws_json1_1UpdateRecommenderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRecommenderCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-personalize",
3
3
  "description": "AWS SDK for JavaScript Personalize Client for Node.js, Browser and React Native",
4
- "version": "3.58.0",
4
+ "version": "3.72.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",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.72.0",
22
22
  "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.72.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.58.0",
36
36
  "@aws-sdk/node-http-handler": "3.58.0",
37
37
  "@aws-sdk/protocol-http": "3.58.0",
38
- "@aws-sdk/smithy-client": "3.55.0",
38
+ "@aws-sdk/smithy-client": "3.72.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.58.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.72.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.72.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.58.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",