@aws-sdk/client-healthlake 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.
@@ -48,6 +48,13 @@ export interface CreateFHIRDatastoreCommandOutput extends CreateFHIRDatastoreRes
48
48
  * };
49
49
  * const command = new CreateFHIRDatastoreCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // CreateFHIRDatastoreResponse
52
+ * // DatastoreId: "STRING_VALUE", // required
53
+ * // DatastoreArn: "STRING_VALUE", // required
54
+ * // DatastoreStatus: "STRING_VALUE", // required
55
+ * // DatastoreEndpoint: "STRING_VALUE", // required
56
+ * // };
57
+ *
51
58
  * ```
52
59
  *
53
60
  * @param CreateFHIRDatastoreCommandInput - {@link CreateFHIRDatastoreCommandInput}
@@ -68,6 +75,8 @@ export interface CreateFHIRDatastoreCommandOutput extends CreateFHIRDatastoreRes
68
75
  * @throws {@link ValidationException} (client fault)
69
76
  * <p>The user input parameter was invalid.</p>
70
77
  *
78
+ * @throws {@link HealthLakeServiceException}
79
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
71
80
  *
72
81
  */
73
82
  export declare class CreateFHIRDatastoreCommand extends $Command<CreateFHIRDatastoreCommandInput, CreateFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig> {
@@ -31,6 +31,13 @@ export interface DeleteFHIRDatastoreCommandOutput extends DeleteFHIRDatastoreRes
31
31
  * };
32
32
  * const command = new DeleteFHIRDatastoreCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteFHIRDatastoreResponse
35
+ * // DatastoreId: "STRING_VALUE", // required
36
+ * // DatastoreArn: "STRING_VALUE", // required
37
+ * // DatastoreStatus: "STRING_VALUE", // required
38
+ * // DatastoreEndpoint: "STRING_VALUE", // required
39
+ * // };
40
+ *
34
41
  * ```
35
42
  *
36
43
  * @param DeleteFHIRDatastoreCommandInput - {@link DeleteFHIRDatastoreCommandInput}
@@ -57,6 +64,8 @@ export interface DeleteFHIRDatastoreCommandOutput extends DeleteFHIRDatastoreRes
57
64
  * @throws {@link ValidationException} (client fault)
58
65
  * <p>The user input parameter was invalid.</p>
59
66
  *
67
+ * @throws {@link HealthLakeServiceException}
68
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
60
69
  *
61
70
  */
62
71
  export declare class DeleteFHIRDatastoreCommand extends $Command<DeleteFHIRDatastoreCommandInput, DeleteFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig> {
@@ -33,6 +33,27 @@ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastor
33
33
  * };
34
34
  * const command = new DescribeFHIRDatastoreCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeFHIRDatastoreResponse
37
+ * // DatastoreProperties: { // DatastoreProperties
38
+ * // DatastoreId: "STRING_VALUE", // required
39
+ * // DatastoreArn: "STRING_VALUE", // required
40
+ * // DatastoreName: "STRING_VALUE",
41
+ * // DatastoreStatus: "STRING_VALUE", // required
42
+ * // CreatedAt: new Date("TIMESTAMP"),
43
+ * // DatastoreTypeVersion: "STRING_VALUE", // required
44
+ * // DatastoreEndpoint: "STRING_VALUE", // required
45
+ * // SseConfiguration: { // SseConfiguration
46
+ * // KmsEncryptionConfig: { // KmsEncryptionConfig
47
+ * // CmkType: "STRING_VALUE", // required
48
+ * // KmsKeyId: "STRING_VALUE",
49
+ * // },
50
+ * // },
51
+ * // PreloadDataConfig: { // PreloadDataConfig
52
+ * // PreloadDataType: "STRING_VALUE", // required
53
+ * // },
54
+ * // },
55
+ * // };
56
+ *
36
57
  * ```
37
58
  *
38
59
  * @param DescribeFHIRDatastoreCommandInput - {@link DescribeFHIRDatastoreCommandInput}
@@ -53,6 +74,8 @@ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastor
53
74
  * @throws {@link ValidationException} (client fault)
54
75
  * <p>The user input parameter was invalid.</p>
55
76
  *
77
+ * @throws {@link HealthLakeServiceException}
78
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
56
79
  *
57
80
  */
58
81
  export declare class DescribeFHIRDatastoreCommand extends $Command<DescribeFHIRDatastoreCommandInput, DescribeFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig> {
@@ -32,6 +32,25 @@ export interface DescribeFHIRExportJobCommandOutput extends DescribeFHIRExportJo
32
32
  * };
33
33
  * const command = new DescribeFHIRExportJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFHIRExportJobResponse
36
+ * // ExportJobProperties: { // ExportJobProperties
37
+ * // JobId: "STRING_VALUE", // required
38
+ * // JobName: "STRING_VALUE",
39
+ * // JobStatus: "STRING_VALUE", // required
40
+ * // SubmitTime: new Date("TIMESTAMP"), // required
41
+ * // EndTime: new Date("TIMESTAMP"),
42
+ * // DatastoreId: "STRING_VALUE", // required
43
+ * // OutputDataConfig: { // OutputDataConfig Union: only one key present
44
+ * // S3Configuration: { // S3Configuration
45
+ * // S3Uri: "STRING_VALUE", // required
46
+ * // KmsKeyId: "STRING_VALUE", // required
47
+ * // },
48
+ * // },
49
+ * // DataAccessRoleArn: "STRING_VALUE",
50
+ * // Message: "STRING_VALUE",
51
+ * // },
52
+ * // };
53
+ *
35
54
  * ```
36
55
  *
37
56
  * @param DescribeFHIRExportJobCommandInput - {@link DescribeFHIRExportJobCommandInput}
@@ -52,6 +71,8 @@ export interface DescribeFHIRExportJobCommandOutput extends DescribeFHIRExportJo
52
71
  * @throws {@link ValidationException} (client fault)
53
72
  * <p>The user input parameter was invalid.</p>
54
73
  *
74
+ * @throws {@link HealthLakeServiceException}
75
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
55
76
  *
56
77
  */
57
78
  export declare class DescribeFHIRExportJobCommand extends $Command<DescribeFHIRExportJobCommandInput, DescribeFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig> {
@@ -32,6 +32,28 @@ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJo
32
32
  * };
33
33
  * const command = new DescribeFHIRImportJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFHIRImportJobResponse
36
+ * // ImportJobProperties: { // ImportJobProperties
37
+ * // JobId: "STRING_VALUE", // required
38
+ * // JobName: "STRING_VALUE",
39
+ * // JobStatus: "STRING_VALUE", // required
40
+ * // SubmitTime: new Date("TIMESTAMP"), // required
41
+ * // EndTime: new Date("TIMESTAMP"),
42
+ * // DatastoreId: "STRING_VALUE", // required
43
+ * // InputDataConfig: { // InputDataConfig Union: only one key present
44
+ * // S3Uri: "STRING_VALUE",
45
+ * // },
46
+ * // JobOutputDataConfig: { // OutputDataConfig Union: only one key present
47
+ * // S3Configuration: { // S3Configuration
48
+ * // S3Uri: "STRING_VALUE", // required
49
+ * // KmsKeyId: "STRING_VALUE", // required
50
+ * // },
51
+ * // },
52
+ * // DataAccessRoleArn: "STRING_VALUE",
53
+ * // Message: "STRING_VALUE",
54
+ * // },
55
+ * // };
56
+ *
35
57
  * ```
36
58
  *
37
59
  * @param DescribeFHIRImportJobCommandInput - {@link DescribeFHIRImportJobCommandInput}
@@ -52,6 +74,8 @@ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJo
52
74
  * @throws {@link ValidationException} (client fault)
53
75
  * <p>The user input parameter was invalid.</p>
54
76
  *
77
+ * @throws {@link HealthLakeServiceException}
78
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
55
79
  *
56
80
  */
57
81
  export declare class DescribeFHIRImportJobCommand extends $Command<DescribeFHIRImportJobCommandInput, DescribeFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig> {
@@ -39,6 +39,30 @@ export interface ListFHIRDatastoresCommandOutput extends ListFHIRDatastoresRespo
39
39
  * };
40
40
  * const command = new ListFHIRDatastoresCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListFHIRDatastoresResponse
43
+ * // DatastorePropertiesList: [ // DatastorePropertiesList // required
44
+ * // { // DatastoreProperties
45
+ * // DatastoreId: "STRING_VALUE", // required
46
+ * // DatastoreArn: "STRING_VALUE", // required
47
+ * // DatastoreName: "STRING_VALUE",
48
+ * // DatastoreStatus: "STRING_VALUE", // required
49
+ * // CreatedAt: new Date("TIMESTAMP"),
50
+ * // DatastoreTypeVersion: "STRING_VALUE", // required
51
+ * // DatastoreEndpoint: "STRING_VALUE", // required
52
+ * // SseConfiguration: { // SseConfiguration
53
+ * // KmsEncryptionConfig: { // KmsEncryptionConfig
54
+ * // CmkType: "STRING_VALUE", // required
55
+ * // KmsKeyId: "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // PreloadDataConfig: { // PreloadDataConfig
59
+ * // PreloadDataType: "STRING_VALUE", // required
60
+ * // },
61
+ * // },
62
+ * // ],
63
+ * // NextToken: "STRING_VALUE",
64
+ * // };
65
+ *
42
66
  * ```
43
67
  *
44
68
  * @param ListFHIRDatastoresCommandInput - {@link ListFHIRDatastoresCommandInput}
@@ -56,6 +80,8 @@ export interface ListFHIRDatastoresCommandOutput extends ListFHIRDatastoresRespo
56
80
  * @throws {@link ValidationException} (client fault)
57
81
  * <p>The user input parameter was invalid.</p>
58
82
  *
83
+ * @throws {@link HealthLakeServiceException}
84
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
59
85
  *
60
86
  */
61
87
  export declare class ListFHIRDatastoresCommand extends $Command<ListFHIRDatastoresCommandInput, ListFHIRDatastoresCommandOutput, HealthLakeClientResolvedConfig> {
@@ -39,6 +39,28 @@ export interface ListFHIRExportJobsCommandOutput extends ListFHIRExportJobsRespo
39
39
  * };
40
40
  * const command = new ListFHIRExportJobsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListFHIRExportJobsResponse
43
+ * // ExportJobPropertiesList: [ // ExportJobPropertiesList // required
44
+ * // { // ExportJobProperties
45
+ * // JobId: "STRING_VALUE", // required
46
+ * // JobName: "STRING_VALUE",
47
+ * // JobStatus: "STRING_VALUE", // required
48
+ * // SubmitTime: new Date("TIMESTAMP"), // required
49
+ * // EndTime: new Date("TIMESTAMP"),
50
+ * // DatastoreId: "STRING_VALUE", // required
51
+ * // OutputDataConfig: { // OutputDataConfig Union: only one key present
52
+ * // S3Configuration: { // S3Configuration
53
+ * // S3Uri: "STRING_VALUE", // required
54
+ * // KmsKeyId: "STRING_VALUE", // required
55
+ * // },
56
+ * // },
57
+ * // DataAccessRoleArn: "STRING_VALUE",
58
+ * // Message: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
42
64
  * ```
43
65
  *
44
66
  * @param ListFHIRExportJobsCommandInput - {@link ListFHIRExportJobsCommandInput}
@@ -62,6 +84,8 @@ export interface ListFHIRExportJobsCommandOutput extends ListFHIRExportJobsRespo
62
84
  * @throws {@link ValidationException} (client fault)
63
85
  * <p>The user input parameter was invalid.</p>
64
86
  *
87
+ * @throws {@link HealthLakeServiceException}
88
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
65
89
  *
66
90
  */
67
91
  export declare class ListFHIRExportJobsCommand extends $Command<ListFHIRExportJobsCommandInput, ListFHIRExportJobsCommandOutput, HealthLakeClientResolvedConfig> {
@@ -39,6 +39,31 @@ export interface ListFHIRImportJobsCommandOutput extends ListFHIRImportJobsRespo
39
39
  * };
40
40
  * const command = new ListFHIRImportJobsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListFHIRImportJobsResponse
43
+ * // ImportJobPropertiesList: [ // ImportJobPropertiesList // required
44
+ * // { // ImportJobProperties
45
+ * // JobId: "STRING_VALUE", // required
46
+ * // JobName: "STRING_VALUE",
47
+ * // JobStatus: "STRING_VALUE", // required
48
+ * // SubmitTime: new Date("TIMESTAMP"), // required
49
+ * // EndTime: new Date("TIMESTAMP"),
50
+ * // DatastoreId: "STRING_VALUE", // required
51
+ * // InputDataConfig: { // InputDataConfig Union: only one key present
52
+ * // S3Uri: "STRING_VALUE",
53
+ * // },
54
+ * // JobOutputDataConfig: { // OutputDataConfig Union: only one key present
55
+ * // S3Configuration: { // S3Configuration
56
+ * // S3Uri: "STRING_VALUE", // required
57
+ * // KmsKeyId: "STRING_VALUE", // required
58
+ * // },
59
+ * // },
60
+ * // DataAccessRoleArn: "STRING_VALUE",
61
+ * // Message: "STRING_VALUE",
62
+ * // },
63
+ * // ],
64
+ * // NextToken: "STRING_VALUE",
65
+ * // };
66
+ *
42
67
  * ```
43
68
  *
44
69
  * @param ListFHIRImportJobsCommandInput - {@link ListFHIRImportJobsCommandInput}
@@ -62,6 +87,8 @@ export interface ListFHIRImportJobsCommandOutput extends ListFHIRImportJobsRespo
62
87
  * @throws {@link ValidationException} (client fault)
63
88
  * <p>The user input parameter was invalid.</p>
64
89
  *
90
+ * @throws {@link HealthLakeServiceException}
91
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
65
92
  *
66
93
  */
67
94
  export declare class ListFHIRImportJobsCommand extends $Command<ListFHIRImportJobsCommandInput, ListFHIRImportJobsCommandOutput, HealthLakeClientResolvedConfig> {
@@ -33,6 +33,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // Tags: [ // TagList
38
+ * // { // Tag
39
+ * // Key: "STRING_VALUE", // required
40
+ * // Value: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // };
44
+ *
36
45
  * ```
37
46
  *
38
47
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -47,6 +56,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
47
56
  * @throws {@link ValidationException} (client fault)
48
57
  * <p>The user input parameter was invalid.</p>
49
58
  *
59
+ * @throws {@link HealthLakeServiceException}
60
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
50
61
  *
51
62
  */
52
63
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, HealthLakeClientResolvedConfig> {
@@ -40,6 +40,12 @@ export interface StartFHIRExportJobCommandOutput extends StartFHIRExportJobRespo
40
40
  * };
41
41
  * const command = new StartFHIRExportJobCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // StartFHIRExportJobResponse
44
+ * // JobId: "STRING_VALUE", // required
45
+ * // JobStatus: "STRING_VALUE", // required
46
+ * // DatastoreId: "STRING_VALUE",
47
+ * // };
48
+ *
43
49
  * ```
44
50
  *
45
51
  * @param StartFHIRExportJobCommandInput - {@link StartFHIRExportJobCommandInput}
@@ -63,6 +69,8 @@ export interface StartFHIRExportJobCommandOutput extends StartFHIRExportJobRespo
63
69
  * @throws {@link ValidationException} (client fault)
64
70
  * <p>The user input parameter was invalid.</p>
65
71
  *
72
+ * @throws {@link HealthLakeServiceException}
73
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
66
74
  *
67
75
  */
68
76
  export declare class StartFHIRExportJobCommand extends $Command<StartFHIRExportJobCommandInput, StartFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig> {
@@ -43,6 +43,12 @@ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobRespo
43
43
  * };
44
44
  * const command = new StartFHIRImportJobCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // StartFHIRImportJobResponse
47
+ * // JobId: "STRING_VALUE", // required
48
+ * // JobStatus: "STRING_VALUE", // required
49
+ * // DatastoreId: "STRING_VALUE",
50
+ * // };
51
+ *
46
52
  * ```
47
53
  *
48
54
  * @param StartFHIRImportJobCommandInput - {@link StartFHIRImportJobCommandInput}
@@ -66,6 +72,8 @@ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobRespo
66
72
  * @throws {@link ValidationException} (client fault)
67
73
  * <p>The user input parameter was invalid.</p>
68
74
  *
75
+ * @throws {@link HealthLakeServiceException}
76
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
69
77
  *
70
78
  */
71
79
  export declare class StartFHIRImportJobCommand extends $Command<StartFHIRImportJobCommandInput, StartFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig> {
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
39
39
  * };
40
40
  * const command = new TagResourceCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // {};
43
+ *
42
44
  * ```
43
45
  *
44
46
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -53,6 +55,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
53
55
  * @throws {@link ValidationException} (client fault)
54
56
  * <p>The user input parameter was invalid.</p>
55
57
  *
58
+ * @throws {@link HealthLakeServiceException}
59
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
56
60
  *
57
61
  */
58
62
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, HealthLakeClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
36
36
  * };
37
37
  * const command = new UntagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -50,6 +52,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
50
52
  * @throws {@link ValidationException} (client fault)
51
53
  * <p>The user input parameter was invalid.</p>
52
54
  *
55
+ * @throws {@link HealthLakeServiceException}
56
+ * <p>Base exception class for all service exceptions from HealthLake service.</p>
53
57
  *
54
58
  */
55
59
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, HealthLakeClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-healthlake",
3
3
  "description": "AWS SDK for JavaScript Healthlake Client for Node.js, Browser and React Native",
4
- "version": "3.321.1",
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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
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",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",