@aws-sdk/client-healthlake 3.299.0 → 3.301.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-types/commands/CreateFHIRDatastoreCommand.d.ts +20 -0
- package/dist-types/commands/DeleteFHIRDatastoreCommand.d.ts +3 -0
- package/dist-types/commands/DescribeFHIRDatastoreCommand.d.ts +3 -0
- package/dist-types/commands/DescribeFHIRExportJobCommand.d.ts +4 -0
- package/dist-types/commands/DescribeFHIRImportJobCommand.d.ts +4 -0
- package/dist-types/commands/ListFHIRDatastoresCommand.d.ts +10 -0
- package/dist-types/commands/ListFHIRExportJobsCommand.d.ts +9 -0
- package/dist-types/commands/ListFHIRImportJobsCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartFHIRExportJobCommand.d.ts +12 -0
- package/dist-types/commands/StartFHIRImportJobCommand.d.ts +15 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/package.json +8 -8
|
@@ -26,6 +26,26 @@ export interface CreateFHIRDatastoreCommandOutput extends CreateFHIRDatastoreRes
|
|
|
26
26
|
* import { HealthLakeClient, CreateFHIRDatastoreCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, CreateFHIRDatastoreCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // CreateFHIRDatastoreRequest
|
|
30
|
+
* DatastoreName: "STRING_VALUE",
|
|
31
|
+
* DatastoreTypeVersion: "STRING_VALUE", // required
|
|
32
|
+
* SseConfiguration: { // SseConfiguration
|
|
33
|
+
* KmsEncryptionConfig: { // KmsEncryptionConfig
|
|
34
|
+
* CmkType: "STRING_VALUE", // required
|
|
35
|
+
* KmsKeyId: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* },
|
|
38
|
+
* PreloadDataConfig: { // PreloadDataConfig
|
|
39
|
+
* PreloadDataType: "STRING_VALUE", // required
|
|
40
|
+
* },
|
|
41
|
+
* ClientToken: "STRING_VALUE",
|
|
42
|
+
* Tags: [ // TagList
|
|
43
|
+
* { // Tag
|
|
44
|
+
* Key: "STRING_VALUE", // required
|
|
45
|
+
* Value: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
29
49
|
* const command = new CreateFHIRDatastoreCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteFHIRDatastoreCommandOutput extends DeleteFHIRDatastoreRes
|
|
|
26
26
|
* import { HealthLakeClient, DeleteFHIRDatastoreCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, DeleteFHIRDatastoreCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // DeleteFHIRDatastoreRequest
|
|
30
|
+
* DatastoreId: "STRING_VALUE",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteFHIRDatastoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastor
|
|
|
28
28
|
* import { HealthLakeClient, DescribeFHIRDatastoreCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, DescribeFHIRDatastoreCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // DescribeFHIRDatastoreRequest
|
|
32
|
+
* DatastoreId: "STRING_VALUE",
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DescribeFHIRDatastoreCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeFHIRExportJobCommandOutput extends DescribeFHIRExportJo
|
|
|
26
26
|
* import { HealthLakeClient, DescribeFHIRExportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, DescribeFHIRExportJobCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // DescribeFHIRExportJobRequest
|
|
30
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
31
|
+
* JobId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeFHIRExportJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJo
|
|
|
26
26
|
* import { HealthLakeClient, DescribeFHIRImportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, DescribeFHIRImportJobCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // DescribeFHIRImportJobRequest
|
|
30
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
31
|
+
* JobId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeFHIRImportJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,16 @@ export interface ListFHIRDatastoresCommandOutput extends ListFHIRDatastoresRespo
|
|
|
27
27
|
* import { HealthLakeClient, ListFHIRDatastoresCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
28
28
|
* // const { HealthLakeClient, ListFHIRDatastoresCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
29
29
|
* const client = new HealthLakeClient(config);
|
|
30
|
+
* const input = { // ListFHIRDatastoresRequest
|
|
31
|
+
* Filter: { // DatastoreFilter
|
|
32
|
+
* DatastoreName: "STRING_VALUE",
|
|
33
|
+
* DatastoreStatus: "STRING_VALUE",
|
|
34
|
+
* CreatedBefore: new Date("TIMESTAMP"),
|
|
35
|
+
* CreatedAfter: new Date("TIMESTAMP"),
|
|
36
|
+
* },
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* };
|
|
30
40
|
* const command = new ListFHIRDatastoresCommand(input);
|
|
31
41
|
* const response = await client.send(command);
|
|
32
42
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface ListFHIRExportJobsCommandOutput extends ListFHIRExportJobsRespo
|
|
|
28
28
|
* import { HealthLakeClient, ListFHIRExportJobsCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, ListFHIRExportJobsCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // ListFHIRExportJobsRequest
|
|
32
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* JobName: "STRING_VALUE",
|
|
36
|
+
* JobStatus: "STRING_VALUE",
|
|
37
|
+
* SubmittedBefore: new Date("TIMESTAMP"),
|
|
38
|
+
* SubmittedAfter: new Date("TIMESTAMP"),
|
|
39
|
+
* };
|
|
31
40
|
* const command = new ListFHIRExportJobsCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface ListFHIRImportJobsCommandOutput extends ListFHIRImportJobsRespo
|
|
|
28
28
|
* import { HealthLakeClient, ListFHIRImportJobsCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, ListFHIRImportJobsCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // ListFHIRImportJobsRequest
|
|
32
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* JobName: "STRING_VALUE",
|
|
36
|
+
* JobStatus: "STRING_VALUE",
|
|
37
|
+
* SubmittedBefore: new Date("TIMESTAMP"),
|
|
38
|
+
* SubmittedAfter: new Date("TIMESTAMP"),
|
|
39
|
+
* };
|
|
31
40
|
* const command = new ListFHIRImportJobsCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
28
28
|
* import { HealthLakeClient, ListTagsForResourceCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // ListTagsForResourceRequest
|
|
32
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface StartFHIRExportJobCommandOutput extends StartFHIRExportJobRespo
|
|
|
26
26
|
* import { HealthLakeClient, StartFHIRExportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, StartFHIRExportJobCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // StartFHIRExportJobRequest
|
|
30
|
+
* JobName: "STRING_VALUE",
|
|
31
|
+
* OutputDataConfig: { // OutputDataConfig Union: only one key present
|
|
32
|
+
* S3Configuration: { // S3Configuration
|
|
33
|
+
* S3Uri: "STRING_VALUE", // required
|
|
34
|
+
* KmsKeyId: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* },
|
|
37
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
38
|
+
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
39
|
+
* ClientToken: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
29
41
|
* const command = new StartFHIRExportJobCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobRespo
|
|
|
26
26
|
* import { HealthLakeClient, StartFHIRImportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
27
27
|
* // const { HealthLakeClient, StartFHIRImportJobCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
28
28
|
* const client = new HealthLakeClient(config);
|
|
29
|
+
* const input = { // StartFHIRImportJobRequest
|
|
30
|
+
* JobName: "STRING_VALUE",
|
|
31
|
+
* InputDataConfig: { // InputDataConfig Union: only one key present
|
|
32
|
+
* S3Uri: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* JobOutputDataConfig: { // OutputDataConfig Union: only one key present
|
|
35
|
+
* S3Configuration: { // S3Configuration
|
|
36
|
+
* S3Uri: "STRING_VALUE", // required
|
|
37
|
+
* KmsKeyId: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* },
|
|
40
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
41
|
+
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
42
|
+
* ClientToken: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
29
44
|
* const command = new StartFHIRImportJobCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { HealthLakeClient, TagResourceCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, TagResourceCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
33
|
+
* Tags: [ // TagList // required
|
|
34
|
+
* { // Tag
|
|
35
|
+
* Key: "STRING_VALUE", // required
|
|
36
|
+
* Value: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
31
40
|
* const command = new TagResourceCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
28
|
* import { HealthLakeClient, UntagResourceCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
29
29
|
* // const { HealthLakeClient, UntagResourceCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
30
30
|
* const client = new HealthLakeClient(config);
|
|
31
|
+
* const input = { // UntagResourceRequest
|
|
32
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
33
|
+
* TagKeys: [ // TagKeyList // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
31
37
|
* const command = new UntagResourceCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
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.
|
|
4
|
+
"version": "3.301.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|