@aws-sdk/client-healthlake 3.1065.0 → 3.1067.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/README.md +7 -0
- package/dist-cjs/index.js +32 -0
- package/dist-cjs/schemas/schemas_0.js +41 -4
- package/dist-es/HealthLake.js +2 -0
- package/dist-es/commands/UpdateFHIRDatastoreCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +16 -0
- package/dist-es/schemas/schemas_0.js +39 -2
- package/dist-types/HealthLake.d.ts +7 -0
- package/dist-types/HealthLakeClient.d.ts +3 -2
- package/dist-types/commands/CreateFHIRDatastoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFHIRDatastoreCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFHIRDatastoreCommand.d.ts +12 -1
- package/dist-types/commands/ListFHIRDatastoresCommand.d.ts +13 -2
- package/dist-types/commands/UpdateFHIRDatastoreCommand.d.ts +151 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +32 -0
- package/dist-types/models/models_0.d.ts +94 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/HealthLake.d.ts +17 -0
- package/dist-types/ts3.4/HealthLakeClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/UpdateFHIRDatastoreCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -272,3 +272,10 @@ UntagResource
|
|
|
272
272
|
|
|
273
273
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UntagResourceCommandOutput/)
|
|
274
274
|
</details>
|
|
275
|
+
<details>
|
|
276
|
+
<summary>
|
|
277
|
+
UpdateFHIRDatastore
|
|
278
|
+
</summary>
|
|
279
|
+
|
|
280
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UpdateFHIRDatastoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateFHIRDatastoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateFHIRDatastoreCommandOutput/)
|
|
281
|
+
</details>
|
package/dist-cjs/index.js
CHANGED
|
@@ -264,6 +264,18 @@ class UntagResourceCommand extends client.Command
|
|
|
264
264
|
.build() {
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
+
class UpdateFHIRDatastoreCommand extends client.Command
|
|
268
|
+
.classBuilder()
|
|
269
|
+
.ep(commonParams)
|
|
270
|
+
.m(function (Command, cs, config, o) {
|
|
271
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
|
+
})
|
|
273
|
+
.s("HealthLake", "UpdateFHIRDatastore", {})
|
|
274
|
+
.n("HealthLakeClient", "UpdateFHIRDatastoreCommand")
|
|
275
|
+
.sc(schemas_0.UpdateFHIRDatastore$)
|
|
276
|
+
.build() {
|
|
277
|
+
}
|
|
278
|
+
|
|
267
279
|
const paginateListFHIRDatastores = core.createPaginator(HealthLakeClient, ListFHIRDatastoresCommand, "NextToken", "NextToken", "MaxResults");
|
|
268
280
|
|
|
269
281
|
const paginateListFHIRExportJobs = core.createPaginator(HealthLakeClient, ListFHIRExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -476,6 +488,7 @@ const commands = {
|
|
|
476
488
|
StartFHIRImportJobCommand,
|
|
477
489
|
TagResourceCommand,
|
|
478
490
|
UntagResourceCommand,
|
|
491
|
+
UpdateFHIRDatastoreCommand,
|
|
479
492
|
};
|
|
480
493
|
const paginators = {
|
|
481
494
|
paginateListFHIRDatastores,
|
|
@@ -492,6 +505,14 @@ class HealthLake extends HealthLakeClient {
|
|
|
492
505
|
}
|
|
493
506
|
client.createAggregatedClient(commands, HealthLake, { paginators, waiters });
|
|
494
507
|
|
|
508
|
+
const AnalyticsStatus = {
|
|
509
|
+
DISABLED: "DISABLED",
|
|
510
|
+
DISABLING: "DISABLING",
|
|
511
|
+
ENABLED: "ENABLED",
|
|
512
|
+
ENABLING: "ENABLING",
|
|
513
|
+
PAUSED: "PAUSED",
|
|
514
|
+
PAUSING: "PAUSING",
|
|
515
|
+
};
|
|
495
516
|
const AuthorizationStrategy = {
|
|
496
517
|
AWS_AUTH: "AWS_AUTH",
|
|
497
518
|
SMARTV1: "SMART_ON_FHIR_V1",
|
|
@@ -513,11 +534,19 @@ const DatastoreStatus = {
|
|
|
513
534
|
CREATING: "CREATING",
|
|
514
535
|
DELETED: "DELETED",
|
|
515
536
|
DELETING: "DELETING",
|
|
537
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
538
|
+
UPDATING: "UPDATING",
|
|
516
539
|
};
|
|
517
540
|
const ErrorCategory = {
|
|
518
541
|
NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
|
|
519
542
|
RETRYABLE_ERROR: "RETRYABLE_ERROR",
|
|
520
543
|
};
|
|
544
|
+
const NlpStatus = {
|
|
545
|
+
DISABLED: "DISABLED",
|
|
546
|
+
DISABLING: "DISABLING",
|
|
547
|
+
ENABLED: "ENABLED",
|
|
548
|
+
ENABLING: "ENABLING",
|
|
549
|
+
};
|
|
521
550
|
const JobStatus = {
|
|
522
551
|
CANCEL_COMPLETED: "CANCEL_COMPLETED",
|
|
523
552
|
CANCEL_FAILED: "CANCEL_FAILED",
|
|
@@ -539,6 +568,7 @@ const ValidationLevel = {
|
|
|
539
568
|
exports.$Command = client.Command;
|
|
540
569
|
exports.__Client = client.Client;
|
|
541
570
|
exports.HealthLakeServiceException = HealthLakeServiceException.HealthLakeServiceException;
|
|
571
|
+
exports.AnalyticsStatus = AnalyticsStatus;
|
|
542
572
|
exports.AuthorizationStrategy = AuthorizationStrategy;
|
|
543
573
|
exports.CmkType = CmkType;
|
|
544
574
|
exports.CreateFHIRDatastoreCommand = CreateFHIRDatastoreCommand;
|
|
@@ -556,11 +586,13 @@ exports.ListFHIRDatastoresCommand = ListFHIRDatastoresCommand;
|
|
|
556
586
|
exports.ListFHIRExportJobsCommand = ListFHIRExportJobsCommand;
|
|
557
587
|
exports.ListFHIRImportJobsCommand = ListFHIRImportJobsCommand;
|
|
558
588
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
589
|
+
exports.NlpStatus = NlpStatus;
|
|
559
590
|
exports.PreloadDataType = PreloadDataType;
|
|
560
591
|
exports.StartFHIRExportJobCommand = StartFHIRExportJobCommand;
|
|
561
592
|
exports.StartFHIRImportJobCommand = StartFHIRImportJobCommand;
|
|
562
593
|
exports.TagResourceCommand = TagResourceCommand;
|
|
563
594
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
595
|
+
exports.UpdateFHIRDatastoreCommand = UpdateFHIRDatastoreCommand;
|
|
564
596
|
exports.ValidationLevel = ValidationLevel;
|
|
565
597
|
exports.paginateListFHIRDatastores = paginateListFHIRDatastores;
|
|
566
598
|
exports.paginateListFHIRExportJobs = paginateListFHIRExportJobs;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UntagResource$ = exports.TagResource$ = exports.StartFHIRImportJob$ = exports.StartFHIRExportJob$ = exports.ListTagsForResource$ = exports.ListFHIRImportJobs$ = exports.ListFHIRExportJobs$ = exports.ListFHIRDatastores$ = exports.DescribeFHIRImportJob$ = exports.DescribeFHIRExportJob$ = exports.DescribeFHIRDatastore$ = void 0;
|
|
3
|
+
exports.UpdateFHIRDatastoreRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.StartFHIRImportJobResponse$ = exports.StartFHIRImportJobRequest$ = exports.StartFHIRExportJobResponse$ = exports.StartFHIRExportJobRequest$ = exports.SseConfiguration$ = exports.S3Configuration$ = exports.ProfileConfiguration$ = exports.PreloadDataConfig$ = exports.NlpConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListFHIRImportJobsResponse$ = exports.ListFHIRImportJobsRequest$ = exports.ListFHIRExportJobsResponse$ = exports.ListFHIRExportJobsRequest$ = exports.ListFHIRDatastoresResponse$ = exports.ListFHIRDatastoresRequest$ = exports.KmsEncryptionConfig$ = exports.JobProgressReport$ = exports.ImportJobProperties$ = exports.IdentityProviderConfiguration$ = exports.ExportJobProperties$ = exports.ErrorCause$ = exports.DescribeFHIRImportJobResponse$ = exports.DescribeFHIRImportJobRequest$ = exports.DescribeFHIRExportJobResponse$ = exports.DescribeFHIRExportJobRequest$ = exports.DescribeFHIRDatastoreResponse$ = exports.DescribeFHIRDatastoreRequest$ = exports.DeleteFHIRDatastoreResponse$ = exports.DeleteFHIRDatastoreRequest$ = exports.DatastoreProperties$ = exports.DatastoreFilter$ = exports.CreateFHIRDatastoreResponse$ = exports.CreateFHIRDatastoreRequest$ = exports.AnalyticsConfiguration$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.HealthLakeServiceException$ = void 0;
|
|
4
|
+
exports.UpdateFHIRDatastore$ = exports.UntagResource$ = exports.TagResource$ = exports.StartFHIRImportJob$ = exports.StartFHIRExportJob$ = exports.ListTagsForResource$ = exports.ListFHIRImportJobs$ = exports.ListFHIRExportJobs$ = exports.ListFHIRDatastores$ = exports.DescribeFHIRImportJob$ = exports.DescribeFHIRExportJob$ = exports.DescribeFHIRDatastore$ = exports.DeleteFHIRDatastore$ = exports.CreateFHIRDatastore$ = exports.OutputDataConfig$ = exports.InputDataConfig$ = exports.UpdateFHIRDatastoreResponse$ = void 0;
|
|
5
|
+
const _AC = "AnalyticsConfiguration";
|
|
5
6
|
const _ADE = "AccessDeniedException";
|
|
6
7
|
const _AS = "AuthorizationStrategy";
|
|
7
8
|
const _CA = "CreatedAfter";
|
|
@@ -33,6 +34,7 @@ const _DI = "DatastoreId";
|
|
|
33
34
|
const _DN = "DatastoreName";
|
|
34
35
|
const _DP = "DatastoreProperties";
|
|
35
36
|
const _DPL = "DatastorePropertiesList";
|
|
37
|
+
const _DPe = "DefaultProfiles";
|
|
36
38
|
const _DS = "DatastoreStatus";
|
|
37
39
|
const _DTV = "DatastoreTypeVersion";
|
|
38
40
|
const _EC = "ErrorCause";
|
|
@@ -72,12 +74,15 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
72
74
|
const _M = "Message";
|
|
73
75
|
const _MR = "MaxResults";
|
|
74
76
|
const _Me = "Metadata";
|
|
77
|
+
const _NC = "NlpConfiguration";
|
|
75
78
|
const _NT = "NextToken";
|
|
76
79
|
const _ODC = "OutputDataConfig";
|
|
80
|
+
const _PC = "ProfileConfiguration";
|
|
77
81
|
const _PDC = "PreloadDataConfig";
|
|
78
82
|
const _PDT = "PreloadDataType";
|
|
79
83
|
const _RARN = "ResourceARN";
|
|
80
84
|
const _RNFE = "ResourceNotFoundException";
|
|
85
|
+
const _S = "Status";
|
|
81
86
|
const _SA = "SubmittedAfter";
|
|
82
87
|
const _SB = "SubmittedBefore";
|
|
83
88
|
const _SC = "SseConfiguration";
|
|
@@ -106,6 +111,9 @@ const _TRRa = "TagResourceResponse";
|
|
|
106
111
|
const _TSOSFIMB = "TotalSizeOfScannedFilesInMB";
|
|
107
112
|
const _Ta = "Tag";
|
|
108
113
|
const _Th = "Throughput";
|
|
114
|
+
const _UFHIRD = "UpdateFHIRDatastore";
|
|
115
|
+
const _UFHIRDR = "UpdateFHIRDatastoreRequest";
|
|
116
|
+
const _UFHIRDRp = "UpdateFHIRDatastoreResponse";
|
|
109
117
|
const _UR = "UntagResource";
|
|
110
118
|
const _URR = "UntagResourceRequest";
|
|
111
119
|
const _URRn = "UntagResourceResponse";
|
|
@@ -165,6 +173,11 @@ exports.errorTypeRegistries = [
|
|
|
165
173
|
_s_registry,
|
|
166
174
|
n0_registry,
|
|
167
175
|
];
|
|
176
|
+
exports.AnalyticsConfiguration$ = [3, n0, _AC,
|
|
177
|
+
0,
|
|
178
|
+
[_S],
|
|
179
|
+
[0]
|
|
180
|
+
];
|
|
168
181
|
exports.CreateFHIRDatastoreRequest$ = [3, n0, _CFHIRDR,
|
|
169
182
|
0,
|
|
170
183
|
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC],
|
|
@@ -182,8 +195,8 @@ exports.DatastoreFilter$ = [3, n0, _DF,
|
|
|
182
195
|
];
|
|
183
196
|
exports.DatastoreProperties$ = [3, n0, _DP,
|
|
184
197
|
0,
|
|
185
|
-
[_DI, _DA, _DS, _DTV, _DE, _DN, _CAr, _SC, _PDC, _IPC, _EC],
|
|
186
|
-
[0, 0, 0, 0, 0, 0, 4, () => exports.SseConfiguration$, () => exports.PreloadDataConfig$, () => exports.IdentityProviderConfiguration$, () => exports.ErrorCause$], 5
|
|
198
|
+
[_DI, _DA, _DS, _DTV, _DE, _DN, _CAr, _SC, _PDC, _IPC, _EC, _NC, _AC, _PC],
|
|
199
|
+
[0, 0, 0, 0, 0, 0, 4, () => exports.SseConfiguration$, () => exports.PreloadDataConfig$, () => exports.IdentityProviderConfiguration$, () => exports.ErrorCause$, () => exports.NlpConfiguration$, () => exports.AnalyticsConfiguration$, () => exports.ProfileConfiguration$], 5
|
|
187
200
|
];
|
|
188
201
|
exports.DeleteFHIRDatastoreRequest$ = [3, n0, _DFHIRDR,
|
|
189
202
|
0,
|
|
@@ -295,11 +308,21 @@ exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
295
308
|
[_T],
|
|
296
309
|
[() => TagList]
|
|
297
310
|
];
|
|
311
|
+
exports.NlpConfiguration$ = [3, n0, _NC,
|
|
312
|
+
0,
|
|
313
|
+
[_S],
|
|
314
|
+
[0]
|
|
315
|
+
];
|
|
298
316
|
exports.PreloadDataConfig$ = [3, n0, _PDC,
|
|
299
317
|
0,
|
|
300
318
|
[_PDT],
|
|
301
319
|
[0], 1
|
|
302
320
|
];
|
|
321
|
+
exports.ProfileConfiguration$ = [3, n0, _PC,
|
|
322
|
+
0,
|
|
323
|
+
[_DPe],
|
|
324
|
+
[64 | 0]
|
|
325
|
+
];
|
|
303
326
|
exports.S3Configuration$ = [3, n0, _SCo,
|
|
304
327
|
0,
|
|
305
328
|
[_SU, _KKI],
|
|
@@ -355,9 +378,20 @@ exports.UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
355
378
|
[],
|
|
356
379
|
[]
|
|
357
380
|
];
|
|
381
|
+
exports.UpdateFHIRDatastoreRequest$ = [3, n0, _UFHIRDR,
|
|
382
|
+
0,
|
|
383
|
+
[_DI, _DN, _AC, _NC, _PC, _IPC],
|
|
384
|
+
[0, 0, () => exports.AnalyticsConfiguration$, () => exports.NlpConfiguration$, () => exports.ProfileConfiguration$, () => exports.IdentityProviderConfiguration$], 1
|
|
385
|
+
];
|
|
386
|
+
exports.UpdateFHIRDatastoreResponse$ = [3, n0, _UFHIRDRp,
|
|
387
|
+
0,
|
|
388
|
+
[_DP],
|
|
389
|
+
[() => exports.DatastoreProperties$], 1
|
|
390
|
+
];
|
|
358
391
|
var DatastorePropertiesList = [1, n0, _DPL,
|
|
359
392
|
0, () => exports.DatastoreProperties$
|
|
360
393
|
];
|
|
394
|
+
var DefaultProfiles = 64 | 0;
|
|
361
395
|
var ExportJobPropertiesList = [1, n0, _EJPL,
|
|
362
396
|
0, () => exports.ExportJobProperties$
|
|
363
397
|
];
|
|
@@ -417,3 +451,6 @@ exports.TagResource$ = [9, n0, _TR,
|
|
|
417
451
|
exports.UntagResource$ = [9, n0, _UR,
|
|
418
452
|
0, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
|
|
419
453
|
];
|
|
454
|
+
exports.UpdateFHIRDatastore$ = [9, n0, _UFHIRD,
|
|
455
|
+
0, () => exports.UpdateFHIRDatastoreRequest$, () => exports.UpdateFHIRDatastoreResponse$
|
|
456
|
+
];
|
package/dist-es/HealthLake.js
CHANGED
|
@@ -12,6 +12,7 @@ import { StartFHIRExportJobCommand, } from "./commands/StartFHIRExportJobCommand
|
|
|
12
12
|
import { StartFHIRImportJobCommand, } from "./commands/StartFHIRImportJobCommand";
|
|
13
13
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
14
14
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
15
|
+
import { UpdateFHIRDatastoreCommand, } from "./commands/UpdateFHIRDatastoreCommand";
|
|
15
16
|
import { HealthLakeClient } from "./HealthLakeClient";
|
|
16
17
|
import { paginateListFHIRDatastores } from "./pagination/ListFHIRDatastoresPaginator";
|
|
17
18
|
import { paginateListFHIRExportJobs } from "./pagination/ListFHIRExportJobsPaginator";
|
|
@@ -34,6 +35,7 @@ const commands = {
|
|
|
34
35
|
StartFHIRImportJobCommand,
|
|
35
36
|
TagResourceCommand,
|
|
36
37
|
UntagResourceCommand,
|
|
38
|
+
UpdateFHIRDatastoreCommand,
|
|
37
39
|
};
|
|
38
40
|
const paginators = {
|
|
39
41
|
paginateListFHIRDatastores,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateFHIRDatastore$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateFHIRDatastoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("HealthLake", "UpdateFHIRDatastore", {})
|
|
13
|
+
.n("HealthLakeClient", "UpdateFHIRDatastoreCommand")
|
|
14
|
+
.sc(UpdateFHIRDatastore$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
export const AnalyticsStatus = {
|
|
2
|
+
DISABLED: "DISABLED",
|
|
3
|
+
DISABLING: "DISABLING",
|
|
4
|
+
ENABLED: "ENABLED",
|
|
5
|
+
ENABLING: "ENABLING",
|
|
6
|
+
PAUSED: "PAUSED",
|
|
7
|
+
PAUSING: "PAUSING",
|
|
8
|
+
};
|
|
1
9
|
export const AuthorizationStrategy = {
|
|
2
10
|
AWS_AUTH: "AWS_AUTH",
|
|
3
11
|
SMARTV1: "SMART_ON_FHIR_V1",
|
|
@@ -19,11 +27,19 @@ export const DatastoreStatus = {
|
|
|
19
27
|
CREATING: "CREATING",
|
|
20
28
|
DELETED: "DELETED",
|
|
21
29
|
DELETING: "DELETING",
|
|
30
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
31
|
+
UPDATING: "UPDATING",
|
|
22
32
|
};
|
|
23
33
|
export const ErrorCategory = {
|
|
24
34
|
NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
|
|
25
35
|
RETRYABLE_ERROR: "RETRYABLE_ERROR",
|
|
26
36
|
};
|
|
37
|
+
export const NlpStatus = {
|
|
38
|
+
DISABLED: "DISABLED",
|
|
39
|
+
DISABLING: "DISABLING",
|
|
40
|
+
ENABLED: "ENABLED",
|
|
41
|
+
ENABLING: "ENABLING",
|
|
42
|
+
};
|
|
27
43
|
export const JobStatus = {
|
|
28
44
|
CANCEL_COMPLETED: "CANCEL_COMPLETED",
|
|
29
45
|
CANCEL_FAILED: "CANCEL_FAILED",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
const _AC = "AnalyticsConfiguration";
|
|
1
2
|
const _ADE = "AccessDeniedException";
|
|
2
3
|
const _AS = "AuthorizationStrategy";
|
|
3
4
|
const _CA = "CreatedAfter";
|
|
@@ -29,6 +30,7 @@ const _DI = "DatastoreId";
|
|
|
29
30
|
const _DN = "DatastoreName";
|
|
30
31
|
const _DP = "DatastoreProperties";
|
|
31
32
|
const _DPL = "DatastorePropertiesList";
|
|
33
|
+
const _DPe = "DefaultProfiles";
|
|
32
34
|
const _DS = "DatastoreStatus";
|
|
33
35
|
const _DTV = "DatastoreTypeVersion";
|
|
34
36
|
const _EC = "ErrorCause";
|
|
@@ -68,12 +70,15 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
68
70
|
const _M = "Message";
|
|
69
71
|
const _MR = "MaxResults";
|
|
70
72
|
const _Me = "Metadata";
|
|
73
|
+
const _NC = "NlpConfiguration";
|
|
71
74
|
const _NT = "NextToken";
|
|
72
75
|
const _ODC = "OutputDataConfig";
|
|
76
|
+
const _PC = "ProfileConfiguration";
|
|
73
77
|
const _PDC = "PreloadDataConfig";
|
|
74
78
|
const _PDT = "PreloadDataType";
|
|
75
79
|
const _RARN = "ResourceARN";
|
|
76
80
|
const _RNFE = "ResourceNotFoundException";
|
|
81
|
+
const _S = "Status";
|
|
77
82
|
const _SA = "SubmittedAfter";
|
|
78
83
|
const _SB = "SubmittedBefore";
|
|
79
84
|
const _SC = "SseConfiguration";
|
|
@@ -102,6 +107,9 @@ const _TRRa = "TagResourceResponse";
|
|
|
102
107
|
const _TSOSFIMB = "TotalSizeOfScannedFilesInMB";
|
|
103
108
|
const _Ta = "Tag";
|
|
104
109
|
const _Th = "Throughput";
|
|
110
|
+
const _UFHIRD = "UpdateFHIRDatastore";
|
|
111
|
+
const _UFHIRDR = "UpdateFHIRDatastoreRequest";
|
|
112
|
+
const _UFHIRDRp = "UpdateFHIRDatastoreResponse";
|
|
105
113
|
const _UR = "UntagResource";
|
|
106
114
|
const _URR = "UntagResourceRequest";
|
|
107
115
|
const _URRn = "UntagResourceResponse";
|
|
@@ -161,6 +169,11 @@ export const errorTypeRegistries = [
|
|
|
161
169
|
_s_registry,
|
|
162
170
|
n0_registry,
|
|
163
171
|
];
|
|
172
|
+
export var AnalyticsConfiguration$ = [3, n0, _AC,
|
|
173
|
+
0,
|
|
174
|
+
[_S],
|
|
175
|
+
[0]
|
|
176
|
+
];
|
|
164
177
|
export var CreateFHIRDatastoreRequest$ = [3, n0, _CFHIRDR,
|
|
165
178
|
0,
|
|
166
179
|
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC],
|
|
@@ -178,8 +191,8 @@ export var DatastoreFilter$ = [3, n0, _DF,
|
|
|
178
191
|
];
|
|
179
192
|
export var DatastoreProperties$ = [3, n0, _DP,
|
|
180
193
|
0,
|
|
181
|
-
[_DI, _DA, _DS, _DTV, _DE, _DN, _CAr, _SC, _PDC, _IPC, _EC],
|
|
182
|
-
[0, 0, 0, 0, 0, 0, 4, () => SseConfiguration$, () => PreloadDataConfig$, () => IdentityProviderConfiguration$, () => ErrorCause$], 5
|
|
194
|
+
[_DI, _DA, _DS, _DTV, _DE, _DN, _CAr, _SC, _PDC, _IPC, _EC, _NC, _AC, _PC],
|
|
195
|
+
[0, 0, 0, 0, 0, 0, 4, () => SseConfiguration$, () => PreloadDataConfig$, () => IdentityProviderConfiguration$, () => ErrorCause$, () => NlpConfiguration$, () => AnalyticsConfiguration$, () => ProfileConfiguration$], 5
|
|
183
196
|
];
|
|
184
197
|
export var DeleteFHIRDatastoreRequest$ = [3, n0, _DFHIRDR,
|
|
185
198
|
0,
|
|
@@ -291,11 +304,21 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
291
304
|
[_T],
|
|
292
305
|
[() => TagList]
|
|
293
306
|
];
|
|
307
|
+
export var NlpConfiguration$ = [3, n0, _NC,
|
|
308
|
+
0,
|
|
309
|
+
[_S],
|
|
310
|
+
[0]
|
|
311
|
+
];
|
|
294
312
|
export var PreloadDataConfig$ = [3, n0, _PDC,
|
|
295
313
|
0,
|
|
296
314
|
[_PDT],
|
|
297
315
|
[0], 1
|
|
298
316
|
];
|
|
317
|
+
export var ProfileConfiguration$ = [3, n0, _PC,
|
|
318
|
+
0,
|
|
319
|
+
[_DPe],
|
|
320
|
+
[64 | 0]
|
|
321
|
+
];
|
|
299
322
|
export var S3Configuration$ = [3, n0, _SCo,
|
|
300
323
|
0,
|
|
301
324
|
[_SU, _KKI],
|
|
@@ -351,9 +374,20 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
351
374
|
[],
|
|
352
375
|
[]
|
|
353
376
|
];
|
|
377
|
+
export var UpdateFHIRDatastoreRequest$ = [3, n0, _UFHIRDR,
|
|
378
|
+
0,
|
|
379
|
+
[_DI, _DN, _AC, _NC, _PC, _IPC],
|
|
380
|
+
[0, 0, () => AnalyticsConfiguration$, () => NlpConfiguration$, () => ProfileConfiguration$, () => IdentityProviderConfiguration$], 1
|
|
381
|
+
];
|
|
382
|
+
export var UpdateFHIRDatastoreResponse$ = [3, n0, _UFHIRDRp,
|
|
383
|
+
0,
|
|
384
|
+
[_DP],
|
|
385
|
+
[() => DatastoreProperties$], 1
|
|
386
|
+
];
|
|
354
387
|
var DatastorePropertiesList = [1, n0, _DPL,
|
|
355
388
|
0, () => DatastoreProperties$
|
|
356
389
|
];
|
|
390
|
+
var DefaultProfiles = 64 | 0;
|
|
357
391
|
var ExportJobPropertiesList = [1, n0, _EJPL,
|
|
358
392
|
0, () => ExportJobProperties$
|
|
359
393
|
];
|
|
@@ -413,3 +447,6 @@ export var TagResource$ = [9, n0, _TR,
|
|
|
413
447
|
export var UntagResource$ = [9, n0, _UR,
|
|
414
448
|
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
415
449
|
];
|
|
450
|
+
export var UpdateFHIRDatastore$ = [9, n0, _UFHIRD,
|
|
451
|
+
0, () => UpdateFHIRDatastoreRequest$, () => UpdateFHIRDatastoreResponse$
|
|
452
|
+
];
|
|
@@ -13,6 +13,7 @@ import { type StartFHIRExportJobCommandInput, type StartFHIRExportJobCommandOutp
|
|
|
13
13
|
import { type StartFHIRImportJobCommandInput, type StartFHIRImportJobCommandOutput } from "./commands/StartFHIRImportJobCommand";
|
|
14
14
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
15
15
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
|
+
import { type UpdateFHIRDatastoreCommandInput, type UpdateFHIRDatastoreCommandOutput } from "./commands/UpdateFHIRDatastoreCommand";
|
|
16
17
|
import { HealthLakeClient } from "./HealthLakeClient";
|
|
17
18
|
export interface HealthLake {
|
|
18
19
|
/**
|
|
@@ -94,6 +95,12 @@ export interface HealthLake {
|
|
|
94
95
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
95
96
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
96
97
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
98
|
+
/**
|
|
99
|
+
* @see {@link UpdateFHIRDatastoreCommand}
|
|
100
|
+
*/
|
|
101
|
+
updateFHIRDatastore(args: UpdateFHIRDatastoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFHIRDatastoreCommandOutput>;
|
|
102
|
+
updateFHIRDatastore(args: UpdateFHIRDatastoreCommandInput, cb: (err: any, data?: UpdateFHIRDatastoreCommandOutput) => void): void;
|
|
103
|
+
updateFHIRDatastore(args: UpdateFHIRDatastoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFHIRDatastoreCommandOutput) => void): void;
|
|
97
104
|
/**
|
|
98
105
|
* @see {@link ListFHIRDatastoresCommand}
|
|
99
106
|
* @param args - command input.
|
|
@@ -19,17 +19,18 @@ import type { StartFHIRExportJobCommandInput, StartFHIRExportJobCommandOutput }
|
|
|
19
19
|
import type { StartFHIRImportJobCommandInput, StartFHIRImportJobCommandOutput } from "./commands/StartFHIRImportJobCommand";
|
|
20
20
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
21
21
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
22
|
+
import type { UpdateFHIRDatastoreCommandInput, UpdateFHIRDatastoreCommandOutput } from "./commands/UpdateFHIRDatastoreCommand";
|
|
22
23
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
23
24
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
24
25
|
export { __Client };
|
|
25
26
|
/**
|
|
26
27
|
* @public
|
|
27
28
|
*/
|
|
28
|
-
export type ServiceInputTypes = CreateFHIRDatastoreCommandInput | DeleteFHIRDatastoreCommandInput | DescribeFHIRDatastoreCommandInput | DescribeFHIRExportJobCommandInput | DescribeFHIRImportJobCommandInput | ListFHIRDatastoresCommandInput | ListFHIRExportJobsCommandInput | ListFHIRImportJobsCommandInput | ListTagsForResourceCommandInput | StartFHIRExportJobCommandInput | StartFHIRImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
29
|
+
export type ServiceInputTypes = CreateFHIRDatastoreCommandInput | DeleteFHIRDatastoreCommandInput | DescribeFHIRDatastoreCommandInput | DescribeFHIRExportJobCommandInput | DescribeFHIRImportJobCommandInput | ListFHIRDatastoresCommandInput | ListFHIRExportJobsCommandInput | ListFHIRImportJobsCommandInput | ListTagsForResourceCommandInput | StartFHIRExportJobCommandInput | StartFHIRImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFHIRDatastoreCommandInput;
|
|
29
30
|
/**
|
|
30
31
|
* @public
|
|
31
32
|
*/
|
|
32
|
-
export type ServiceOutputTypes = CreateFHIRDatastoreCommandOutput | DeleteFHIRDatastoreCommandOutput | DescribeFHIRDatastoreCommandOutput | DescribeFHIRExportJobCommandOutput | DescribeFHIRImportJobCommandOutput | ListFHIRDatastoresCommandOutput | ListFHIRExportJobsCommandOutput | ListFHIRImportJobsCommandOutput | ListTagsForResourceCommandOutput | StartFHIRExportJobCommandOutput | StartFHIRImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
33
|
+
export type ServiceOutputTypes = CreateFHIRDatastoreCommandOutput | DeleteFHIRDatastoreCommandOutput | DescribeFHIRDatastoreCommandOutput | DescribeFHIRExportJobCommandOutput | DescribeFHIRImportJobCommandOutput | ListFHIRDatastoresCommandOutput | ListFHIRExportJobsCommandOutput | ListFHIRImportJobsCommandOutput | ListTagsForResourceCommandOutput | StartFHIRExportJobCommandOutput | StartFHIRImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFHIRDatastoreCommandOutput;
|
|
33
34
|
/**
|
|
34
35
|
* @public
|
|
35
36
|
*/
|
|
@@ -69,7 +69,7 @@ declare const CreateFHIRDatastoreCommand_base: {
|
|
|
69
69
|
* // { // CreateFHIRDatastoreResponse
|
|
70
70
|
* // DatastoreId: "STRING_VALUE", // required
|
|
71
71
|
* // DatastoreArn: "STRING_VALUE", // required
|
|
72
|
-
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED", // required
|
|
72
|
+
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required
|
|
73
73
|
* // DatastoreEndpoint: "STRING_VALUE", // required
|
|
74
74
|
* // };
|
|
75
75
|
*
|
|
@@ -46,7 +46,7 @@ declare const DeleteFHIRDatastoreCommand_base: {
|
|
|
46
46
|
* // { // DeleteFHIRDatastoreResponse
|
|
47
47
|
* // DatastoreId: "STRING_VALUE", // required
|
|
48
48
|
* // DatastoreArn: "STRING_VALUE", // required
|
|
49
|
-
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED", // required
|
|
49
|
+
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required
|
|
50
50
|
* // DatastoreEndpoint: "STRING_VALUE", // required
|
|
51
51
|
* // };
|
|
52
52
|
*
|
|
@@ -48,7 +48,7 @@ declare const DescribeFHIRDatastoreCommand_base: {
|
|
|
48
48
|
* // DatastoreId: "STRING_VALUE", // required
|
|
49
49
|
* // DatastoreArn: "STRING_VALUE", // required
|
|
50
50
|
* // DatastoreName: "STRING_VALUE",
|
|
51
|
-
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED", // required
|
|
51
|
+
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required
|
|
52
52
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
53
53
|
* // DatastoreTypeVersion: "R4", // required
|
|
54
54
|
* // DatastoreEndpoint: "STRING_VALUE", // required
|
|
@@ -71,6 +71,17 @@ declare const DescribeFHIRDatastoreCommand_base: {
|
|
|
71
71
|
* // ErrorMessage: "STRING_VALUE",
|
|
72
72
|
* // ErrorCategory: "RETRYABLE_ERROR" || "NON_RETRYABLE_ERROR",
|
|
73
73
|
* // },
|
|
74
|
+
* // NlpConfiguration: { // NlpConfiguration
|
|
75
|
+
* // Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
76
|
+
* // },
|
|
77
|
+
* // AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
78
|
+
* // Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
79
|
+
* // },
|
|
80
|
+
* // ProfileConfiguration: { // ProfileConfiguration
|
|
81
|
+
* // DefaultProfiles: [ // DefaultProfiles
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
74
85
|
* // },
|
|
75
86
|
* // };
|
|
76
87
|
*
|
|
@@ -42,7 +42,7 @@ declare const ListFHIRDatastoresCommand_base: {
|
|
|
42
42
|
* const input = { // ListFHIRDatastoresRequest
|
|
43
43
|
* Filter: { // DatastoreFilter
|
|
44
44
|
* DatastoreName: "STRING_VALUE",
|
|
45
|
-
* DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED",
|
|
45
|
+
* DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
46
46
|
* CreatedBefore: new Date("TIMESTAMP"),
|
|
47
47
|
* CreatedAfter: new Date("TIMESTAMP"),
|
|
48
48
|
* },
|
|
@@ -57,7 +57,7 @@ declare const ListFHIRDatastoresCommand_base: {
|
|
|
57
57
|
* // DatastoreId: "STRING_VALUE", // required
|
|
58
58
|
* // DatastoreArn: "STRING_VALUE", // required
|
|
59
59
|
* // DatastoreName: "STRING_VALUE",
|
|
60
|
-
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED", // required
|
|
60
|
+
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required
|
|
61
61
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
62
62
|
* // DatastoreTypeVersion: "R4", // required
|
|
63
63
|
* // DatastoreEndpoint: "STRING_VALUE", // required
|
|
@@ -80,6 +80,17 @@ declare const ListFHIRDatastoresCommand_base: {
|
|
|
80
80
|
* // ErrorMessage: "STRING_VALUE",
|
|
81
81
|
* // ErrorCategory: "RETRYABLE_ERROR" || "NON_RETRYABLE_ERROR",
|
|
82
82
|
* // },
|
|
83
|
+
* // NlpConfiguration: { // NlpConfiguration
|
|
84
|
+
* // Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
85
|
+
* // },
|
|
86
|
+
* // AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
87
|
+
* // Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
88
|
+
* // },
|
|
89
|
+
* // ProfileConfiguration: { // ProfileConfiguration
|
|
90
|
+
* // DefaultProfiles: [ // DefaultProfiles
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
93
|
+
* // },
|
|
83
94
|
* // },
|
|
84
95
|
* // ],
|
|
85
96
|
* // NextToken: "STRING_VALUE",
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient";
|
|
4
|
+
import type { UpdateFHIRDatastoreRequest, UpdateFHIRDatastoreResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateFHIRDatastoreCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateFHIRDatastoreCommandInput extends UpdateFHIRDatastoreRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateFHIRDatastoreCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateFHIRDatastoreCommandOutput extends UpdateFHIRDatastoreResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateFHIRDatastoreCommand_base: {
|
|
25
|
+
new (input: UpdateFHIRDatastoreCommandInput): import("@smithy/core/client").CommandImpl<UpdateFHIRDatastoreCommandInput, UpdateFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateFHIRDatastoreCommandInput): import("@smithy/core/client").CommandImpl<UpdateFHIRDatastoreCommandInput, UpdateFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <para>Update the properties of a FHIR-enabled data store.</para>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { HealthLakeClient, UpdateFHIRDatastoreCommand } from "@aws-sdk/client-healthlake"; // ES Modules import
|
|
37
|
+
* // const { HealthLakeClient, UpdateFHIRDatastoreCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import
|
|
38
|
+
* // import type { HealthLakeClientConfig } from "@aws-sdk/client-healthlake";
|
|
39
|
+
* const config = {}; // type is HealthLakeClientConfig
|
|
40
|
+
* const client = new HealthLakeClient(config);
|
|
41
|
+
* const input = { // UpdateFHIRDatastoreRequest
|
|
42
|
+
* DatastoreId: "STRING_VALUE", // required
|
|
43
|
+
* DatastoreName: "STRING_VALUE",
|
|
44
|
+
* AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
45
|
+
* Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
46
|
+
* },
|
|
47
|
+
* NlpConfiguration: { // NlpConfiguration
|
|
48
|
+
* Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
49
|
+
* },
|
|
50
|
+
* ProfileConfiguration: { // ProfileConfiguration
|
|
51
|
+
* DefaultProfiles: [ // DefaultProfiles
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* IdentityProviderConfiguration: { // IdentityProviderConfiguration
|
|
56
|
+
* AuthorizationStrategy: "SMART_ON_FHIR_V1" || "SMART_ON_FHIR" || "AWS_AUTH", // required
|
|
57
|
+
* FineGrainedAuthorizationEnabled: true || false,
|
|
58
|
+
* Metadata: "STRING_VALUE",
|
|
59
|
+
* IdpLambdaArn: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* };
|
|
62
|
+
* const command = new UpdateFHIRDatastoreCommand(input);
|
|
63
|
+
* const response = await client.send(command);
|
|
64
|
+
* // { // UpdateFHIRDatastoreResponse
|
|
65
|
+
* // DatastoreProperties: { // DatastoreProperties
|
|
66
|
+
* // DatastoreId: "STRING_VALUE", // required
|
|
67
|
+
* // DatastoreArn: "STRING_VALUE", // required
|
|
68
|
+
* // DatastoreName: "STRING_VALUE",
|
|
69
|
+
* // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required
|
|
70
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
71
|
+
* // DatastoreTypeVersion: "R4", // required
|
|
72
|
+
* // DatastoreEndpoint: "STRING_VALUE", // required
|
|
73
|
+
* // SseConfiguration: { // SseConfiguration
|
|
74
|
+
* // KmsEncryptionConfig: { // KmsEncryptionConfig
|
|
75
|
+
* // CmkType: "CUSTOMER_MANAGED_KMS_KEY" || "AWS_OWNED_KMS_KEY", // required
|
|
76
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // PreloadDataConfig: { // PreloadDataConfig
|
|
80
|
+
* // PreloadDataType: "SYNTHEA", // required
|
|
81
|
+
* // },
|
|
82
|
+
* // IdentityProviderConfiguration: { // IdentityProviderConfiguration
|
|
83
|
+
* // AuthorizationStrategy: "SMART_ON_FHIR_V1" || "SMART_ON_FHIR" || "AWS_AUTH", // required
|
|
84
|
+
* // FineGrainedAuthorizationEnabled: true || false,
|
|
85
|
+
* // Metadata: "STRING_VALUE",
|
|
86
|
+
* // IdpLambdaArn: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ErrorCause: { // ErrorCause
|
|
89
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
90
|
+
* // ErrorCategory: "RETRYABLE_ERROR" || "NON_RETRYABLE_ERROR",
|
|
91
|
+
* // },
|
|
92
|
+
* // NlpConfiguration: { // NlpConfiguration
|
|
93
|
+
* // Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
94
|
+
* // },
|
|
95
|
+
* // AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
96
|
+
* // Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
97
|
+
* // },
|
|
98
|
+
* // ProfileConfiguration: { // ProfileConfiguration
|
|
99
|
+
* // DefaultProfiles: [ // DefaultProfiles
|
|
100
|
+
* // "STRING_VALUE",
|
|
101
|
+
* // ],
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // };
|
|
105
|
+
*
|
|
106
|
+
* ```
|
|
107
|
+
*
|
|
108
|
+
* @param UpdateFHIRDatastoreCommandInput - {@link UpdateFHIRDatastoreCommandInput}
|
|
109
|
+
* @returns {@link UpdateFHIRDatastoreCommandOutput}
|
|
110
|
+
* @see {@link UpdateFHIRDatastoreCommandInput} for command's `input` shape.
|
|
111
|
+
* @see {@link UpdateFHIRDatastoreCommandOutput} for command's `response` shape.
|
|
112
|
+
* @see {@link HealthLakeClientResolvedConfig | config} for HealthLakeClient's `config` shape.
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
115
|
+
* <p>Access is denied. Your account is not authorized to perform this operation.</p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link ConflictException} (client fault)
|
|
118
|
+
* <p>The data store is in a transition state and the user requested action cannot be
|
|
119
|
+
* performed.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link InternalServerException} (server fault)
|
|
122
|
+
* <p>An unknown internal error occurred in the service.</p>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
125
|
+
* <p>The requested data store was not found.</p>
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
128
|
+
* <p>The user has exceeded their maximum number of allowed calls to the given API. </p>
|
|
129
|
+
*
|
|
130
|
+
* @throws {@link ValidationException} (client fault)
|
|
131
|
+
* <p>The user input parameter was invalid.</p>
|
|
132
|
+
*
|
|
133
|
+
* @throws {@link HealthLakeServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
135
|
+
*
|
|
136
|
+
*
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export declare class UpdateFHIRDatastoreCommand extends UpdateFHIRDatastoreCommand_base {
|
|
140
|
+
/** @internal type navigation helper, not in runtime. */
|
|
141
|
+
protected static __types: {
|
|
142
|
+
api: {
|
|
143
|
+
input: UpdateFHIRDatastoreRequest;
|
|
144
|
+
output: UpdateFHIRDatastoreResponse;
|
|
145
|
+
};
|
|
146
|
+
sdk: {
|
|
147
|
+
input: UpdateFHIRDatastoreCommandInput;
|
|
148
|
+
output: UpdateFHIRDatastoreCommandOutput;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
}
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AnalyticsStatus: {
|
|
6
|
+
readonly DISABLED: "DISABLED";
|
|
7
|
+
readonly DISABLING: "DISABLING";
|
|
8
|
+
readonly ENABLED: "ENABLED";
|
|
9
|
+
readonly ENABLING: "ENABLING";
|
|
10
|
+
readonly PAUSED: "PAUSED";
|
|
11
|
+
readonly PAUSING: "PAUSING";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type AnalyticsStatus = (typeof AnalyticsStatus)[keyof typeof AnalyticsStatus];
|
|
1
17
|
/**
|
|
2
18
|
* @public
|
|
3
19
|
* @enum
|
|
@@ -55,6 +71,8 @@ export declare const DatastoreStatus: {
|
|
|
55
71
|
readonly CREATING: "CREATING";
|
|
56
72
|
readonly DELETED: "DELETED";
|
|
57
73
|
readonly DELETING: "DELETING";
|
|
74
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
75
|
+
readonly UPDATING: "UPDATING";
|
|
58
76
|
};
|
|
59
77
|
/**
|
|
60
78
|
* @public
|
|
@@ -72,6 +90,20 @@ export declare const ErrorCategory: {
|
|
|
72
90
|
* @public
|
|
73
91
|
*/
|
|
74
92
|
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
* @enum
|
|
96
|
+
*/
|
|
97
|
+
export declare const NlpStatus: {
|
|
98
|
+
readonly DISABLED: "DISABLED";
|
|
99
|
+
readonly DISABLING: "DISABLING";
|
|
100
|
+
readonly ENABLED: "ENABLED";
|
|
101
|
+
readonly ENABLING: "ENABLING";
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export type NlpStatus = (typeof NlpStatus)[keyof typeof NlpStatus];
|
|
75
107
|
/**
|
|
76
108
|
* @public
|
|
77
109
|
* @enum
|
|
@@ -1,4 +1,15 @@
|
|
|
1
|
-
import type { AuthorizationStrategy, CmkType, DatastoreStatus, ErrorCategory, FHIRVersion, JobStatus, PreloadDataType, ValidationLevel } from "./enums";
|
|
1
|
+
import type { AnalyticsStatus, AuthorizationStrategy, CmkType, DatastoreStatus, ErrorCategory, FHIRVersion, JobStatus, NlpStatus, PreloadDataType, ValidationLevel } from "./enums";
|
|
2
|
+
/**
|
|
3
|
+
* <para>The analytics configuration for a data store.</para>
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface AnalyticsConfiguration {
|
|
7
|
+
/**
|
|
8
|
+
* <para>The status of the analytics configuration.</para>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
Status?: AnalyticsStatus | undefined;
|
|
12
|
+
}
|
|
2
13
|
/**
|
|
3
14
|
* <p>The identity provider configuration selected when the data store was created.</p>
|
|
4
15
|
* @public
|
|
@@ -239,6 +250,28 @@ export interface ErrorCause {
|
|
|
239
250
|
*/
|
|
240
251
|
ErrorCategory?: ErrorCategory | undefined;
|
|
241
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* <para>The natural language processing (NLP) configuration for a data store.</para>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export interface NlpConfiguration {
|
|
258
|
+
/**
|
|
259
|
+
* <para>The status of the NLP configuration.</para>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
Status?: NlpStatus | undefined;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* <para>The profile configuration for a data store.</para>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export interface ProfileConfiguration {
|
|
269
|
+
/**
|
|
270
|
+
* <para>The list of default profiles for the data store.</para>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
DefaultProfiles?: string[] | undefined;
|
|
274
|
+
}
|
|
242
275
|
/**
|
|
243
276
|
* <p>The data store properties.</p>
|
|
244
277
|
* @public
|
|
@@ -301,6 +334,21 @@ export interface DatastoreProperties {
|
|
|
301
334
|
* @public
|
|
302
335
|
*/
|
|
303
336
|
ErrorCause?: ErrorCause | undefined;
|
|
337
|
+
/**
|
|
338
|
+
* <para>The natural language processing (NLP) configuration for the data store.</para>
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
342
|
+
/**
|
|
343
|
+
* <para>The analytics configuration for the data store.</para>
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
347
|
+
/**
|
|
348
|
+
* <para>The profile configuration for the data store.</para>
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
351
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
304
352
|
}
|
|
305
353
|
/**
|
|
306
354
|
* @public
|
|
@@ -975,3 +1023,48 @@ export interface UntagResourceRequest {
|
|
|
975
1023
|
*/
|
|
976
1024
|
export interface UntagResourceResponse {
|
|
977
1025
|
}
|
|
1026
|
+
/**
|
|
1027
|
+
* @public
|
|
1028
|
+
*/
|
|
1029
|
+
export interface UpdateFHIRDatastoreRequest {
|
|
1030
|
+
/**
|
|
1031
|
+
* <para>The data store identifier.</para>
|
|
1032
|
+
* @public
|
|
1033
|
+
*/
|
|
1034
|
+
DatastoreId: string | undefined;
|
|
1035
|
+
/**
|
|
1036
|
+
* <para>The data store name.</para>
|
|
1037
|
+
* @public
|
|
1038
|
+
*/
|
|
1039
|
+
DatastoreName?: string | undefined;
|
|
1040
|
+
/**
|
|
1041
|
+
* <para>The analytics configuration for the data store.</para>
|
|
1042
|
+
* @public
|
|
1043
|
+
*/
|
|
1044
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
1045
|
+
/**
|
|
1046
|
+
* <para>The NLP configuration for the data store.</para>
|
|
1047
|
+
* @public
|
|
1048
|
+
*/
|
|
1049
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
1050
|
+
/**
|
|
1051
|
+
* <para>The profile configuration for the data store.</para>
|
|
1052
|
+
* @public
|
|
1053
|
+
*/
|
|
1054
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
1055
|
+
/**
|
|
1056
|
+
* <para>The identity provider configuration for the data store.</para>
|
|
1057
|
+
* @public
|
|
1058
|
+
*/
|
|
1059
|
+
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
1060
|
+
}
|
|
1061
|
+
/**
|
|
1062
|
+
* @public
|
|
1063
|
+
*/
|
|
1064
|
+
export interface UpdateFHIRDatastoreResponse {
|
|
1065
|
+
/**
|
|
1066
|
+
* <para>The data store properties.</para>
|
|
1067
|
+
* @public
|
|
1068
|
+
*/
|
|
1069
|
+
DatastoreProperties: DatastoreProperties | undefined;
|
|
1070
|
+
}
|
|
@@ -13,6 +13,7 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
13
13
|
*
|
|
14
14
|
*/
|
|
15
15
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
16
|
+
export declare var AnalyticsConfiguration$: StaticStructureSchema;
|
|
16
17
|
export declare var CreateFHIRDatastoreRequest$: StaticStructureSchema;
|
|
17
18
|
export declare var CreateFHIRDatastoreResponse$: StaticStructureSchema;
|
|
18
19
|
export declare var DatastoreFilter$: StaticStructureSchema;
|
|
@@ -39,7 +40,9 @@ export declare var ListFHIRImportJobsRequest$: StaticStructureSchema;
|
|
|
39
40
|
export declare var ListFHIRImportJobsResponse$: StaticStructureSchema;
|
|
40
41
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
41
42
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
43
|
+
export declare var NlpConfiguration$: StaticStructureSchema;
|
|
42
44
|
export declare var PreloadDataConfig$: StaticStructureSchema;
|
|
45
|
+
export declare var ProfileConfiguration$: StaticStructureSchema;
|
|
43
46
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
44
47
|
export declare var SseConfiguration$: StaticStructureSchema;
|
|
45
48
|
export declare var StartFHIRExportJobRequest$: StaticStructureSchema;
|
|
@@ -51,6 +54,8 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
51
54
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
52
55
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
53
56
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
57
|
+
export declare var UpdateFHIRDatastoreRequest$: StaticStructureSchema;
|
|
58
|
+
export declare var UpdateFHIRDatastoreResponse$: StaticStructureSchema;
|
|
54
59
|
export declare var InputDataConfig$: StaticUnionSchema;
|
|
55
60
|
export declare var OutputDataConfig$: StaticUnionSchema;
|
|
56
61
|
export declare var CreateFHIRDatastore$: StaticOperationSchema;
|
|
@@ -66,3 +71,4 @@ export declare var StartFHIRExportJob$: StaticOperationSchema;
|
|
|
66
71
|
export declare var StartFHIRImportJob$: StaticOperationSchema;
|
|
67
72
|
export declare var TagResource$: StaticOperationSchema;
|
|
68
73
|
export declare var UntagResource$: StaticOperationSchema;
|
|
74
|
+
export declare var UpdateFHIRDatastore$: StaticOperationSchema;
|
|
@@ -57,6 +57,10 @@ import {
|
|
|
57
57
|
UntagResourceCommandInput,
|
|
58
58
|
UntagResourceCommandOutput,
|
|
59
59
|
} from "./commands/UntagResourceCommand";
|
|
60
|
+
import {
|
|
61
|
+
UpdateFHIRDatastoreCommandInput,
|
|
62
|
+
UpdateFHIRDatastoreCommandOutput,
|
|
63
|
+
} from "./commands/UpdateFHIRDatastoreCommand";
|
|
60
64
|
import { HealthLakeClient } from "./HealthLakeClient";
|
|
61
65
|
export interface HealthLake {
|
|
62
66
|
createFHIRDatastore(
|
|
@@ -229,6 +233,19 @@ export interface HealthLake {
|
|
|
229
233
|
options: __HttpHandlerOptions,
|
|
230
234
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
231
235
|
): void;
|
|
236
|
+
updateFHIRDatastore(
|
|
237
|
+
args: UpdateFHIRDatastoreCommandInput,
|
|
238
|
+
options?: __HttpHandlerOptions
|
|
239
|
+
): Promise<UpdateFHIRDatastoreCommandOutput>;
|
|
240
|
+
updateFHIRDatastore(
|
|
241
|
+
args: UpdateFHIRDatastoreCommandInput,
|
|
242
|
+
cb: (err: any, data?: UpdateFHIRDatastoreCommandOutput) => void
|
|
243
|
+
): void;
|
|
244
|
+
updateFHIRDatastore(
|
|
245
|
+
args: UpdateFHIRDatastoreCommandInput,
|
|
246
|
+
options: __HttpHandlerOptions,
|
|
247
|
+
cb: (err: any, data?: UpdateFHIRDatastoreCommandOutput) => void
|
|
248
|
+
): void;
|
|
232
249
|
paginateListFHIRDatastores(
|
|
233
250
|
args?: ListFHIRDatastoresCommandInput,
|
|
234
251
|
paginationConfig?: Pick<
|
|
@@ -88,6 +88,10 @@ import {
|
|
|
88
88
|
UntagResourceCommandInput,
|
|
89
89
|
UntagResourceCommandOutput,
|
|
90
90
|
} from "./commands/UntagResourceCommand";
|
|
91
|
+
import {
|
|
92
|
+
UpdateFHIRDatastoreCommandInput,
|
|
93
|
+
UpdateFHIRDatastoreCommandOutput,
|
|
94
|
+
} from "./commands/UpdateFHIRDatastoreCommand";
|
|
91
95
|
import {
|
|
92
96
|
ClientInputEndpointParameters,
|
|
93
97
|
ClientResolvedEndpointParameters,
|
|
@@ -108,7 +112,8 @@ export type ServiceInputTypes =
|
|
|
108
112
|
| StartFHIRExportJobCommandInput
|
|
109
113
|
| StartFHIRImportJobCommandInput
|
|
110
114
|
| TagResourceCommandInput
|
|
111
|
-
| UntagResourceCommandInput
|
|
115
|
+
| UntagResourceCommandInput
|
|
116
|
+
| UpdateFHIRDatastoreCommandInput;
|
|
112
117
|
export type ServiceOutputTypes =
|
|
113
118
|
| CreateFHIRDatastoreCommandOutput
|
|
114
119
|
| DeleteFHIRDatastoreCommandOutput
|
|
@@ -122,7 +127,8 @@ export type ServiceOutputTypes =
|
|
|
122
127
|
| StartFHIRExportJobCommandOutput
|
|
123
128
|
| StartFHIRImportJobCommandOutput
|
|
124
129
|
| TagResourceCommandOutput
|
|
125
|
-
| UntagResourceCommandOutput
|
|
130
|
+
| UntagResourceCommandOutput
|
|
131
|
+
| UpdateFHIRDatastoreCommandOutput;
|
|
126
132
|
export interface ClientDefaults
|
|
127
133
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
128
134
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
HealthLakeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../HealthLakeClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateFHIRDatastoreRequest,
|
|
10
|
+
UpdateFHIRDatastoreResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateFHIRDatastoreCommandInput
|
|
15
|
+
extends UpdateFHIRDatastoreRequest {}
|
|
16
|
+
export interface UpdateFHIRDatastoreCommandOutput
|
|
17
|
+
extends UpdateFHIRDatastoreResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateFHIRDatastoreCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateFHIRDatastoreCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
UpdateFHIRDatastoreCommandInput,
|
|
24
|
+
UpdateFHIRDatastoreCommandOutput,
|
|
25
|
+
HealthLakeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateFHIRDatastoreCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
UpdateFHIRDatastoreCommandInput,
|
|
33
|
+
UpdateFHIRDatastoreCommandOutput,
|
|
34
|
+
HealthLakeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class UpdateFHIRDatastoreCommand extends UpdateFHIRDatastoreCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: UpdateFHIRDatastoreRequest;
|
|
46
|
+
output: UpdateFHIRDatastoreResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: UpdateFHIRDatastoreCommandInput;
|
|
50
|
+
output: UpdateFHIRDatastoreCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
export declare const AnalyticsStatus: {
|
|
2
|
+
readonly DISABLED: "DISABLED";
|
|
3
|
+
readonly DISABLING: "DISABLING";
|
|
4
|
+
readonly ENABLED: "ENABLED";
|
|
5
|
+
readonly ENABLING: "ENABLING";
|
|
6
|
+
readonly PAUSED: "PAUSED";
|
|
7
|
+
readonly PAUSING: "PAUSING";
|
|
8
|
+
};
|
|
9
|
+
export type AnalyticsStatus =
|
|
10
|
+
(typeof AnalyticsStatus)[keyof typeof AnalyticsStatus];
|
|
1
11
|
export declare const AuthorizationStrategy: {
|
|
2
12
|
readonly AWS_AUTH: "AWS_AUTH";
|
|
3
13
|
readonly SMARTV1: "SMART_ON_FHIR_V1";
|
|
@@ -25,6 +35,8 @@ export declare const DatastoreStatus: {
|
|
|
25
35
|
readonly CREATING: "CREATING";
|
|
26
36
|
readonly DELETED: "DELETED";
|
|
27
37
|
readonly DELETING: "DELETING";
|
|
38
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
39
|
+
readonly UPDATING: "UPDATING";
|
|
28
40
|
};
|
|
29
41
|
export type DatastoreStatus =
|
|
30
42
|
(typeof DatastoreStatus)[keyof typeof DatastoreStatus];
|
|
@@ -33,6 +45,13 @@ export declare const ErrorCategory: {
|
|
|
33
45
|
readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
|
|
34
46
|
};
|
|
35
47
|
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
48
|
+
export declare const NlpStatus: {
|
|
49
|
+
readonly DISABLED: "DISABLED";
|
|
50
|
+
readonly DISABLING: "DISABLING";
|
|
51
|
+
readonly ENABLED: "ENABLED";
|
|
52
|
+
readonly ENABLING: "ENABLING";
|
|
53
|
+
};
|
|
54
|
+
export type NlpStatus = (typeof NlpStatus)[keyof typeof NlpStatus];
|
|
36
55
|
export declare const JobStatus: {
|
|
37
56
|
readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
|
|
38
57
|
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AnalyticsStatus,
|
|
2
3
|
AuthorizationStrategy,
|
|
3
4
|
CmkType,
|
|
4
5
|
DatastoreStatus,
|
|
5
6
|
ErrorCategory,
|
|
6
7
|
FHIRVersion,
|
|
7
8
|
JobStatus,
|
|
9
|
+
NlpStatus,
|
|
8
10
|
PreloadDataType,
|
|
9
11
|
ValidationLevel,
|
|
10
12
|
} from "./enums";
|
|
13
|
+
export interface AnalyticsConfiguration {
|
|
14
|
+
Status?: AnalyticsStatus | undefined;
|
|
15
|
+
}
|
|
11
16
|
export interface IdentityProviderConfiguration {
|
|
12
17
|
AuthorizationStrategy: AuthorizationStrategy | undefined;
|
|
13
18
|
FineGrainedAuthorizationEnabled?: boolean | undefined;
|
|
@@ -53,6 +58,12 @@ export interface ErrorCause {
|
|
|
53
58
|
ErrorMessage?: string | undefined;
|
|
54
59
|
ErrorCategory?: ErrorCategory | undefined;
|
|
55
60
|
}
|
|
61
|
+
export interface NlpConfiguration {
|
|
62
|
+
Status?: NlpStatus | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface ProfileConfiguration {
|
|
65
|
+
DefaultProfiles?: string[] | undefined;
|
|
66
|
+
}
|
|
56
67
|
export interface DatastoreProperties {
|
|
57
68
|
DatastoreId: string | undefined;
|
|
58
69
|
DatastoreArn: string | undefined;
|
|
@@ -65,6 +76,9 @@ export interface DatastoreProperties {
|
|
|
65
76
|
PreloadDataConfig?: PreloadDataConfig | undefined;
|
|
66
77
|
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
67
78
|
ErrorCause?: ErrorCause | undefined;
|
|
79
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
80
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
81
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
68
82
|
}
|
|
69
83
|
export interface DeleteFHIRDatastoreRequest {
|
|
70
84
|
DatastoreId: string | undefined;
|
|
@@ -245,3 +259,14 @@ export interface UntagResourceRequest {
|
|
|
245
259
|
TagKeys: string[] | undefined;
|
|
246
260
|
}
|
|
247
261
|
export interface UntagResourceResponse {}
|
|
262
|
+
export interface UpdateFHIRDatastoreRequest {
|
|
263
|
+
DatastoreId: string | undefined;
|
|
264
|
+
DatastoreName?: string | undefined;
|
|
265
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
266
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
267
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
268
|
+
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
269
|
+
}
|
|
270
|
+
export interface UpdateFHIRDatastoreResponse {
|
|
271
|
+
DatastoreProperties: DatastoreProperties | undefined;
|
|
272
|
+
}
|
|
@@ -13,6 +13,7 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
|
13
13
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
14
14
|
export declare var ValidationException$: StaticErrorSchema;
|
|
15
15
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
16
|
+
export declare var AnalyticsConfiguration$: StaticStructureSchema;
|
|
16
17
|
export declare var CreateFHIRDatastoreRequest$: StaticStructureSchema;
|
|
17
18
|
export declare var CreateFHIRDatastoreResponse$: StaticStructureSchema;
|
|
18
19
|
export declare var DatastoreFilter$: StaticStructureSchema;
|
|
@@ -39,7 +40,9 @@ export declare var ListFHIRImportJobsRequest$: StaticStructureSchema;
|
|
|
39
40
|
export declare var ListFHIRImportJobsResponse$: StaticStructureSchema;
|
|
40
41
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
41
42
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
43
|
+
export declare var NlpConfiguration$: StaticStructureSchema;
|
|
42
44
|
export declare var PreloadDataConfig$: StaticStructureSchema;
|
|
45
|
+
export declare var ProfileConfiguration$: StaticStructureSchema;
|
|
43
46
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
44
47
|
export declare var SseConfiguration$: StaticStructureSchema;
|
|
45
48
|
export declare var StartFHIRExportJobRequest$: StaticStructureSchema;
|
|
@@ -51,6 +54,8 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
51
54
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
52
55
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
53
56
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
57
|
+
export declare var UpdateFHIRDatastoreRequest$: StaticStructureSchema;
|
|
58
|
+
export declare var UpdateFHIRDatastoreResponse$: StaticStructureSchema;
|
|
54
59
|
export declare var InputDataConfig$: StaticUnionSchema;
|
|
55
60
|
export declare var OutputDataConfig$: StaticUnionSchema;
|
|
56
61
|
export declare var CreateFHIRDatastore$: StaticOperationSchema;
|
|
@@ -66,3 +71,4 @@ export declare var StartFHIRExportJob$: StaticOperationSchema;
|
|
|
66
71
|
export declare var StartFHIRImportJob$: StaticOperationSchema;
|
|
67
72
|
export declare var TagResource$: StaticOperationSchema;
|
|
68
73
|
export declare var UntagResource$: StaticOperationSchema;
|
|
74
|
+
export declare var UpdateFHIRDatastore$: StaticOperationSchema;
|
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.1067.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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
24
|
"@aws-sdk/core": "^3.974.20",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.55",
|
|
26
26
|
"@aws-sdk/types": "^3.973.12",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|