@aws-sdk/client-healthlake 3.427.0 → 3.429.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/models/models_0.d.ts +15 -15
- package/dist-types/ts3.4/models/models_0.d.ts +15 -15
- package/package.json +31 -31
|
@@ -70,7 +70,7 @@ export interface IdentityProviderConfiguration {
|
|
|
70
70
|
* @public
|
|
71
71
|
* <p>The authorization strategy that you selected when you created the data store.</p>
|
|
72
72
|
*/
|
|
73
|
-
AuthorizationStrategy: AuthorizationStrategy |
|
|
73
|
+
AuthorizationStrategy: AuthorizationStrategy | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* @public
|
|
76
76
|
* <p>If you enabled fine-grained authorization when you created the data store.</p>
|
|
@@ -117,7 +117,7 @@ export interface PreloadDataConfig {
|
|
|
117
117
|
* @public
|
|
118
118
|
* <p>The type of preloaded data. Only Synthea preloaded data is supported.</p>
|
|
119
119
|
*/
|
|
120
|
-
PreloadDataType: PreloadDataType |
|
|
120
|
+
PreloadDataType: PreloadDataType | undefined;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* @public
|
|
@@ -132,7 +132,7 @@ export interface KmsEncryptionConfig {
|
|
|
132
132
|
* The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
|
133
133
|
* </p>
|
|
134
134
|
*/
|
|
135
|
-
CmkType: CmkType |
|
|
135
|
+
CmkType: CmkType | undefined;
|
|
136
136
|
/**
|
|
137
137
|
* @public
|
|
138
138
|
* <p>
|
|
@@ -191,7 +191,7 @@ export interface CreateFHIRDatastoreRequest {
|
|
|
191
191
|
* @public
|
|
192
192
|
* <p>The FHIR version of the data store. The only supported version is R4.</p>
|
|
193
193
|
*/
|
|
194
|
-
DatastoreTypeVersion: FHIRVersion |
|
|
194
|
+
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* @public
|
|
197
197
|
* <p>
|
|
@@ -257,7 +257,7 @@ export interface CreateFHIRDatastoreResponse {
|
|
|
257
257
|
* @public
|
|
258
258
|
* <p>The status of the FHIR data store.</p>
|
|
259
259
|
*/
|
|
260
|
-
DatastoreStatus: DatastoreStatus |
|
|
260
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* @public
|
|
263
263
|
* <p>The AWS endpoint for the created data store.</p>
|
|
@@ -317,7 +317,7 @@ export interface DatastoreFilter {
|
|
|
317
317
|
* @public
|
|
318
318
|
* <p>Allows the user to filter data store results by status.</p>
|
|
319
319
|
*/
|
|
320
|
-
DatastoreStatus?: DatastoreStatus
|
|
320
|
+
DatastoreStatus?: DatastoreStatus;
|
|
321
321
|
/**
|
|
322
322
|
* @public
|
|
323
323
|
* <p>A filter that allows the user to set cutoff dates for records. All data stores created
|
|
@@ -355,7 +355,7 @@ export interface DatastoreProperties {
|
|
|
355
355
|
* @public
|
|
356
356
|
* <p>The status of the data store.</p>
|
|
357
357
|
*/
|
|
358
|
-
DatastoreStatus: DatastoreStatus |
|
|
358
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* @public
|
|
361
361
|
* <p>The time that a data store was created. </p>
|
|
@@ -365,7 +365,7 @@ export interface DatastoreProperties {
|
|
|
365
365
|
* @public
|
|
366
366
|
* <p>The FHIR version. Only R4 version data is supported.</p>
|
|
367
367
|
*/
|
|
368
|
-
DatastoreTypeVersion: FHIRVersion |
|
|
368
|
+
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
369
369
|
/**
|
|
370
370
|
* @public
|
|
371
371
|
* <p>The AWS endpoint for the data store. Each data store will have it's own endpoint with data store ID in the endpoint URL.</p>
|
|
@@ -418,7 +418,7 @@ export interface DeleteFHIRDatastoreResponse {
|
|
|
418
418
|
* <p>The status of the data store that the user has requested to be deleted.
|
|
419
419
|
* </p>
|
|
420
420
|
*/
|
|
421
|
-
DatastoreStatus: DatastoreStatus |
|
|
421
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* @public
|
|
424
424
|
* <p>The AWS endpoint for the data store the user has requested to be deleted.</p>
|
|
@@ -566,7 +566,7 @@ export interface ExportJobProperties {
|
|
|
566
566
|
* @public
|
|
567
567
|
* <p>The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.</p>
|
|
568
568
|
*/
|
|
569
|
-
JobStatus: JobStatus |
|
|
569
|
+
JobStatus: JobStatus | undefined;
|
|
570
570
|
/**
|
|
571
571
|
* @public
|
|
572
572
|
* <p>The time an export job was initiated.</p>
|
|
@@ -672,7 +672,7 @@ export interface ImportJobProperties {
|
|
|
672
672
|
* @public
|
|
673
673
|
* <p>The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED.</p>
|
|
674
674
|
*/
|
|
675
|
-
JobStatus: JobStatus |
|
|
675
|
+
JobStatus: JobStatus | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* @public
|
|
678
678
|
* <p>The time that the Import job was submitted for processing.</p>
|
|
@@ -792,7 +792,7 @@ export interface ListFHIRExportJobsRequest {
|
|
|
792
792
|
* This parameter limits the response to the export jobs with the specified job status.
|
|
793
793
|
* </p>
|
|
794
794
|
*/
|
|
795
|
-
JobStatus?: JobStatus
|
|
795
|
+
JobStatus?: JobStatus;
|
|
796
796
|
/**
|
|
797
797
|
* @public
|
|
798
798
|
* <p>
|
|
@@ -865,7 +865,7 @@ export interface ListFHIRImportJobsRequest {
|
|
|
865
865
|
* This parameter limits the response to the import job with the specified job status.
|
|
866
866
|
* </p>
|
|
867
867
|
*/
|
|
868
|
-
JobStatus?: JobStatus
|
|
868
|
+
JobStatus?: JobStatus;
|
|
869
869
|
/**
|
|
870
870
|
* @public
|
|
871
871
|
* <p>
|
|
@@ -967,7 +967,7 @@ export interface StartFHIRExportJobResponse {
|
|
|
967
967
|
* @public
|
|
968
968
|
* <p>The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.</p>
|
|
969
969
|
*/
|
|
970
|
-
JobStatus: JobStatus |
|
|
970
|
+
JobStatus: JobStatus | undefined;
|
|
971
971
|
/**
|
|
972
972
|
* @public
|
|
973
973
|
* <p>The AWS generated ID for the data store from which files are being exported for an export job.</p>
|
|
@@ -1022,7 +1022,7 @@ export interface StartFHIRImportJobResponse {
|
|
|
1022
1022
|
* @public
|
|
1023
1023
|
* <p>The status of an import job.</p>
|
|
1024
1024
|
*/
|
|
1025
|
-
JobStatus: JobStatus |
|
|
1025
|
+
JobStatus: JobStatus | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @public
|
|
1028
1028
|
* <p>The AWS-generated data store ID.</p>
|
|
@@ -30,7 +30,7 @@ export declare const FHIRVersion: {
|
|
|
30
30
|
};
|
|
31
31
|
export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
|
|
32
32
|
export interface IdentityProviderConfiguration {
|
|
33
|
-
AuthorizationStrategy: AuthorizationStrategy |
|
|
33
|
+
AuthorizationStrategy: AuthorizationStrategy | undefined;
|
|
34
34
|
FineGrainedAuthorizationEnabled?: boolean;
|
|
35
35
|
Metadata?: string;
|
|
36
36
|
IdpLambdaArn?: string;
|
|
@@ -41,10 +41,10 @@ export declare const PreloadDataType: {
|
|
|
41
41
|
export type PreloadDataType =
|
|
42
42
|
(typeof PreloadDataType)[keyof typeof PreloadDataType];
|
|
43
43
|
export interface PreloadDataConfig {
|
|
44
|
-
PreloadDataType: PreloadDataType |
|
|
44
|
+
PreloadDataType: PreloadDataType | undefined;
|
|
45
45
|
}
|
|
46
46
|
export interface KmsEncryptionConfig {
|
|
47
|
-
CmkType: CmkType |
|
|
47
|
+
CmkType: CmkType | undefined;
|
|
48
48
|
KmsKeyId?: string;
|
|
49
49
|
}
|
|
50
50
|
export interface SseConfiguration {
|
|
@@ -56,7 +56,7 @@ export interface Tag {
|
|
|
56
56
|
}
|
|
57
57
|
export interface CreateFHIRDatastoreRequest {
|
|
58
58
|
DatastoreName?: string;
|
|
59
|
-
DatastoreTypeVersion: FHIRVersion |
|
|
59
|
+
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
60
60
|
SseConfiguration?: SseConfiguration;
|
|
61
61
|
PreloadDataConfig?: PreloadDataConfig;
|
|
62
62
|
ClientToken?: string;
|
|
@@ -74,7 +74,7 @@ export type DatastoreStatus =
|
|
|
74
74
|
export interface CreateFHIRDatastoreResponse {
|
|
75
75
|
DatastoreId: string | undefined;
|
|
76
76
|
DatastoreArn: string | undefined;
|
|
77
|
-
DatastoreStatus: DatastoreStatus |
|
|
77
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
78
78
|
DatastoreEndpoint: string | undefined;
|
|
79
79
|
}
|
|
80
80
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -103,7 +103,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
103
103
|
}
|
|
104
104
|
export interface DatastoreFilter {
|
|
105
105
|
DatastoreName?: string;
|
|
106
|
-
DatastoreStatus?: DatastoreStatus
|
|
106
|
+
DatastoreStatus?: DatastoreStatus;
|
|
107
107
|
CreatedBefore?: Date;
|
|
108
108
|
CreatedAfter?: Date;
|
|
109
109
|
}
|
|
@@ -111,9 +111,9 @@ export interface DatastoreProperties {
|
|
|
111
111
|
DatastoreId: string | undefined;
|
|
112
112
|
DatastoreArn: string | undefined;
|
|
113
113
|
DatastoreName?: string;
|
|
114
|
-
DatastoreStatus: DatastoreStatus |
|
|
114
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
115
115
|
CreatedAt?: Date;
|
|
116
|
-
DatastoreTypeVersion: FHIRVersion |
|
|
116
|
+
DatastoreTypeVersion: FHIRVersion | undefined;
|
|
117
117
|
DatastoreEndpoint: string | undefined;
|
|
118
118
|
SseConfiguration?: SseConfiguration;
|
|
119
119
|
PreloadDataConfig?: PreloadDataConfig;
|
|
@@ -125,7 +125,7 @@ export interface DeleteFHIRDatastoreRequest {
|
|
|
125
125
|
export interface DeleteFHIRDatastoreResponse {
|
|
126
126
|
DatastoreId: string | undefined;
|
|
127
127
|
DatastoreArn: string | undefined;
|
|
128
|
-
DatastoreStatus: DatastoreStatus |
|
|
128
|
+
DatastoreStatus: DatastoreStatus | undefined;
|
|
129
129
|
DatastoreEndpoint: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -183,7 +183,7 @@ export declare namespace OutputDataConfig {
|
|
|
183
183
|
export interface ExportJobProperties {
|
|
184
184
|
JobId: string | undefined;
|
|
185
185
|
JobName?: string;
|
|
186
|
-
JobStatus: JobStatus |
|
|
186
|
+
JobStatus: JobStatus | undefined;
|
|
187
187
|
SubmitTime: Date | undefined;
|
|
188
188
|
EndTime?: Date;
|
|
189
189
|
DatastoreId: string | undefined;
|
|
@@ -219,7 +219,7 @@ export declare namespace InputDataConfig {
|
|
|
219
219
|
export interface ImportJobProperties {
|
|
220
220
|
JobId: string | undefined;
|
|
221
221
|
JobName?: string;
|
|
222
|
-
JobStatus: JobStatus |
|
|
222
|
+
JobStatus: JobStatus | undefined;
|
|
223
223
|
SubmitTime: Date | undefined;
|
|
224
224
|
EndTime?: Date;
|
|
225
225
|
DatastoreId: string | undefined;
|
|
@@ -245,7 +245,7 @@ export interface ListFHIRExportJobsRequest {
|
|
|
245
245
|
NextToken?: string;
|
|
246
246
|
MaxResults?: number;
|
|
247
247
|
JobName?: string;
|
|
248
|
-
JobStatus?: JobStatus
|
|
248
|
+
JobStatus?: JobStatus;
|
|
249
249
|
SubmittedBefore?: Date;
|
|
250
250
|
SubmittedAfter?: Date;
|
|
251
251
|
}
|
|
@@ -258,7 +258,7 @@ export interface ListFHIRImportJobsRequest {
|
|
|
258
258
|
NextToken?: string;
|
|
259
259
|
MaxResults?: number;
|
|
260
260
|
JobName?: string;
|
|
261
|
-
JobStatus?: JobStatus
|
|
261
|
+
JobStatus?: JobStatus;
|
|
262
262
|
SubmittedBefore?: Date;
|
|
263
263
|
SubmittedAfter?: Date;
|
|
264
264
|
}
|
|
@@ -281,7 +281,7 @@ export interface StartFHIRExportJobRequest {
|
|
|
281
281
|
}
|
|
282
282
|
export interface StartFHIRExportJobResponse {
|
|
283
283
|
JobId: string | undefined;
|
|
284
|
-
JobStatus: JobStatus |
|
|
284
|
+
JobStatus: JobStatus | undefined;
|
|
285
285
|
DatastoreId?: string;
|
|
286
286
|
}
|
|
287
287
|
export interface StartFHIRImportJobRequest {
|
|
@@ -294,7 +294,7 @@ export interface StartFHIRImportJobRequest {
|
|
|
294
294
|
}
|
|
295
295
|
export interface StartFHIRImportJobResponse {
|
|
296
296
|
JobId: string | undefined;
|
|
297
|
-
JobStatus: JobStatus |
|
|
297
|
+
JobStatus: JobStatus | undefined;
|
|
298
298
|
DatastoreId?: string;
|
|
299
299
|
}
|
|
300
300
|
export interface TagResourceRequest {
|
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.429.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,39 +21,39 @@
|
|
|
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/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|