@aws-sdk/client-healthlake 3.687.0 → 3.692.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.
@@ -7,7 +7,7 @@ import { HealthLakeServiceException as __BaseException } from "./HealthLakeServi
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -44,7 +44,7 @@ export type CmkType = (typeof CmkType)[keyof typeof CmkType];
44
44
  export declare class ConflictException extends __BaseException {
45
45
  readonly name: "ConflictException";
46
46
  readonly $fault: "client";
47
- Message?: string;
47
+ Message?: string | undefined;
48
48
  /**
49
49
  * @internal
50
50
  */
@@ -75,7 +75,7 @@ export interface IdentityProviderConfiguration {
75
75
  * <p>If you enabled fine-grained authorization when you created the data store.</p>
76
76
  * @public
77
77
  */
78
- FineGrainedAuthorizationEnabled?: boolean;
78
+ FineGrainedAuthorizationEnabled?: boolean | undefined;
79
79
  /**
80
80
  * <p>The JSON metadata elements that you want to use in your identity provider configuration. Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see <a href="https://build.fhir.org/ig/HL7/smart-app-launch/conformance.html#metadata">Metadata</a> in SMART's App Launch specification.</p>
81
81
  * <p>
@@ -90,12 +90,12 @@ export interface IdentityProviderConfiguration {
90
90
  * <code>code_challenge_methods_supported</code>: An array of strings of supported PKCE code challenge methods. You must include the <code>S256</code> method in the array of PKCE code challenge methods.</p>
91
91
  * @public
92
92
  */
93
- Metadata?: string;
93
+ Metadata?: string | undefined;
94
94
  /**
95
95
  * <p>The Amazon Resource Name (ARN) of the Lambda function that you want to use to decode the access token created by the authorization server.</p>
96
96
  * @public
97
97
  */
98
- IdpLambdaArn?: string;
98
+ IdpLambdaArn?: string | undefined;
99
99
  }
100
100
  /**
101
101
  * @public
@@ -139,7 +139,7 @@ export interface KmsEncryptionConfig {
139
139
  * </p>
140
140
  * @public
141
141
  */
142
- KmsKeyId?: string;
142
+ KmsKeyId?: string | undefined;
143
143
  }
144
144
  /**
145
145
  * <p>
@@ -186,7 +186,7 @@ export interface CreateFHIRDatastoreRequest {
186
186
  * <p>The user generated name for the data store.</p>
187
187
  * @public
188
188
  */
189
- DatastoreName?: string;
189
+ DatastoreName?: string | undefined;
190
190
  /**
191
191
  * <p>The FHIR version of the data store. The only supported version is R4.</p>
192
192
  * @public
@@ -198,30 +198,30 @@ export interface CreateFHIRDatastoreRequest {
198
198
  * </p>
199
199
  * @public
200
200
  */
201
- SseConfiguration?: SseConfiguration;
201
+ SseConfiguration?: SseConfiguration | undefined;
202
202
  /**
203
203
  * <p>Optional parameter to preload data upon creation of the data store. Currently, the only
204
204
  * supported preloaded data is synthetic data generated from Synthea.</p>
205
205
  * @public
206
206
  */
207
- PreloadDataConfig?: PreloadDataConfig;
207
+ PreloadDataConfig?: PreloadDataConfig | undefined;
208
208
  /**
209
209
  * <p>Optional user provided token used for ensuring idempotency.</p>
210
210
  * @public
211
211
  */
212
- ClientToken?: string;
212
+ ClientToken?: string | undefined;
213
213
  /**
214
214
  * <p>
215
215
  * Resource tags that are applied to a data store when it is created.
216
216
  * </p>
217
217
  * @public
218
218
  */
219
- Tags?: Tag[];
219
+ Tags?: Tag[] | undefined;
220
220
  /**
221
221
  * <p>The configuration of the identity provider that you want to use for your data store.</p>
222
222
  * @public
223
223
  */
224
- IdentityProviderConfiguration?: IdentityProviderConfiguration;
224
+ IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
225
225
  }
226
226
  /**
227
227
  * @public
@@ -272,7 +272,7 @@ export interface CreateFHIRDatastoreResponse {
272
272
  export declare class InternalServerException extends __BaseException {
273
273
  readonly name: "InternalServerException";
274
274
  readonly $fault: "server";
275
- Message?: string;
275
+ Message?: string | undefined;
276
276
  /**
277
277
  * @internal
278
278
  */
@@ -285,7 +285,7 @@ export declare class InternalServerException extends __BaseException {
285
285
  export declare class ThrottlingException extends __BaseException {
286
286
  readonly name: "ThrottlingException";
287
287
  readonly $fault: "client";
288
- Message?: string;
288
+ Message?: string | undefined;
289
289
  /**
290
290
  * @internal
291
291
  */
@@ -298,7 +298,7 @@ export declare class ThrottlingException extends __BaseException {
298
298
  export declare class ValidationException extends __BaseException {
299
299
  readonly name: "ValidationException";
300
300
  readonly $fault: "client";
301
- Message?: string;
301
+ Message?: string | undefined;
302
302
  /**
303
303
  * @internal
304
304
  */
@@ -313,24 +313,24 @@ export interface DatastoreFilter {
313
313
  * <p>Allows the user to filter data store results by name.</p>
314
314
  * @public
315
315
  */
316
- DatastoreName?: string;
316
+ DatastoreName?: string | undefined;
317
317
  /**
318
318
  * <p>Allows the user to filter data store results by status.</p>
319
319
  * @public
320
320
  */
321
- DatastoreStatus?: DatastoreStatus;
321
+ DatastoreStatus?: DatastoreStatus | undefined;
322
322
  /**
323
323
  * <p>A filter that allows the user to set cutoff dates for records. All data stores created
324
324
  * before the specified date will be included in the results. </p>
325
325
  * @public
326
326
  */
327
- CreatedBefore?: Date;
327
+ CreatedBefore?: Date | undefined;
328
328
  /**
329
329
  * <p>A filter that allows the user to set cutoff dates for records. All data stores created
330
330
  * after the specified date will be included in the results.</p>
331
331
  * @public
332
332
  */
333
- CreatedAfter?: Date;
333
+ CreatedAfter?: Date | undefined;
334
334
  }
335
335
  /**
336
336
  * @public
@@ -353,12 +353,12 @@ export interface ErrorCause {
353
353
  * <p>The text of the error message.</p>
354
354
  * @public
355
355
  */
356
- ErrorMessage?: string;
356
+ ErrorMessage?: string | undefined;
357
357
  /**
358
358
  * <p>The error category of the create/delete data store operation. Possible statuses are RETRYABLE_ERROR or NON_RETRYABLE_ERROR.</p>
359
359
  * @public
360
360
  */
361
- ErrorCategory?: ErrorCategory;
361
+ ErrorCategory?: ErrorCategory | undefined;
362
362
  }
363
363
  /**
364
364
  * <p>Displays the properties of the data store, including the ID, ARN, name, and the status of the data store.</p>
@@ -379,7 +379,7 @@ export interface DatastoreProperties {
379
379
  * <p>The user-generated name for the data store.</p>
380
380
  * @public
381
381
  */
382
- DatastoreName?: string;
382
+ DatastoreName?: string | undefined;
383
383
  /**
384
384
  * <p>The status of the data store.</p>
385
385
  * @public
@@ -389,7 +389,7 @@ export interface DatastoreProperties {
389
389
  * <p>The time that a data store was created. </p>
390
390
  * @public
391
391
  */
392
- CreatedAt?: Date;
392
+ CreatedAt?: Date | undefined;
393
393
  /**
394
394
  * <p>The FHIR version. Only R4 version data is supported.</p>
395
395
  * @public
@@ -406,22 +406,22 @@ export interface DatastoreProperties {
406
406
  * </p>
407
407
  * @public
408
408
  */
409
- SseConfiguration?: SseConfiguration;
409
+ SseConfiguration?: SseConfiguration | undefined;
410
410
  /**
411
411
  * <p>The preloaded data configuration for the data store. Only data preloaded from Synthea is supported.</p>
412
412
  * @public
413
413
  */
414
- PreloadDataConfig?: PreloadDataConfig;
414
+ PreloadDataConfig?: PreloadDataConfig | undefined;
415
415
  /**
416
416
  * <p>The identity provider that you selected when you created the data store.</p>
417
417
  * @public
418
418
  */
419
- IdentityProviderConfiguration?: IdentityProviderConfiguration;
419
+ IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
420
420
  /**
421
421
  * <p>The error cause for the current data store operation.</p>
422
422
  * @public
423
423
  */
424
- ErrorCause?: ErrorCause;
424
+ ErrorCause?: ErrorCause | undefined;
425
425
  }
426
426
  /**
427
427
  * @public
@@ -466,7 +466,7 @@ export interface DeleteFHIRDatastoreResponse {
466
466
  export declare class ResourceNotFoundException extends __BaseException {
467
467
  readonly name: "ResourceNotFoundException";
468
468
  readonly $fault: "client";
469
- Message?: string;
469
+ Message?: string | undefined;
470
470
  /**
471
471
  * @internal
472
472
  */
@@ -595,7 +595,7 @@ export interface ExportJobProperties {
595
595
  * <p>The user generated name for an export job.</p>
596
596
  * @public
597
597
  */
598
- JobName?: string;
598
+ JobName?: string | undefined;
599
599
  /**
600
600
  * <p>The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.</p>
601
601
  * @public
@@ -610,7 +610,7 @@ export interface ExportJobProperties {
610
610
  * <p>The time an export job completed.</p>
611
611
  * @public
612
612
  */
613
- EndTime?: Date;
613
+ EndTime?: Date | undefined;
614
614
  /**
615
615
  * <p>The AWS generated ID for the data store from which files are being exported for an export job.</p>
616
616
  * @public
@@ -625,12 +625,12 @@ export interface ExportJobProperties {
625
625
  * <p>The Amazon Resource Name used during the initiation of the job.</p>
626
626
  * @public
627
627
  */
628
- DataAccessRoleArn?: string;
628
+ DataAccessRoleArn?: string | undefined;
629
629
  /**
630
630
  * <p>An explanation of any errors that may have occurred during the export job.</p>
631
631
  * @public
632
632
  */
633
- Message?: string;
633
+ Message?: string | undefined;
634
634
  }
635
635
  /**
636
636
  * @public
@@ -696,42 +696,42 @@ export interface JobProgressReport {
696
696
  * <p>The number of files scanned from input S3 bucket.</p>
697
697
  * @public
698
698
  */
699
- TotalNumberOfScannedFiles?: number;
699
+ TotalNumberOfScannedFiles?: number | undefined;
700
700
  /**
701
701
  * <p>The size (in MB) of the files scanned from the input S3 bucket.</p>
702
702
  * @public
703
703
  */
704
- TotalSizeOfScannedFilesInMB?: number;
704
+ TotalSizeOfScannedFilesInMB?: number | undefined;
705
705
  /**
706
706
  * <p>The number of files imported so far.</p>
707
707
  * @public
708
708
  */
709
- TotalNumberOfImportedFiles?: number;
709
+ TotalNumberOfImportedFiles?: number | undefined;
710
710
  /**
711
711
  * <p>The number of resources scanned from the input S3 bucket.</p>
712
712
  * @public
713
713
  */
714
- TotalNumberOfResourcesScanned?: number;
714
+ TotalNumberOfResourcesScanned?: number | undefined;
715
715
  /**
716
716
  * <p>The number of resources imported so far.</p>
717
717
  * @public
718
718
  */
719
- TotalNumberOfResourcesImported?: number;
719
+ TotalNumberOfResourcesImported?: number | undefined;
720
720
  /**
721
721
  * <p>The number of resources that failed due to customer error.</p>
722
722
  * @public
723
723
  */
724
- TotalNumberOfResourcesWithCustomerError?: number;
724
+ TotalNumberOfResourcesWithCustomerError?: number | undefined;
725
725
  /**
726
726
  * <p>The number of files that failed to be read from the input S3 bucket due to customer error.</p>
727
727
  * @public
728
728
  */
729
- TotalNumberOfFilesReadWithCustomerError?: number;
729
+ TotalNumberOfFilesReadWithCustomerError?: number | undefined;
730
730
  /**
731
731
  * <p>The throughput (in MB/sec) of the import job.</p>
732
732
  * @public
733
733
  */
734
- Throughput?: number;
734
+ Throughput?: number | undefined;
735
735
  }
736
736
  /**
737
737
  * <p>Displays the properties of the import job, including the ID, Arn, Name, the status of the job, and the progress report of the job.</p>
@@ -747,7 +747,7 @@ export interface ImportJobProperties {
747
747
  * <p>The user-generated name for an Import job.</p>
748
748
  * @public
749
749
  */
750
- JobName?: string;
750
+ JobName?: string | undefined;
751
751
  /**
752
752
  * <p>The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED.</p>
753
753
  * @public
@@ -762,7 +762,7 @@ export interface ImportJobProperties {
762
762
  * <p>The time that the Import job was completed.</p>
763
763
  * @public
764
764
  */
765
- EndTime?: Date;
765
+ EndTime?: Date | undefined;
766
766
  /**
767
767
  * <p>The datastore id used when the Import job was created. </p>
768
768
  * @public
@@ -777,22 +777,22 @@ export interface ImportJobProperties {
777
777
  * <p>The output data configuration that was supplied when the export job was created.</p>
778
778
  * @public
779
779
  */
780
- JobOutputDataConfig?: OutputDataConfig;
780
+ JobOutputDataConfig?: OutputDataConfig | undefined;
781
781
  /**
782
782
  * <p>Displays the progress of the import job, including total resources scanned, total resources ingested, and total size of data ingested.</p>
783
783
  * @public
784
784
  */
785
- JobProgressReport?: JobProgressReport;
785
+ JobProgressReport?: JobProgressReport | undefined;
786
786
  /**
787
787
  * <p>The Amazon Resource Name (ARN) that gives AWS HealthLake access to your input data.</p>
788
788
  * @public
789
789
  */
790
- DataAccessRoleArn?: string;
790
+ DataAccessRoleArn?: string | undefined;
791
791
  /**
792
792
  * <p>An explanation of any errors that may have occurred during the FHIR import job. </p>
793
793
  * @public
794
794
  */
795
- Message?: string;
795
+ Message?: string | undefined;
796
796
  }
797
797
  /**
798
798
  * @public
@@ -812,17 +812,17 @@ export interface ListFHIRDatastoresRequest {
812
812
  * <p>Lists all filters associated with a FHIR data store request.</p>
813
813
  * @public
814
814
  */
815
- Filter?: DatastoreFilter;
815
+ Filter?: DatastoreFilter | undefined;
816
816
  /**
817
817
  * <p>Fetches the next page of data stores when results are paginated.</p>
818
818
  * @public
819
819
  */
820
- NextToken?: string;
820
+ NextToken?: string | undefined;
821
821
  /**
822
822
  * <p>The maximum number of data stores returned in a single page of a ListFHIRDatastoresRequest call.</p>
823
823
  * @public
824
824
  */
825
- MaxResults?: number;
825
+ MaxResults?: number | undefined;
826
826
  }
827
827
  /**
828
828
  * @public
@@ -837,7 +837,7 @@ export interface ListFHIRDatastoresResponse {
837
837
  * <p>Pagination token that can be used to retrieve the next page of results.</p>
838
838
  * @public
839
839
  */
840
- NextToken?: string;
840
+ NextToken?: string | undefined;
841
841
  }
842
842
  /**
843
843
  * @public
@@ -856,42 +856,42 @@ export interface ListFHIRExportJobsRequest {
856
856
  * </p>
857
857
  * @public
858
858
  */
859
- NextToken?: string;
859
+ NextToken?: string | undefined;
860
860
  /**
861
861
  * <p>
862
862
  * This parameter limits the number of results returned for a ListFHIRExportJobs to a maximum quantity specified by the user.
863
863
  * </p>
864
864
  * @public
865
865
  */
866
- MaxResults?: number;
866
+ MaxResults?: number | undefined;
867
867
  /**
868
868
  * <p>
869
869
  * This parameter limits the response to the export job with the specified job name.
870
870
  * </p>
871
871
  * @public
872
872
  */
873
- JobName?: string;
873
+ JobName?: string | undefined;
874
874
  /**
875
875
  * <p>
876
876
  * This parameter limits the response to the export jobs with the specified job status.
877
877
  * </p>
878
878
  * @public
879
879
  */
880
- JobStatus?: JobStatus;
880
+ JobStatus?: JobStatus | undefined;
881
881
  /**
882
882
  * <p>
883
883
  * This parameter limits the response to FHIR export jobs submitted before a user specified date.
884
884
  * </p>
885
885
  * @public
886
886
  */
887
- SubmittedBefore?: Date;
887
+ SubmittedBefore?: Date | undefined;
888
888
  /**
889
889
  * <p>
890
890
  * This parameter limits the response to FHIR export jobs submitted after a user specified date.
891
891
  * </p>
892
892
  * @public
893
893
  */
894
- SubmittedAfter?: Date;
894
+ SubmittedAfter?: Date | undefined;
895
895
  }
896
896
  /**
897
897
  * @public
@@ -910,7 +910,7 @@ export interface ListFHIRExportJobsResponse {
910
910
  * </p>
911
911
  * @public
912
912
  */
913
- NextToken?: string;
913
+ NextToken?: string | undefined;
914
914
  }
915
915
  /**
916
916
  * @public
@@ -929,42 +929,42 @@ export interface ListFHIRImportJobsRequest {
929
929
  * </p>
930
930
  * @public
931
931
  */
932
- NextToken?: string;
932
+ NextToken?: string | undefined;
933
933
  /**
934
934
  * <p>
935
935
  * This parameter limits the number of results returned for a ListFHIRImportJobs to a maximum quantity specified by the user.
936
936
  * </p>
937
937
  * @public
938
938
  */
939
- MaxResults?: number;
939
+ MaxResults?: number | undefined;
940
940
  /**
941
941
  * <p>
942
942
  * This parameter limits the response to the import job with the specified job name.
943
943
  * </p>
944
944
  * @public
945
945
  */
946
- JobName?: string;
946
+ JobName?: string | undefined;
947
947
  /**
948
948
  * <p>
949
949
  * This parameter limits the response to the import job with the specified job status.
950
950
  * </p>
951
951
  * @public
952
952
  */
953
- JobStatus?: JobStatus;
953
+ JobStatus?: JobStatus | undefined;
954
954
  /**
955
955
  * <p>
956
956
  * This parameter limits the response to FHIR import jobs submitted before a user specified date.
957
957
  * </p>
958
958
  * @public
959
959
  */
960
- SubmittedBefore?: Date;
960
+ SubmittedBefore?: Date | undefined;
961
961
  /**
962
962
  * <p>
963
963
  * This parameter limits the response to FHIR import jobs submitted after a user specified date.
964
964
  * </p>
965
965
  * @public
966
966
  */
967
- SubmittedAfter?: Date;
967
+ SubmittedAfter?: Date | undefined;
968
968
  }
969
969
  /**
970
970
  * @public
@@ -983,7 +983,7 @@ export interface ListFHIRImportJobsResponse {
983
983
  * </p>
984
984
  * @public
985
985
  */
986
- NextToken?: string;
986
+ NextToken?: string | undefined;
987
987
  }
988
988
  /**
989
989
  * @public
@@ -1007,7 +1007,7 @@ export interface ListTagsForResourceResponse {
1007
1007
  * </p>
1008
1008
  * @public
1009
1009
  */
1010
- Tags?: Tag[];
1010
+ Tags?: Tag[] | undefined;
1011
1011
  }
1012
1012
  /**
1013
1013
  * @public
@@ -1017,7 +1017,7 @@ export interface StartFHIRExportJobRequest {
1017
1017
  * <p>The user generated name for an export job.</p>
1018
1018
  * @public
1019
1019
  */
1020
- JobName?: string;
1020
+ JobName?: string | undefined;
1021
1021
  /**
1022
1022
  * <p>The output data configuration that was supplied when the export job was created.</p>
1023
1023
  * @public
@@ -1037,7 +1037,7 @@ export interface StartFHIRExportJobRequest {
1037
1037
  * <p>An optional user provided token used for ensuring idempotency.</p>
1038
1038
  * @public
1039
1039
  */
1040
- ClientToken?: string;
1040
+ ClientToken?: string | undefined;
1041
1041
  }
1042
1042
  /**
1043
1043
  * @public
@@ -1057,7 +1057,7 @@ export interface StartFHIRExportJobResponse {
1057
1057
  * <p>The AWS generated ID for the data store from which files are being exported for an export job.</p>
1058
1058
  * @public
1059
1059
  */
1060
- DatastoreId?: string;
1060
+ DatastoreId?: string | undefined;
1061
1061
  }
1062
1062
  /**
1063
1063
  * @public
@@ -1067,7 +1067,7 @@ export interface StartFHIRImportJobRequest {
1067
1067
  * <p>The name of the FHIR Import job in the StartFHIRImport job request.</p>
1068
1068
  * @public
1069
1069
  */
1070
- JobName?: string;
1070
+ JobName?: string | undefined;
1071
1071
  /**
1072
1072
  * <p>The input properties of the FHIR Import job in the StartFHIRImport job request.</p>
1073
1073
  * @public
@@ -1092,7 +1092,7 @@ export interface StartFHIRImportJobRequest {
1092
1092
  * <p>Optional user provided token used for ensuring idempotency.</p>
1093
1093
  * @public
1094
1094
  */
1095
- ClientToken?: string;
1095
+ ClientToken?: string | undefined;
1096
1096
  }
1097
1097
  /**
1098
1098
  * @public
@@ -1112,7 +1112,7 @@ export interface StartFHIRImportJobResponse {
1112
1112
  * <p>The AWS-generated data store ID.</p>
1113
1113
  * @public
1114
1114
  */
1115
- DatastoreId?: string;
1115
+ DatastoreId?: string | undefined;
1116
1116
  }
1117
1117
  /**
1118
1118
  * @public
@@ -3,7 +3,7 @@ import { HealthLakeServiceException as __BaseException } from "./HealthLakeServi
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -22,7 +22,7 @@ export type CmkType = (typeof CmkType)[keyof typeof CmkType];
22
22
  export declare class ConflictException extends __BaseException {
23
23
  readonly name: "ConflictException";
24
24
  readonly $fault: "client";
25
- Message?: string;
25
+ Message?: string | undefined;
26
26
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
27
27
  }
28
28
  export declare const FHIRVersion: {
@@ -31,9 +31,9 @@ export declare const FHIRVersion: {
31
31
  export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
32
32
  export interface IdentityProviderConfiguration {
33
33
  AuthorizationStrategy: AuthorizationStrategy | undefined;
34
- FineGrainedAuthorizationEnabled?: boolean;
35
- Metadata?: string;
36
- IdpLambdaArn?: string;
34
+ FineGrainedAuthorizationEnabled?: boolean | undefined;
35
+ Metadata?: string | undefined;
36
+ IdpLambdaArn?: string | undefined;
37
37
  }
38
38
  export declare const PreloadDataType: {
39
39
  readonly SYNTHEA: "SYNTHEA";
@@ -45,7 +45,7 @@ export interface PreloadDataConfig {
45
45
  }
46
46
  export interface KmsEncryptionConfig {
47
47
  CmkType: CmkType | undefined;
48
- KmsKeyId?: string;
48
+ KmsKeyId?: string | undefined;
49
49
  }
50
50
  export interface SseConfiguration {
51
51
  KmsEncryptionConfig: KmsEncryptionConfig | undefined;
@@ -55,13 +55,13 @@ export interface Tag {
55
55
  Value: string | undefined;
56
56
  }
57
57
  export interface CreateFHIRDatastoreRequest {
58
- DatastoreName?: string;
58
+ DatastoreName?: string | undefined;
59
59
  DatastoreTypeVersion: FHIRVersion | undefined;
60
- SseConfiguration?: SseConfiguration;
61
- PreloadDataConfig?: PreloadDataConfig;
62
- ClientToken?: string;
63
- Tags?: Tag[];
64
- IdentityProviderConfiguration?: IdentityProviderConfiguration;
60
+ SseConfiguration?: SseConfiguration | undefined;
61
+ PreloadDataConfig?: PreloadDataConfig | undefined;
62
+ ClientToken?: string | undefined;
63
+ Tags?: Tag[] | undefined;
64
+ IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
65
65
  }
66
66
  export declare const DatastoreStatus: {
67
67
  readonly ACTIVE: "ACTIVE";
@@ -81,7 +81,7 @@ export interface CreateFHIRDatastoreResponse {
81
81
  export declare class InternalServerException extends __BaseException {
82
82
  readonly name: "InternalServerException";
83
83
  readonly $fault: "server";
84
- Message?: string;
84
+ Message?: string | undefined;
85
85
  constructor(
86
86
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
87
87
  );
@@ -89,7 +89,7 @@ export declare class InternalServerException extends __BaseException {
89
89
  export declare class ThrottlingException extends __BaseException {
90
90
  readonly name: "ThrottlingException";
91
91
  readonly $fault: "client";
92
- Message?: string;
92
+ Message?: string | undefined;
93
93
  constructor(
94
94
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
95
95
  );
@@ -97,16 +97,16 @@ export declare class ThrottlingException extends __BaseException {
97
97
  export declare class ValidationException extends __BaseException {
98
98
  readonly name: "ValidationException";
99
99
  readonly $fault: "client";
100
- Message?: string;
100
+ Message?: string | undefined;
101
101
  constructor(
102
102
  opts: __ExceptionOptionType<ValidationException, __BaseException>
103
103
  );
104
104
  }
105
105
  export interface DatastoreFilter {
106
- DatastoreName?: string;
107
- DatastoreStatus?: DatastoreStatus;
108
- CreatedBefore?: Date;
109
- CreatedAfter?: Date;
106
+ DatastoreName?: string | undefined;
107
+ DatastoreStatus?: DatastoreStatus | undefined;
108
+ CreatedBefore?: Date | undefined;
109
+ CreatedAfter?: Date | undefined;
110
110
  }
111
111
  export declare const ErrorCategory: {
112
112
  readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR";
@@ -114,21 +114,21 @@ export declare const ErrorCategory: {
114
114
  };
115
115
  export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
116
116
  export interface ErrorCause {
117
- ErrorMessage?: string;
118
- ErrorCategory?: ErrorCategory;
117
+ ErrorMessage?: string | undefined;
118
+ ErrorCategory?: ErrorCategory | undefined;
119
119
  }
120
120
  export interface DatastoreProperties {
121
121
  DatastoreId: string | undefined;
122
122
  DatastoreArn: string | undefined;
123
- DatastoreName?: string;
123
+ DatastoreName?: string | undefined;
124
124
  DatastoreStatus: DatastoreStatus | undefined;
125
- CreatedAt?: Date;
125
+ CreatedAt?: Date | undefined;
126
126
  DatastoreTypeVersion: FHIRVersion | undefined;
127
127
  DatastoreEndpoint: string | undefined;
128
- SseConfiguration?: SseConfiguration;
129
- PreloadDataConfig?: PreloadDataConfig;
130
- IdentityProviderConfiguration?: IdentityProviderConfiguration;
131
- ErrorCause?: ErrorCause;
128
+ SseConfiguration?: SseConfiguration | undefined;
129
+ PreloadDataConfig?: PreloadDataConfig | undefined;
130
+ IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
131
+ ErrorCause?: ErrorCause | undefined;
132
132
  }
133
133
  export interface DeleteFHIRDatastoreRequest {
134
134
  DatastoreId: string | undefined;
@@ -142,7 +142,7 @@ export interface DeleteFHIRDatastoreResponse {
142
142
  export declare class ResourceNotFoundException extends __BaseException {
143
143
  readonly name: "ResourceNotFoundException";
144
144
  readonly $fault: "client";
145
- Message?: string;
145
+ Message?: string | undefined;
146
146
  constructor(
147
147
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
148
148
  );
@@ -193,14 +193,14 @@ export declare namespace OutputDataConfig {
193
193
  }
194
194
  export interface ExportJobProperties {
195
195
  JobId: string | undefined;
196
- JobName?: string;
196
+ JobName?: string | undefined;
197
197
  JobStatus: JobStatus | undefined;
198
198
  SubmitTime: Date | undefined;
199
- EndTime?: Date;
199
+ EndTime?: Date | undefined;
200
200
  DatastoreId: string | undefined;
201
201
  OutputDataConfig: OutputDataConfig | undefined;
202
- DataAccessRoleArn?: string;
203
- Message?: string;
202
+ DataAccessRoleArn?: string | undefined;
203
+ Message?: string | undefined;
204
204
  }
205
205
  export interface DescribeFHIRExportJobResponse {
206
206
  ExportJobProperties: ExportJobProperties | undefined;
@@ -228,96 +228,96 @@ export declare namespace InputDataConfig {
228
228
  const visit: <T>(value: InputDataConfig, visitor: Visitor<T>) => T;
229
229
  }
230
230
  export interface JobProgressReport {
231
- TotalNumberOfScannedFiles?: number;
232
- TotalSizeOfScannedFilesInMB?: number;
233
- TotalNumberOfImportedFiles?: number;
234
- TotalNumberOfResourcesScanned?: number;
235
- TotalNumberOfResourcesImported?: number;
236
- TotalNumberOfResourcesWithCustomerError?: number;
237
- TotalNumberOfFilesReadWithCustomerError?: number;
238
- Throughput?: number;
231
+ TotalNumberOfScannedFiles?: number | undefined;
232
+ TotalSizeOfScannedFilesInMB?: number | undefined;
233
+ TotalNumberOfImportedFiles?: number | undefined;
234
+ TotalNumberOfResourcesScanned?: number | undefined;
235
+ TotalNumberOfResourcesImported?: number | undefined;
236
+ TotalNumberOfResourcesWithCustomerError?: number | undefined;
237
+ TotalNumberOfFilesReadWithCustomerError?: number | undefined;
238
+ Throughput?: number | undefined;
239
239
  }
240
240
  export interface ImportJobProperties {
241
241
  JobId: string | undefined;
242
- JobName?: string;
242
+ JobName?: string | undefined;
243
243
  JobStatus: JobStatus | undefined;
244
244
  SubmitTime: Date | undefined;
245
- EndTime?: Date;
245
+ EndTime?: Date | undefined;
246
246
  DatastoreId: string | undefined;
247
247
  InputDataConfig: InputDataConfig | undefined;
248
- JobOutputDataConfig?: OutputDataConfig;
249
- JobProgressReport?: JobProgressReport;
250
- DataAccessRoleArn?: string;
251
- Message?: string;
248
+ JobOutputDataConfig?: OutputDataConfig | undefined;
249
+ JobProgressReport?: JobProgressReport | undefined;
250
+ DataAccessRoleArn?: string | undefined;
251
+ Message?: string | undefined;
252
252
  }
253
253
  export interface DescribeFHIRImportJobResponse {
254
254
  ImportJobProperties: ImportJobProperties | undefined;
255
255
  }
256
256
  export interface ListFHIRDatastoresRequest {
257
- Filter?: DatastoreFilter;
258
- NextToken?: string;
259
- MaxResults?: number;
257
+ Filter?: DatastoreFilter | undefined;
258
+ NextToken?: string | undefined;
259
+ MaxResults?: number | undefined;
260
260
  }
261
261
  export interface ListFHIRDatastoresResponse {
262
262
  DatastorePropertiesList: DatastoreProperties[] | undefined;
263
- NextToken?: string;
263
+ NextToken?: string | undefined;
264
264
  }
265
265
  export interface ListFHIRExportJobsRequest {
266
266
  DatastoreId: string | undefined;
267
- NextToken?: string;
268
- MaxResults?: number;
269
- JobName?: string;
270
- JobStatus?: JobStatus;
271
- SubmittedBefore?: Date;
272
- SubmittedAfter?: Date;
267
+ NextToken?: string | undefined;
268
+ MaxResults?: number | undefined;
269
+ JobName?: string | undefined;
270
+ JobStatus?: JobStatus | undefined;
271
+ SubmittedBefore?: Date | undefined;
272
+ SubmittedAfter?: Date | undefined;
273
273
  }
274
274
  export interface ListFHIRExportJobsResponse {
275
275
  ExportJobPropertiesList: ExportJobProperties[] | undefined;
276
- NextToken?: string;
276
+ NextToken?: string | undefined;
277
277
  }
278
278
  export interface ListFHIRImportJobsRequest {
279
279
  DatastoreId: string | undefined;
280
- NextToken?: string;
281
- MaxResults?: number;
282
- JobName?: string;
283
- JobStatus?: JobStatus;
284
- SubmittedBefore?: Date;
285
- SubmittedAfter?: Date;
280
+ NextToken?: string | undefined;
281
+ MaxResults?: number | undefined;
282
+ JobName?: string | undefined;
283
+ JobStatus?: JobStatus | undefined;
284
+ SubmittedBefore?: Date | undefined;
285
+ SubmittedAfter?: Date | undefined;
286
286
  }
287
287
  export interface ListFHIRImportJobsResponse {
288
288
  ImportJobPropertiesList: ImportJobProperties[] | undefined;
289
- NextToken?: string;
289
+ NextToken?: string | undefined;
290
290
  }
291
291
  export interface ListTagsForResourceRequest {
292
292
  ResourceARN: string | undefined;
293
293
  }
294
294
  export interface ListTagsForResourceResponse {
295
- Tags?: Tag[];
295
+ Tags?: Tag[] | undefined;
296
296
  }
297
297
  export interface StartFHIRExportJobRequest {
298
- JobName?: string;
298
+ JobName?: string | undefined;
299
299
  OutputDataConfig: OutputDataConfig | undefined;
300
300
  DatastoreId: string | undefined;
301
301
  DataAccessRoleArn: string | undefined;
302
- ClientToken?: string;
302
+ ClientToken?: string | undefined;
303
303
  }
304
304
  export interface StartFHIRExportJobResponse {
305
305
  JobId: string | undefined;
306
306
  JobStatus: JobStatus | undefined;
307
- DatastoreId?: string;
307
+ DatastoreId?: string | undefined;
308
308
  }
309
309
  export interface StartFHIRImportJobRequest {
310
- JobName?: string;
310
+ JobName?: string | undefined;
311
311
  InputDataConfig: InputDataConfig | undefined;
312
312
  JobOutputDataConfig: OutputDataConfig | undefined;
313
313
  DatastoreId: string | undefined;
314
314
  DataAccessRoleArn: string | undefined;
315
- ClientToken?: string;
315
+ ClientToken?: string | undefined;
316
316
  }
317
317
  export interface StartFHIRImportJobResponse {
318
318
  JobId: string | undefined;
319
319
  JobStatus: JobStatus | undefined;
320
- DatastoreId?: string;
320
+ DatastoreId?: string | undefined;
321
321
  }
322
322
  export interface TagResourceRequest {
323
323
  ResourceARN: string | undefined;
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.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-healthlake",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",