@aws-sdk/client-healthlake 3.1071.0 → 3.1073.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-cjs/index.js +6 -6
- package/dist-cjs/schemas/schemas_0.js +4 -4
- package/dist-es/models/enums.js +6 -6
- package/dist-es/schemas/schemas_0.js +4 -4
- package/dist-types/commands/CreateFHIRDatastoreCommand.d.ts +11 -0
- package/dist-types/commands/StartFHIRImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFHIRDatastoreCommand.d.ts +4 -4
- package/dist-types/models/enums.d.ts +14 -14
- package/dist-types/models/models_0.d.ts +56 -41
- package/dist-types/ts3.4/models/enums.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +10 -7
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -528,6 +528,12 @@ const CmkType = {
|
|
|
528
528
|
const FHIRVersion = {
|
|
529
529
|
R4: "R4",
|
|
530
530
|
};
|
|
531
|
+
const NlpStatus = {
|
|
532
|
+
DISABLED: "DISABLED",
|
|
533
|
+
DISABLING: "DISABLING",
|
|
534
|
+
ENABLED: "ENABLED",
|
|
535
|
+
ENABLING: "ENABLING",
|
|
536
|
+
};
|
|
531
537
|
const PreloadDataType = {
|
|
532
538
|
SYNTHEA: "SYNTHEA",
|
|
533
539
|
};
|
|
@@ -544,12 +550,6 @@ const ErrorCategory = {
|
|
|
544
550
|
NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
|
|
545
551
|
RETRYABLE_ERROR: "RETRYABLE_ERROR",
|
|
546
552
|
};
|
|
547
|
-
const NlpStatus = {
|
|
548
|
-
DISABLED: "DISABLED",
|
|
549
|
-
DISABLING: "DISABLING",
|
|
550
|
-
ENABLED: "ENABLED",
|
|
551
|
-
ENABLING: "ENABLING",
|
|
552
|
-
};
|
|
553
553
|
const JobStatus = {
|
|
554
554
|
CANCEL_COMPLETED: "CANCEL_COMPLETED",
|
|
555
555
|
CANCEL_FAILED: "CANCEL_FAILED",
|
|
@@ -184,8 +184,8 @@ const AnalyticsConfiguration$ = [3, n0, _AC,
|
|
|
184
184
|
exports.AnalyticsConfiguration$ = AnalyticsConfiguration$;
|
|
185
185
|
const CreateFHIRDatastoreRequest$ = [3, n0, _CFHIRDR,
|
|
186
186
|
0,
|
|
187
|
-
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC],
|
|
188
|
-
[0, 0, () => SseConfiguration$, () => PreloadDataConfig$, [0, 4], () => TagList, () => IdentityProviderConfiguration$], 1
|
|
187
|
+
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC, _AC, _NC, _PC],
|
|
188
|
+
[0, 0, () => SseConfiguration$, () => PreloadDataConfig$, [0, 4], () => TagList, () => IdentityProviderConfiguration$, () => AnalyticsConfiguration$, () => NlpConfiguration$, () => ProfileConfiguration$], 1
|
|
189
189
|
];
|
|
190
190
|
exports.CreateFHIRDatastoreRequest$ = CreateFHIRDatastoreRequest$;
|
|
191
191
|
const CreateFHIRDatastoreResponse$ = [3, n0, _CFHIRDRr,
|
|
@@ -424,8 +424,8 @@ const UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
424
424
|
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
425
425
|
const UpdateFHIRDatastoreRequest$ = [3, n0, _UFHIRDR,
|
|
426
426
|
0,
|
|
427
|
-
[_DI, _DN,
|
|
428
|
-
[0, 0, () =>
|
|
427
|
+
[_DI, _DN, _NC, _AC, _PC, _IPC],
|
|
428
|
+
[0, 0, () => NlpConfiguration$, () => AnalyticsConfiguration$, () => ProfileConfiguration$, () => IdentityProviderConfiguration$], 1
|
|
429
429
|
];
|
|
430
430
|
exports.UpdateFHIRDatastoreRequest$ = UpdateFHIRDatastoreRequest$;
|
|
431
431
|
const UpdateFHIRDatastoreResponse$ = [3, n0, _UFHIRDRp,
|
package/dist-es/models/enums.js
CHANGED
|
@@ -18,6 +18,12 @@ export const CmkType = {
|
|
|
18
18
|
export const FHIRVersion = {
|
|
19
19
|
R4: "R4",
|
|
20
20
|
};
|
|
21
|
+
export const NlpStatus = {
|
|
22
|
+
DISABLED: "DISABLED",
|
|
23
|
+
DISABLING: "DISABLING",
|
|
24
|
+
ENABLED: "ENABLED",
|
|
25
|
+
ENABLING: "ENABLING",
|
|
26
|
+
};
|
|
21
27
|
export const PreloadDataType = {
|
|
22
28
|
SYNTHEA: "SYNTHEA",
|
|
23
29
|
};
|
|
@@ -34,12 +40,6 @@ export const ErrorCategory = {
|
|
|
34
40
|
NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
|
|
35
41
|
RETRYABLE_ERROR: "RETRYABLE_ERROR",
|
|
36
42
|
};
|
|
37
|
-
export const NlpStatus = {
|
|
38
|
-
DISABLED: "DISABLED",
|
|
39
|
-
DISABLING: "DISABLING",
|
|
40
|
-
ENABLED: "ENABLED",
|
|
41
|
-
ENABLING: "ENABLING",
|
|
42
|
-
};
|
|
43
43
|
export const JobStatus = {
|
|
44
44
|
CANCEL_COMPLETED: "CANCEL_COMPLETED",
|
|
45
45
|
CANCEL_FAILED: "CANCEL_FAILED",
|
|
@@ -176,8 +176,8 @@ export var AnalyticsConfiguration$ = [3, n0, _AC,
|
|
|
176
176
|
];
|
|
177
177
|
export var CreateFHIRDatastoreRequest$ = [3, n0, _CFHIRDR,
|
|
178
178
|
0,
|
|
179
|
-
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC],
|
|
180
|
-
[0, 0, () => SseConfiguration$, () => PreloadDataConfig$, [0, 4], () => TagList, () => IdentityProviderConfiguration$], 1
|
|
179
|
+
[_DTV, _DN, _SC, _PDC, _CT, _T, _IPC, _AC, _NC, _PC],
|
|
180
|
+
[0, 0, () => SseConfiguration$, () => PreloadDataConfig$, [0, 4], () => TagList, () => IdentityProviderConfiguration$, () => AnalyticsConfiguration$, () => NlpConfiguration$, () => ProfileConfiguration$], 1
|
|
181
181
|
];
|
|
182
182
|
export var CreateFHIRDatastoreResponse$ = [3, n0, _CFHIRDRr,
|
|
183
183
|
0,
|
|
@@ -376,8 +376,8 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
376
376
|
];
|
|
377
377
|
export var UpdateFHIRDatastoreRequest$ = [3, n0, _UFHIRDR,
|
|
378
378
|
0,
|
|
379
|
-
[_DI, _DN,
|
|
380
|
-
[0, 0, () =>
|
|
379
|
+
[_DI, _DN, _NC, _AC, _PC, _IPC],
|
|
380
|
+
[0, 0, () => NlpConfiguration$, () => AnalyticsConfiguration$, () => ProfileConfiguration$, () => IdentityProviderConfiguration$], 1
|
|
381
381
|
];
|
|
382
382
|
export var UpdateFHIRDatastoreResponse$ = [3, n0, _UFHIRDRp,
|
|
383
383
|
0,
|
|
@@ -63,6 +63,17 @@ declare const CreateFHIRDatastoreCommand_base: {
|
|
|
63
63
|
* Metadata: "STRING_VALUE",
|
|
64
64
|
* IdpLambdaArn: "STRING_VALUE",
|
|
65
65
|
* },
|
|
66
|
+
* AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
67
|
+
* Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
68
|
+
* },
|
|
69
|
+
* NlpConfiguration: { // NlpConfiguration
|
|
70
|
+
* Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
71
|
+
* },
|
|
72
|
+
* ProfileConfiguration: { // ProfileConfiguration
|
|
73
|
+
* DefaultProfiles: [ // DefaultProfiles
|
|
74
|
+
* "STRING_VALUE",
|
|
75
|
+
* ],
|
|
76
|
+
* },
|
|
66
77
|
* };
|
|
67
78
|
* const command = new CreateFHIRDatastoreCommand(input);
|
|
68
79
|
* const response = await client.send(command);
|
|
@@ -31,7 +31,7 @@ declare const StartFHIRImportJobCommand_base: {
|
|
|
31
31
|
/**
|
|
32
32
|
* <p>Start importing bulk FHIR data into an ACTIVE data store. The import job imports FHIR
|
|
33
33
|
* data found in the <code>InputDataConfig</code> object and stores processing results in the
|
|
34
|
-
*
|
|
34
|
+
* <code>JobOutputDataConfig</code> object.</p>
|
|
35
35
|
* @example
|
|
36
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
37
37
|
* ```javascript
|
|
@@ -29,7 +29,7 @@ declare const UpdateFHIRDatastoreCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <
|
|
32
|
+
* <p>Update the properties of a FHIR-enabled data store.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -41,12 +41,12 @@ declare const UpdateFHIRDatastoreCommand_base: {
|
|
|
41
41
|
* const input = { // UpdateFHIRDatastoreRequest
|
|
42
42
|
* DatastoreId: "STRING_VALUE", // required
|
|
43
43
|
* DatastoreName: "STRING_VALUE",
|
|
44
|
-
* AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
45
|
-
* Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
46
|
-
* },
|
|
47
44
|
* NlpConfiguration: { // NlpConfiguration
|
|
48
45
|
* Status: "ENABLED" || "DISABLED" || "ENABLING" || "DISABLING",
|
|
49
46
|
* },
|
|
47
|
+
* AnalyticsConfiguration: { // AnalyticsConfiguration
|
|
48
|
+
* Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED",
|
|
49
|
+
* },
|
|
50
50
|
* ProfileConfiguration: { // ProfileConfiguration
|
|
51
51
|
* DefaultProfiles: [ // DefaultProfiles
|
|
52
52
|
* "STRING_VALUE",
|
|
@@ -50,6 +50,20 @@ export declare const FHIRVersion: {
|
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
52
|
export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* @enum
|
|
56
|
+
*/
|
|
57
|
+
export declare const NlpStatus: {
|
|
58
|
+
readonly DISABLED: "DISABLED";
|
|
59
|
+
readonly DISABLING: "DISABLING";
|
|
60
|
+
readonly ENABLED: "ENABLED";
|
|
61
|
+
readonly ENABLING: "ENABLING";
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export type NlpStatus = (typeof NlpStatus)[keyof typeof NlpStatus];
|
|
53
67
|
/**
|
|
54
68
|
* @public
|
|
55
69
|
* @enum
|
|
@@ -90,20 +104,6 @@ export declare const ErrorCategory: {
|
|
|
90
104
|
* @public
|
|
91
105
|
*/
|
|
92
106
|
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];
|
|
107
107
|
/**
|
|
108
108
|
* @public
|
|
109
109
|
* @enum
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { AnalyticsStatus, AuthorizationStrategy, CmkType, DatastoreStatus, ErrorCategory, FHIRVersion, JobStatus, NlpStatus, PreloadDataType, ValidationLevel } from "./enums";
|
|
2
2
|
/**
|
|
3
|
-
* <
|
|
3
|
+
* <p>The analytics configuration for a data store.</p>
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
6
|
export interface AnalyticsConfiguration {
|
|
7
7
|
/**
|
|
8
|
-
* <
|
|
8
|
+
* <p>The status of the analytics configuration.</p>
|
|
9
9
|
* @public
|
|
10
10
|
*/
|
|
11
11
|
Status?: AnalyticsStatus | undefined;
|
|
@@ -30,7 +30,7 @@ export interface IdentityProviderConfiguration {
|
|
|
30
30
|
* <p>
|
|
31
31
|
* <code>SMART_ON_FHIR</code> – Support for both SMART on FHIR V1 and V2,
|
|
32
32
|
* which includes <code>create</code>, <code>read</code>, <code>update</code>,
|
|
33
|
-
*
|
|
33
|
+
* <code>delete</code>, and <code>search</code> permissions.</p>
|
|
34
34
|
* </li>
|
|
35
35
|
* <li>
|
|
36
36
|
* <p>
|
|
@@ -58,7 +58,7 @@ export interface IdentityProviderConfiguration {
|
|
|
58
58
|
* <p>
|
|
59
59
|
* <code>grant_types_supported</code>: An array of grant types that are supported at the
|
|
60
60
|
* token endpoint. You must provide at least one grant type option. Valid options are
|
|
61
|
-
*
|
|
61
|
+
* <code>authorization_code</code> and <code>client_credentials</code>.</p>
|
|
62
62
|
* <p>
|
|
63
63
|
* <code>token_endpoint</code>: The URL to the OAuth2 token endpoint.</p>
|
|
64
64
|
* <p>
|
|
@@ -78,6 +78,17 @@ export interface IdentityProviderConfiguration {
|
|
|
78
78
|
*/
|
|
79
79
|
IdpLambdaArn?: string | undefined;
|
|
80
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>The natural language processing (NLP) configuration for a data store.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export interface NlpConfiguration {
|
|
86
|
+
/**
|
|
87
|
+
* <p>The status of the NLP configuration.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
Status?: NlpStatus | undefined;
|
|
91
|
+
}
|
|
81
92
|
/**
|
|
82
93
|
* <p>The input properties for the preloaded (Synthea) data store.</p>
|
|
83
94
|
* @public
|
|
@@ -89,6 +100,17 @@ export interface PreloadDataConfig {
|
|
|
89
100
|
*/
|
|
90
101
|
PreloadDataType: PreloadDataType | undefined;
|
|
91
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* <p>The profile configuration for a data store.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export interface ProfileConfiguration {
|
|
108
|
+
/**
|
|
109
|
+
* <p>The list of default profiles for the data store.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
DefaultProfiles?: string[] | undefined;
|
|
113
|
+
}
|
|
92
114
|
/**
|
|
93
115
|
* <p>The customer-managed-key (CMK) used when creating a data store. If a customer-owned key
|
|
94
116
|
* is not specified, an AWS-owned key is used for encryption. </p>
|
|
@@ -148,7 +170,7 @@ export interface CreateFHIRDatastoreRequest {
|
|
|
148
170
|
DatastoreName?: string | undefined;
|
|
149
171
|
/**
|
|
150
172
|
* <p>The FHIR release version supported by the data store. Current support is for version
|
|
151
|
-
*
|
|
173
|
+
* <code>R4</code>.</p>
|
|
152
174
|
* @public
|
|
153
175
|
*/
|
|
154
176
|
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
@@ -179,6 +201,21 @@ export interface CreateFHIRDatastoreRequest {
|
|
|
179
201
|
* @public
|
|
180
202
|
*/
|
|
181
203
|
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* <p>The analytics configuration for the data store.</p>
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
209
|
+
/**
|
|
210
|
+
* <p>The natural language processing (NLP) configuration for the data store.</p>
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
214
|
+
/**
|
|
215
|
+
* <p>The profile configuration for the data store.</p>
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
182
219
|
}
|
|
183
220
|
/**
|
|
184
221
|
* @public
|
|
@@ -235,7 +272,7 @@ export interface DatastoreFilter {
|
|
|
235
272
|
}
|
|
236
273
|
/**
|
|
237
274
|
* <p>The error information for <code>CreateFHIRDatastore</code> and
|
|
238
|
-
*
|
|
275
|
+
* <code>DeleteFHIRDatastore</code> actions.</p>
|
|
239
276
|
* @public
|
|
240
277
|
*/
|
|
241
278
|
export interface ErrorCause {
|
|
@@ -250,28 +287,6 @@ export interface ErrorCause {
|
|
|
250
287
|
*/
|
|
251
288
|
ErrorCategory?: ErrorCategory | undefined;
|
|
252
289
|
}
|
|
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
|
-
}
|
|
275
290
|
/**
|
|
276
291
|
* <p>The data store properties.</p>
|
|
277
292
|
* @public
|
|
@@ -304,7 +319,7 @@ export interface DatastoreProperties {
|
|
|
304
319
|
CreatedAt?: Date | undefined;
|
|
305
320
|
/**
|
|
306
321
|
* <p>The FHIR release version supported by the data store. Current support is for version
|
|
307
|
-
*
|
|
322
|
+
* <code>R4</code>.</p>
|
|
308
323
|
* @public
|
|
309
324
|
*/
|
|
310
325
|
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
@@ -335,17 +350,17 @@ export interface DatastoreProperties {
|
|
|
335
350
|
*/
|
|
336
351
|
ErrorCause?: ErrorCause | undefined;
|
|
337
352
|
/**
|
|
338
|
-
* <
|
|
353
|
+
* <p>The natural language processing (NLP) configuration for the data store.</p>
|
|
339
354
|
* @public
|
|
340
355
|
*/
|
|
341
356
|
NlpConfiguration?: NlpConfiguration | undefined;
|
|
342
357
|
/**
|
|
343
|
-
* <
|
|
358
|
+
* <p>The analytics configuration for the data store.</p>
|
|
344
359
|
* @public
|
|
345
360
|
*/
|
|
346
361
|
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
347
362
|
/**
|
|
348
|
-
* <
|
|
363
|
+
* <p>The profile configuration for the data store.</p>
|
|
349
364
|
* @public
|
|
350
365
|
*/
|
|
351
366
|
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
@@ -1028,32 +1043,32 @@ export interface UntagResourceResponse {
|
|
|
1028
1043
|
*/
|
|
1029
1044
|
export interface UpdateFHIRDatastoreRequest {
|
|
1030
1045
|
/**
|
|
1031
|
-
* <
|
|
1046
|
+
* <p>The data store identifier.</p>
|
|
1032
1047
|
* @public
|
|
1033
1048
|
*/
|
|
1034
1049
|
DatastoreId: string | undefined;
|
|
1035
1050
|
/**
|
|
1036
|
-
* <
|
|
1051
|
+
* <p>The data store name.</p>
|
|
1037
1052
|
* @public
|
|
1038
1053
|
*/
|
|
1039
1054
|
DatastoreName?: string | undefined;
|
|
1040
1055
|
/**
|
|
1041
|
-
* <
|
|
1056
|
+
* <p>The natural language processing (NLP) configuration for the data store.</p>
|
|
1042
1057
|
* @public
|
|
1043
1058
|
*/
|
|
1044
|
-
|
|
1059
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
1045
1060
|
/**
|
|
1046
|
-
* <
|
|
1061
|
+
* <p>The analytics configuration for the data store.</p>
|
|
1047
1062
|
* @public
|
|
1048
1063
|
*/
|
|
1049
|
-
|
|
1064
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
1050
1065
|
/**
|
|
1051
|
-
* <
|
|
1066
|
+
* <p>The profile configuration for the data store.</p>
|
|
1052
1067
|
* @public
|
|
1053
1068
|
*/
|
|
1054
1069
|
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
1055
1070
|
/**
|
|
1056
|
-
* <
|
|
1071
|
+
* <p>The identity provider configuration for the data store.</p>
|
|
1057
1072
|
* @public
|
|
1058
1073
|
*/
|
|
1059
1074
|
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
@@ -1063,7 +1078,7 @@ export interface UpdateFHIRDatastoreRequest {
|
|
|
1063
1078
|
*/
|
|
1064
1079
|
export interface UpdateFHIRDatastoreResponse {
|
|
1065
1080
|
/**
|
|
1066
|
-
* <
|
|
1081
|
+
* <p>The data store properties.</p>
|
|
1067
1082
|
* @public
|
|
1068
1083
|
*/
|
|
1069
1084
|
DatastoreProperties: DatastoreProperties | undefined;
|
|
@@ -24,6 +24,13 @@ export declare const FHIRVersion: {
|
|
|
24
24
|
readonly R4: "R4";
|
|
25
25
|
};
|
|
26
26
|
export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
|
|
27
|
+
export declare const NlpStatus: {
|
|
28
|
+
readonly DISABLED: "DISABLED";
|
|
29
|
+
readonly DISABLING: "DISABLING";
|
|
30
|
+
readonly ENABLED: "ENABLED";
|
|
31
|
+
readonly ENABLING: "ENABLING";
|
|
32
|
+
};
|
|
33
|
+
export type NlpStatus = (typeof NlpStatus)[keyof typeof NlpStatus];
|
|
27
34
|
export declare const PreloadDataType: {
|
|
28
35
|
readonly SYNTHEA: "SYNTHEA";
|
|
29
36
|
};
|
|
@@ -45,13 +52,6 @@ export declare const ErrorCategory: {
|
|
|
45
52
|
readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
|
|
46
53
|
};
|
|
47
54
|
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];
|
|
55
55
|
export declare const JobStatus: {
|
|
56
56
|
readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
|
|
57
57
|
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
@@ -19,9 +19,15 @@ export interface IdentityProviderConfiguration {
|
|
|
19
19
|
Metadata?: string | undefined;
|
|
20
20
|
IdpLambdaArn?: string | undefined;
|
|
21
21
|
}
|
|
22
|
+
export interface NlpConfiguration {
|
|
23
|
+
Status?: NlpStatus | undefined;
|
|
24
|
+
}
|
|
22
25
|
export interface PreloadDataConfig {
|
|
23
26
|
PreloadDataType: PreloadDataType | undefined;
|
|
24
27
|
}
|
|
28
|
+
export interface ProfileConfiguration {
|
|
29
|
+
DefaultProfiles?: string[] | undefined;
|
|
30
|
+
}
|
|
25
31
|
export interface KmsEncryptionConfig {
|
|
26
32
|
CmkType: CmkType | undefined;
|
|
27
33
|
KmsKeyId?: string | undefined;
|
|
@@ -41,6 +47,9 @@ export interface CreateFHIRDatastoreRequest {
|
|
|
41
47
|
ClientToken?: string | undefined;
|
|
42
48
|
Tags?: Tag[] | undefined;
|
|
43
49
|
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
50
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
51
|
+
NlpConfiguration?: NlpConfiguration | undefined;
|
|
52
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
44
53
|
}
|
|
45
54
|
export interface CreateFHIRDatastoreResponse {
|
|
46
55
|
DatastoreId: string | undefined;
|
|
@@ -58,12 +67,6 @@ export interface ErrorCause {
|
|
|
58
67
|
ErrorMessage?: string | undefined;
|
|
59
68
|
ErrorCategory?: ErrorCategory | undefined;
|
|
60
69
|
}
|
|
61
|
-
export interface NlpConfiguration {
|
|
62
|
-
Status?: NlpStatus | undefined;
|
|
63
|
-
}
|
|
64
|
-
export interface ProfileConfiguration {
|
|
65
|
-
DefaultProfiles?: string[] | undefined;
|
|
66
|
-
}
|
|
67
70
|
export interface DatastoreProperties {
|
|
68
71
|
DatastoreId: string | undefined;
|
|
69
72
|
DatastoreArn: string | undefined;
|
|
@@ -262,8 +265,8 @@ export interface UntagResourceResponse {}
|
|
|
262
265
|
export interface UpdateFHIRDatastoreRequest {
|
|
263
266
|
DatastoreId: string | undefined;
|
|
264
267
|
DatastoreName?: string | undefined;
|
|
265
|
-
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
266
268
|
NlpConfiguration?: NlpConfiguration | undefined;
|
|
269
|
+
AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
|
|
267
270
|
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
268
271
|
IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
|
|
269
272
|
}
|
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.1073.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",
|