@aws-sdk/client-medical-imaging 3.686.0 → 3.691.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.
@@ -68,7 +68,7 @@ export interface CopySourceImageSetInformation {
68
68
  * For example, when copying subsets.</p>
69
69
  * @public
70
70
  */
71
- DICOMCopies?: MetadataCopies;
71
+ DICOMCopies?: MetadataCopies | undefined;
72
72
  }
73
73
  /**
74
74
  * <p>Copy image set information.</p>
@@ -84,7 +84,7 @@ export interface CopyImageSetInformation {
84
84
  * <p>The destination image set.</p>
85
85
  * @public
86
86
  */
87
- destinationImageSet?: CopyDestinationImageSet;
87
+ destinationImageSet?: CopyDestinationImageSet | undefined;
88
88
  }
89
89
  /**
90
90
  * @public
@@ -110,7 +110,7 @@ export interface CopyImageSetRequest {
110
110
  * metadata are mismatched across the <code>sourceImageSet</code> and <code>destinationImageSet</code>.</p>
111
111
  * @public
112
112
  */
113
- force?: boolean;
113
+ force?: boolean | undefined;
114
114
  }
115
115
  /**
116
116
  * @public
@@ -164,27 +164,27 @@ export interface CopyDestinationImageSetProperties {
164
164
  * <p>The image set state of the destination image set properties.</p>
165
165
  * @public
166
166
  */
167
- imageSetState?: ImageSetState;
167
+ imageSetState?: ImageSetState | undefined;
168
168
  /**
169
169
  * <p>The image set workflow status of the destination image set properties.</p>
170
170
  * @public
171
171
  */
172
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
172
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
173
173
  /**
174
174
  * <p>The timestamp when the destination image set properties were created.</p>
175
175
  * @public
176
176
  */
177
- createdAt?: Date;
177
+ createdAt?: Date | undefined;
178
178
  /**
179
179
  * <p>The timestamp when the destination image set properties were last updated.</p>
180
180
  * @public
181
181
  */
182
- updatedAt?: Date;
182
+ updatedAt?: Date | undefined;
183
183
  /**
184
184
  * <p>The Amazon Resource Name (ARN) assigned to the destination image set.</p>
185
185
  * @public
186
186
  */
187
- imageSetArn?: string;
187
+ imageSetArn?: string | undefined;
188
188
  }
189
189
  /**
190
190
  * <p>Copy source image set properties.</p>
@@ -205,27 +205,27 @@ export interface CopySourceImageSetProperties {
205
205
  * <p>The image set state of the copied source image set.</p>
206
206
  * @public
207
207
  */
208
- imageSetState?: ImageSetState;
208
+ imageSetState?: ImageSetState | undefined;
209
209
  /**
210
210
  * <p>The workflow status of the copied source image set.</p>
211
211
  * @public
212
212
  */
213
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
213
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
214
214
  /**
215
215
  * <p>The timestamp when the source image set properties were created.</p>
216
216
  * @public
217
217
  */
218
- createdAt?: Date;
218
+ createdAt?: Date | undefined;
219
219
  /**
220
220
  * <p>The timestamp when the source image set properties were updated.</p>
221
221
  * @public
222
222
  */
223
- updatedAt?: Date;
223
+ updatedAt?: Date | undefined;
224
224
  /**
225
225
  * <p>The Amazon Resource Name (ARN) assigned to the source image set.</p>
226
226
  * @public
227
227
  */
228
- imageSetArn?: string;
228
+ imageSetArn?: string | undefined;
229
229
  }
230
230
  /**
231
231
  * @public
@@ -315,22 +315,22 @@ export interface CreateDatastoreRequest {
315
315
  * <p>The data store name.</p>
316
316
  * @public
317
317
  */
318
- datastoreName?: string;
318
+ datastoreName?: string | undefined;
319
319
  /**
320
320
  * <p>A unique identifier for API idempotency.</p>
321
321
  * @public
322
322
  */
323
- clientToken?: string;
323
+ clientToken?: string | undefined;
324
324
  /**
325
325
  * <p>The tags provided when creating a data store.</p>
326
326
  * @public
327
327
  */
328
- tags?: Record<string, string>;
328
+ tags?: Record<string, string> | undefined;
329
329
  /**
330
330
  * <p>The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.</p>
331
331
  * @public
332
332
  */
333
- kmsKeyArn?: string;
333
+ kmsKeyArn?: string | undefined;
334
334
  }
335
335
  /**
336
336
  * @public
@@ -421,22 +421,22 @@ export interface DatastoreProperties {
421
421
  * <p>The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.</p>
422
422
  * @public
423
423
  */
424
- kmsKeyArn?: string;
424
+ kmsKeyArn?: string | undefined;
425
425
  /**
426
426
  * <p>The Amazon Resource Name (ARN) for the data store.</p>
427
427
  * @public
428
428
  */
429
- datastoreArn?: string;
429
+ datastoreArn?: string | undefined;
430
430
  /**
431
431
  * <p>The timestamp when the data store was created.</p>
432
432
  * @public
433
433
  */
434
- createdAt?: Date;
434
+ createdAt?: Date | undefined;
435
435
  /**
436
436
  * <p>The timestamp when the data store was last updated.</p>
437
437
  * @public
438
438
  */
439
- updatedAt?: Date;
439
+ updatedAt?: Date | undefined;
440
440
  }
441
441
  /**
442
442
  * @public
@@ -456,17 +456,17 @@ export interface ListDatastoresRequest {
456
456
  * <p>The data store status.</p>
457
457
  * @public
458
458
  */
459
- datastoreStatus?: DatastoreStatus;
459
+ datastoreStatus?: DatastoreStatus | undefined;
460
460
  /**
461
461
  * <p>The pagination token used to request the list of data stores on the next page.</p>
462
462
  * @public
463
463
  */
464
- nextToken?: string;
464
+ nextToken?: string | undefined;
465
465
  /**
466
466
  * <p>Valid Range: Minimum value of 1. Maximum value of 50.</p>
467
467
  * @public
468
468
  */
469
- maxResults?: number;
469
+ maxResults?: number | undefined;
470
470
  }
471
471
  /**
472
472
  * <p>List of summaries of data stores.</p>
@@ -492,17 +492,17 @@ export interface DatastoreSummary {
492
492
  * <p>The Amazon Resource Name (ARN) for the data store.</p>
493
493
  * @public
494
494
  */
495
- datastoreArn?: string;
495
+ datastoreArn?: string | undefined;
496
496
  /**
497
497
  * <p>The timestamp when the data store was created.</p>
498
498
  * @public
499
499
  */
500
- createdAt?: Date;
500
+ createdAt?: Date | undefined;
501
501
  /**
502
502
  * <p>The timestamp when the data store was last updated.</p>
503
503
  * @public
504
504
  */
505
- updatedAt?: Date;
505
+ updatedAt?: Date | undefined;
506
506
  }
507
507
  /**
508
508
  * @public
@@ -512,12 +512,12 @@ export interface ListDatastoresResponse {
512
512
  * <p>The list of summaries of data stores.</p>
513
513
  * @public
514
514
  */
515
- datastoreSummaries?: DatastoreSummary[];
515
+ datastoreSummaries?: DatastoreSummary[] | undefined;
516
516
  /**
517
517
  * <p>The pagination token used to retrieve the list of data stores on the next page.</p>
518
518
  * @public
519
519
  */
520
- nextToken?: string;
520
+ nextToken?: string | undefined;
521
521
  }
522
522
  /**
523
523
  * @public
@@ -622,12 +622,12 @@ export interface DICOMImportJobProperties {
622
622
  * <p>The timestamp for when the import job was ended.</p>
623
623
  * @public
624
624
  */
625
- endedAt?: Date;
625
+ endedAt?: Date | undefined;
626
626
  /**
627
627
  * <p>The timestamp for when the import job was submitted.</p>
628
628
  * @public
629
629
  */
630
- submittedAt?: Date;
630
+ submittedAt?: Date | undefined;
631
631
  /**
632
632
  * <p>The input prefix path for the S3 bucket that contains the DICOM P10 files to be imported.</p>
633
633
  * @public
@@ -642,7 +642,7 @@ export interface DICOMImportJobProperties {
642
642
  * <p>The error message thrown if an import job fails.</p>
643
643
  * @public
644
644
  */
645
- message?: string;
645
+ message?: string | undefined;
646
646
  }
647
647
  /**
648
648
  * @public
@@ -699,7 +699,7 @@ export interface GetImageFrameResponse {
699
699
  * <code>application/octet-stream</code>.</p>
700
700
  * @public
701
701
  */
702
- contentType?: string;
702
+ contentType?: string | undefined;
703
703
  }
704
704
  /**
705
705
  * @public
@@ -719,7 +719,7 @@ export interface GetImageSetRequest {
719
719
  * <p>The image set version identifier.</p>
720
720
  * @public
721
721
  */
722
- versionId?: string;
722
+ versionId?: string | undefined;
723
723
  }
724
724
  /**
725
725
  * <p>Specifies the overrides used in image set modification calls to <code>CopyImageSet</code> and
@@ -732,7 +732,7 @@ export interface Overrides {
732
732
  * operations, even if Patient, Study, or Series level metadata are mismatched.</p>
733
733
  * @public
734
734
  */
735
- forced?: boolean;
735
+ forced?: boolean | undefined;
736
736
  }
737
737
  /**
738
738
  * @public
@@ -762,39 +762,39 @@ export interface GetImageSetResponse {
762
762
  * <p>The image set workflow status.</p>
763
763
  * @public
764
764
  */
765
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
765
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
766
766
  /**
767
767
  * <p>The timestamp when image set properties were created.</p>
768
768
  * @public
769
769
  */
770
- createdAt?: Date;
770
+ createdAt?: Date | undefined;
771
771
  /**
772
772
  * <p>The timestamp when image set properties were updated.</p>
773
773
  * @public
774
774
  */
775
- updatedAt?: Date;
775
+ updatedAt?: Date | undefined;
776
776
  /**
777
777
  * <p>The timestamp when the image set properties were deleted.</p>
778
778
  * @public
779
779
  */
780
- deletedAt?: Date;
780
+ deletedAt?: Date | undefined;
781
781
  /**
782
782
  * <p>The error message thrown if an image set action fails.</p>
783
783
  * @public
784
784
  */
785
- message?: string;
785
+ message?: string | undefined;
786
786
  /**
787
787
  * <p>The Amazon Resource Name (ARN) assigned to the image set.</p>
788
788
  * @public
789
789
  */
790
- imageSetArn?: string;
790
+ imageSetArn?: string | undefined;
791
791
  /**
792
792
  * <p>This object contains the details of any overrides used while creating a specific image set version.
793
793
  * If an image set was copied or updated using the <code>force</code> flag, this object will contain the
794
794
  * <code>forced</code> flag.</p>
795
795
  * @public
796
796
  */
797
- overrides?: Overrides;
797
+ overrides?: Overrides | undefined;
798
798
  }
799
799
  /**
800
800
  * @public
@@ -814,7 +814,7 @@ export interface GetImageSetMetadataRequest {
814
814
  * <p>The image set version identifier.</p>
815
815
  * @public
816
816
  */
817
- versionId?: string;
817
+ versionId?: string | undefined;
818
818
  }
819
819
  /**
820
820
  * @public
@@ -829,12 +829,12 @@ export interface GetImageSetMetadataResponse {
829
829
  * <p>The format in which the study metadata is returned to the customer. Default is <code>text/plain</code>.</p>
830
830
  * @public
831
831
  */
832
- contentType?: string;
832
+ contentType?: string | undefined;
833
833
  /**
834
834
  * <p>The compression format in which image set metadata attributes are returned.</p>
835
835
  * @public
836
836
  */
837
- contentEncoding?: string;
837
+ contentEncoding?: string | undefined;
838
838
  }
839
839
  /**
840
840
  * @public
@@ -849,17 +849,17 @@ export interface ListDICOMImportJobsRequest {
849
849
  * <p>The filters for listing import jobs based on status.</p>
850
850
  * @public
851
851
  */
852
- jobStatus?: JobStatus;
852
+ jobStatus?: JobStatus | undefined;
853
853
  /**
854
854
  * <p>The pagination token used to request the list of import jobs on the next page.</p>
855
855
  * @public
856
856
  */
857
- nextToken?: string;
857
+ nextToken?: string | undefined;
858
858
  /**
859
859
  * <p>The max results count. The upper bound is determined by load testing.</p>
860
860
  * @public
861
861
  */
862
- maxResults?: number;
862
+ maxResults?: number | undefined;
863
863
  }
864
864
  /**
865
865
  * <p>Summary of import job.</p>
@@ -890,22 +890,22 @@ export interface DICOMImportJobSummary {
890
890
  * <p>The Amazon Resource Name (ARN) that grants permissions to access medical imaging resources.</p>
891
891
  * @public
892
892
  */
893
- dataAccessRoleArn?: string;
893
+ dataAccessRoleArn?: string | undefined;
894
894
  /**
895
895
  * <p>The timestamp when an import job ended.</p>
896
896
  * @public
897
897
  */
898
- endedAt?: Date;
898
+ endedAt?: Date | undefined;
899
899
  /**
900
900
  * <p>The timestamp when an import job was submitted.</p>
901
901
  * @public
902
902
  */
903
- submittedAt?: Date;
903
+ submittedAt?: Date | undefined;
904
904
  /**
905
905
  * <p>The error message thrown if an import job fails.</p>
906
906
  * @public
907
907
  */
908
- message?: string;
908
+ message?: string | undefined;
909
909
  }
910
910
  /**
911
911
  * @public
@@ -920,7 +920,7 @@ export interface ListDICOMImportJobsResponse {
920
920
  * <p>The pagination token used to retrieve the list of import jobs on the next page.</p>
921
921
  * @public
922
922
  */
923
- nextToken?: string;
923
+ nextToken?: string | undefined;
924
924
  }
925
925
  /**
926
926
  * @public
@@ -940,12 +940,12 @@ export interface ListImageSetVersionsRequest {
940
940
  * <p>The pagination token used to request the list of image set versions on the next page.</p>
941
941
  * @public
942
942
  */
943
- nextToken?: string;
943
+ nextToken?: string | undefined;
944
944
  /**
945
945
  * <p>The max results count.</p>
946
946
  * @public
947
947
  */
948
- maxResults?: number;
948
+ maxResults?: number | undefined;
949
949
  }
950
950
  /**
951
951
  * <p>The image set properties.</p>
@@ -971,34 +971,34 @@ export interface ImageSetProperties {
971
971
  * <p>The image set workflow status.</p>
972
972
  * @public
973
973
  */
974
- ImageSetWorkflowStatus?: ImageSetWorkflowStatus;
974
+ ImageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
975
975
  /**
976
976
  * <p>The timestamp when the image set properties were created.</p>
977
977
  * @public
978
978
  */
979
- createdAt?: Date;
979
+ createdAt?: Date | undefined;
980
980
  /**
981
981
  * <p>The timestamp when the image set properties were updated.</p>
982
982
  * @public
983
983
  */
984
- updatedAt?: Date;
984
+ updatedAt?: Date | undefined;
985
985
  /**
986
986
  * <p>The timestamp when the image set properties were deleted.</p>
987
987
  * @public
988
988
  */
989
- deletedAt?: Date;
989
+ deletedAt?: Date | undefined;
990
990
  /**
991
991
  * <p>The error message thrown if an image set action fails.</p>
992
992
  * @public
993
993
  */
994
- message?: string;
994
+ message?: string | undefined;
995
995
  /**
996
996
  * <p>Contains details on overrides used when creating the returned version of an image set.
997
997
  * For example, if <code>forced</code> exists, the <code>forced</code> flag was used when
998
998
  * creating the image set.</p>
999
999
  * @public
1000
1000
  */
1001
- overrides?: Overrides;
1001
+ overrides?: Overrides | undefined;
1002
1002
  }
1003
1003
  /**
1004
1004
  * @public
@@ -1013,7 +1013,7 @@ export interface ListImageSetVersionsResponse {
1013
1013
  * <p>The pagination token used to retrieve the list of image set versions on the next page.</p>
1014
1014
  * @public
1015
1015
  */
1016
- nextToken?: string;
1016
+ nextToken?: string | undefined;
1017
1017
  }
1018
1018
  /**
1019
1019
  * @public
@@ -1061,7 +1061,7 @@ export interface DICOMStudyDateAndTime {
1061
1061
  * <p>The DICOM study time provided in <code>HHmmss.FFFFFF</code> format.</p>
1062
1062
  * @public
1063
1063
  */
1064
- DICOMStudyTime?: string;
1064
+ DICOMStudyTime?: string | undefined;
1065
1065
  }
1066
1066
  /**
1067
1067
  * <p>The search input attribute value.</p>
@@ -1285,12 +1285,12 @@ export interface SearchCriteria {
1285
1285
  * <p>The filters for the search criteria.</p>
1286
1286
  * @public
1287
1287
  */
1288
- filters?: SearchFilter[];
1288
+ filters?: SearchFilter[] | undefined;
1289
1289
  /**
1290
1290
  * <p>The sort input for search criteria.</p>
1291
1291
  * @public
1292
1292
  */
1293
- sort?: Sort;
1293
+ sort?: Sort | undefined;
1294
1294
  }
1295
1295
  /**
1296
1296
  * @public
@@ -1305,18 +1305,18 @@ export interface SearchImageSetsRequest {
1305
1305
  * <p>The search criteria that filters by applying a maximum of 1 item to <code>SearchByAttribute</code>.</p>
1306
1306
  * @public
1307
1307
  */
1308
- searchCriteria?: SearchCriteria;
1308
+ searchCriteria?: SearchCriteria | undefined;
1309
1309
  /**
1310
1310
  * <p>The maximum number of results that can be returned in a search.</p>
1311
1311
  * @public
1312
1312
  */
1313
- maxResults?: number;
1313
+ maxResults?: number | undefined;
1314
1314
  /**
1315
1315
  * <p>The token used for pagination of results returned in the response. Use the token returned from the previous
1316
1316
  * request to continue results where the previous request ended.</p>
1317
1317
  * @public
1318
1318
  */
1319
- nextToken?: string;
1319
+ nextToken?: string | undefined;
1320
1320
  }
1321
1321
  /**
1322
1322
  * <p>The DICOM attributes returned as a part of a response. Each image set has these properties
@@ -1328,82 +1328,82 @@ export interface DICOMTags {
1328
1328
  * <p>The unique identifier for a patient in a DICOM Study.</p>
1329
1329
  * @public
1330
1330
  */
1331
- DICOMPatientId?: string;
1331
+ DICOMPatientId?: string | undefined;
1332
1332
  /**
1333
1333
  * <p>The patient name.</p>
1334
1334
  * @public
1335
1335
  */
1336
- DICOMPatientName?: string;
1336
+ DICOMPatientName?: string | undefined;
1337
1337
  /**
1338
1338
  * <p>The patient birth date.</p>
1339
1339
  * @public
1340
1340
  */
1341
- DICOMPatientBirthDate?: string;
1341
+ DICOMPatientBirthDate?: string | undefined;
1342
1342
  /**
1343
1343
  * <p>The patient sex.</p>
1344
1344
  * @public
1345
1345
  */
1346
- DICOMPatientSex?: string;
1346
+ DICOMPatientSex?: string | undefined;
1347
1347
  /**
1348
1348
  * <p>The DICOM provided identifier for the Study Instance UID.</p>
1349
1349
  * @public
1350
1350
  */
1351
- DICOMStudyInstanceUID?: string;
1351
+ DICOMStudyInstanceUID?: string | undefined;
1352
1352
  /**
1353
1353
  * <p>The DICOM provided identifier for the Study ID.</p>
1354
1354
  * @public
1355
1355
  */
1356
- DICOMStudyId?: string;
1356
+ DICOMStudyId?: string | undefined;
1357
1357
  /**
1358
1358
  * <p>The DICOM provided Study Description.</p>
1359
1359
  * @public
1360
1360
  */
1361
- DICOMStudyDescription?: string;
1361
+ DICOMStudyDescription?: string | undefined;
1362
1362
  /**
1363
1363
  * <p>The total number of series in the DICOM study.</p>
1364
1364
  * @public
1365
1365
  */
1366
- DICOMNumberOfStudyRelatedSeries?: number;
1366
+ DICOMNumberOfStudyRelatedSeries?: number | undefined;
1367
1367
  /**
1368
1368
  * <p>The total number of instances in the DICOM study.</p>
1369
1369
  * @public
1370
1370
  */
1371
- DICOMNumberOfStudyRelatedInstances?: number;
1371
+ DICOMNumberOfStudyRelatedInstances?: number | undefined;
1372
1372
  /**
1373
1373
  * <p>The accession number for the DICOM study.</p>
1374
1374
  * @public
1375
1375
  */
1376
- DICOMAccessionNumber?: string;
1376
+ DICOMAccessionNumber?: string | undefined;
1377
1377
  /**
1378
1378
  * <p>The DICOM provided identifier for the Series Instance UID.</p>
1379
1379
  * @public
1380
1380
  */
1381
- DICOMSeriesInstanceUID?: string;
1381
+ DICOMSeriesInstanceUID?: string | undefined;
1382
1382
  /**
1383
1383
  * <p>The DICOM provided identifier for the series Modality.</p>
1384
1384
  * @public
1385
1385
  */
1386
- DICOMSeriesModality?: string;
1386
+ DICOMSeriesModality?: string | undefined;
1387
1387
  /**
1388
1388
  * <p>The DICOM provided identifier for the series Body Part Examined.</p>
1389
1389
  * @public
1390
1390
  */
1391
- DICOMSeriesBodyPart?: string;
1391
+ DICOMSeriesBodyPart?: string | undefined;
1392
1392
  /**
1393
1393
  * <p>The DICOM provided identifier for the Series Number.</p>
1394
1394
  * @public
1395
1395
  */
1396
- DICOMSeriesNumber?: number;
1396
+ DICOMSeriesNumber?: number | undefined;
1397
1397
  /**
1398
1398
  * <p>The study date.</p>
1399
1399
  * @public
1400
1400
  */
1401
- DICOMStudyDate?: string;
1401
+ DICOMStudyDate?: string | undefined;
1402
1402
  /**
1403
1403
  * <p>The study time.</p>
1404
1404
  * @public
1405
1405
  */
1406
- DICOMStudyTime?: string;
1406
+ DICOMStudyTime?: string | undefined;
1407
1407
  }
1408
1408
  /**
1409
1409
  * <p>Summary of the image set metadata.</p>
@@ -1419,23 +1419,23 @@ export interface ImageSetsMetadataSummary {
1419
1419
  * <p>The image set version.</p>
1420
1420
  * @public
1421
1421
  */
1422
- version?: number;
1422
+ version?: number | undefined;
1423
1423
  /**
1424
1424
  * <p>The time an image set is created. Sample creation
1425
1425
  * date is provided in <code>1985-04-12T23:20:50.52Z</code> format.</p>
1426
1426
  * @public
1427
1427
  */
1428
- createdAt?: Date;
1428
+ createdAt?: Date | undefined;
1429
1429
  /**
1430
1430
  * <p>The time an image set was last updated.</p>
1431
1431
  * @public
1432
1432
  */
1433
- updatedAt?: Date;
1433
+ updatedAt?: Date | undefined;
1434
1434
  /**
1435
1435
  * <p>The DICOM tags associated with the image set.</p>
1436
1436
  * @public
1437
1437
  */
1438
- DICOMTags?: DICOMTags;
1438
+ DICOMTags?: DICOMTags | undefined;
1439
1439
  }
1440
1440
  /**
1441
1441
  * @public
@@ -1450,12 +1450,12 @@ export interface SearchImageSetsResponse {
1450
1450
  * <p>The sort order for image set search results.</p>
1451
1451
  * @public
1452
1452
  */
1453
- sort?: Sort;
1453
+ sort?: Sort | undefined;
1454
1454
  /**
1455
1455
  * <p>The token for pagination results.</p>
1456
1456
  * @public
1457
1457
  */
1458
- nextToken?: string;
1458
+ nextToken?: string | undefined;
1459
1459
  }
1460
1460
  /**
1461
1461
  * @public
@@ -1465,7 +1465,7 @@ export interface StartDICOMImportJobRequest {
1465
1465
  * <p>The import job name.</p>
1466
1466
  * @public
1467
1467
  */
1468
- jobName?: string;
1468
+ jobName?: string | undefined;
1469
1469
  /**
1470
1470
  * <p>The Amazon Resource Name (ARN) of the IAM role that grants permission to access medical imaging resources.</p>
1471
1471
  * @public
@@ -1475,7 +1475,7 @@ export interface StartDICOMImportJobRequest {
1475
1475
  * <p>A unique identifier for API idempotency.</p>
1476
1476
  * @public
1477
1477
  */
1478
- clientToken?: string;
1478
+ clientToken?: string | undefined;
1479
1479
  /**
1480
1480
  * <p>The data store identifier.</p>
1481
1481
  * @public
@@ -1495,7 +1495,7 @@ export interface StartDICOMImportJobRequest {
1495
1495
  * <p>The account ID of the source S3 bucket owner.</p>
1496
1496
  * @public
1497
1497
  */
1498
- inputOwnerAccountId?: string;
1498
+ inputOwnerAccountId?: string | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * @public
@@ -1571,12 +1571,12 @@ export interface DICOMUpdates {
1571
1571
  * <p>The DICOM tags to be removed from <code>ImageSetMetadata</code>.</p>
1572
1572
  * @public
1573
1573
  */
1574
- removableAttributes?: Uint8Array;
1574
+ removableAttributes?: Uint8Array | undefined;
1575
1575
  /**
1576
1576
  * <p>The DICOM tags that need to be updated in <code>ImageSetMetadata</code>.</p>
1577
1577
  * @public
1578
1578
  */
1579
- updatableAttributes?: Uint8Array;
1579
+ updatableAttributes?: Uint8Array | undefined;
1580
1580
  }
1581
1581
  /**
1582
1582
  * <p>Contains DICOMUpdates.</p>
@@ -1657,7 +1657,7 @@ export interface UpdateImageSetMetadataRequest {
1657
1657
  * </ul>
1658
1658
  * @public
1659
1659
  */
1660
- force?: boolean;
1660
+ force?: boolean | undefined;
1661
1661
  /**
1662
1662
  * <p>Update image set metadata updates.</p>
1663
1663
  * @public
@@ -1692,22 +1692,22 @@ export interface UpdateImageSetMetadataResponse {
1692
1692
  * <p>The image set workflow status.</p>
1693
1693
  * @public
1694
1694
  */
1695
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
1695
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
1696
1696
  /**
1697
1697
  * <p>The timestamp when image set metadata was created.</p>
1698
1698
  * @public
1699
1699
  */
1700
- createdAt?: Date;
1700
+ createdAt?: Date | undefined;
1701
1701
  /**
1702
1702
  * <p>The timestamp when image set metadata was updated.</p>
1703
1703
  * @public
1704
1704
  */
1705
- updatedAt?: Date;
1705
+ updatedAt?: Date | undefined;
1706
1706
  /**
1707
1707
  * <p>The error message thrown if an update image set metadata action fails.</p>
1708
1708
  * @public
1709
1709
  */
1710
- message?: string;
1710
+ message?: string | undefined;
1711
1711
  }
1712
1712
  /**
1713
1713
  * @internal
@@ -22,17 +22,17 @@ export interface MetadataCopies {
22
22
  }
23
23
  export interface CopySourceImageSetInformation {
24
24
  latestVersionId: string | undefined;
25
- DICOMCopies?: MetadataCopies;
25
+ DICOMCopies?: MetadataCopies | undefined;
26
26
  }
27
27
  export interface CopyImageSetInformation {
28
28
  sourceImageSet: CopySourceImageSetInformation | undefined;
29
- destinationImageSet?: CopyDestinationImageSet;
29
+ destinationImageSet?: CopyDestinationImageSet | undefined;
30
30
  }
31
31
  export interface CopyImageSetRequest {
32
32
  datastoreId: string | undefined;
33
33
  sourceImageSetId: string | undefined;
34
34
  copyImageSetInformation: CopyImageSetInformation | undefined;
35
- force?: boolean;
35
+ force?: boolean | undefined;
36
36
  }
37
37
  export declare const ImageSetState: {
38
38
  readonly ACTIVE: "ACTIVE";
@@ -57,20 +57,20 @@ export type ImageSetWorkflowStatus =
57
57
  export interface CopyDestinationImageSetProperties {
58
58
  imageSetId: string | undefined;
59
59
  latestVersionId: string | undefined;
60
- imageSetState?: ImageSetState;
61
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
62
- createdAt?: Date;
63
- updatedAt?: Date;
64
- imageSetArn?: string;
60
+ imageSetState?: ImageSetState | undefined;
61
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
62
+ createdAt?: Date | undefined;
63
+ updatedAt?: Date | undefined;
64
+ imageSetArn?: string | undefined;
65
65
  }
66
66
  export interface CopySourceImageSetProperties {
67
67
  imageSetId: string | undefined;
68
68
  latestVersionId: string | undefined;
69
- imageSetState?: ImageSetState;
70
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
71
- createdAt?: Date;
72
- updatedAt?: Date;
73
- imageSetArn?: string;
69
+ imageSetState?: ImageSetState | undefined;
70
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
71
+ createdAt?: Date | undefined;
72
+ updatedAt?: Date | undefined;
73
+ imageSetArn?: string | undefined;
74
74
  }
75
75
  export interface CopyImageSetResponse {
76
76
  datastoreId: string | undefined;
@@ -113,10 +113,10 @@ export declare class ValidationException extends __BaseException {
113
113
  );
114
114
  }
115
115
  export interface CreateDatastoreRequest {
116
- datastoreName?: string;
117
- clientToken?: string;
118
- tags?: Record<string, string>;
119
- kmsKeyArn?: string;
116
+ datastoreName?: string | undefined;
117
+ clientToken?: string | undefined;
118
+ tags?: Record<string, string> | undefined;
119
+ kmsKeyArn?: string | undefined;
120
120
  }
121
121
  export declare const DatastoreStatus: {
122
122
  readonly ACTIVE: "ACTIVE";
@@ -145,30 +145,30 @@ export interface DatastoreProperties {
145
145
  datastoreId: string | undefined;
146
146
  datastoreName: string | undefined;
147
147
  datastoreStatus: DatastoreStatus | undefined;
148
- kmsKeyArn?: string;
149
- datastoreArn?: string;
150
- createdAt?: Date;
151
- updatedAt?: Date;
148
+ kmsKeyArn?: string | undefined;
149
+ datastoreArn?: string | undefined;
150
+ createdAt?: Date | undefined;
151
+ updatedAt?: Date | undefined;
152
152
  }
153
153
  export interface GetDatastoreResponse {
154
154
  datastoreProperties: DatastoreProperties | undefined;
155
155
  }
156
156
  export interface ListDatastoresRequest {
157
- datastoreStatus?: DatastoreStatus;
158
- nextToken?: string;
159
- maxResults?: number;
157
+ datastoreStatus?: DatastoreStatus | undefined;
158
+ nextToken?: string | undefined;
159
+ maxResults?: number | undefined;
160
160
  }
161
161
  export interface DatastoreSummary {
162
162
  datastoreId: string | undefined;
163
163
  datastoreName: string | undefined;
164
164
  datastoreStatus: DatastoreStatus | undefined;
165
- datastoreArn?: string;
166
- createdAt?: Date;
167
- updatedAt?: Date;
165
+ datastoreArn?: string | undefined;
166
+ createdAt?: Date | undefined;
167
+ updatedAt?: Date | undefined;
168
168
  }
169
169
  export interface ListDatastoresResponse {
170
- datastoreSummaries?: DatastoreSummary[];
171
- nextToken?: string;
170
+ datastoreSummaries?: DatastoreSummary[] | undefined;
171
+ nextToken?: string | undefined;
172
172
  }
173
173
  export interface DeleteImageSetRequest {
174
174
  datastoreId: string | undefined;
@@ -197,11 +197,11 @@ export interface DICOMImportJobProperties {
197
197
  jobStatus: JobStatus | undefined;
198
198
  datastoreId: string | undefined;
199
199
  dataAccessRoleArn: string | undefined;
200
- endedAt?: Date;
201
- submittedAt?: Date;
200
+ endedAt?: Date | undefined;
201
+ submittedAt?: Date | undefined;
202
202
  inputS3Uri: string | undefined;
203
203
  outputS3Uri: string | undefined;
204
- message?: string;
204
+ message?: string | undefined;
205
205
  }
206
206
  export interface GetDICOMImportJobResponse {
207
207
  jobProperties: DICOMImportJobProperties | undefined;
@@ -216,79 +216,79 @@ export interface GetImageFrameRequest {
216
216
  }
217
217
  export interface GetImageFrameResponse {
218
218
  imageFrameBlob: StreamingBlobTypes | undefined;
219
- contentType?: string;
219
+ contentType?: string | undefined;
220
220
  }
221
221
  export interface GetImageSetRequest {
222
222
  datastoreId: string | undefined;
223
223
  imageSetId: string | undefined;
224
- versionId?: string;
224
+ versionId?: string | undefined;
225
225
  }
226
226
  export interface Overrides {
227
- forced?: boolean;
227
+ forced?: boolean | undefined;
228
228
  }
229
229
  export interface GetImageSetResponse {
230
230
  datastoreId: string | undefined;
231
231
  imageSetId: string | undefined;
232
232
  versionId: string | undefined;
233
233
  imageSetState: ImageSetState | undefined;
234
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
235
- createdAt?: Date;
236
- updatedAt?: Date;
237
- deletedAt?: Date;
238
- message?: string;
239
- imageSetArn?: string;
240
- overrides?: Overrides;
234
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
235
+ createdAt?: Date | undefined;
236
+ updatedAt?: Date | undefined;
237
+ deletedAt?: Date | undefined;
238
+ message?: string | undefined;
239
+ imageSetArn?: string | undefined;
240
+ overrides?: Overrides | undefined;
241
241
  }
242
242
  export interface GetImageSetMetadataRequest {
243
243
  datastoreId: string | undefined;
244
244
  imageSetId: string | undefined;
245
- versionId?: string;
245
+ versionId?: string | undefined;
246
246
  }
247
247
  export interface GetImageSetMetadataResponse {
248
248
  imageSetMetadataBlob: StreamingBlobTypes | undefined;
249
- contentType?: string;
250
- contentEncoding?: string;
249
+ contentType?: string | undefined;
250
+ contentEncoding?: string | undefined;
251
251
  }
252
252
  export interface ListDICOMImportJobsRequest {
253
253
  datastoreId: string | undefined;
254
- jobStatus?: JobStatus;
255
- nextToken?: string;
256
- maxResults?: number;
254
+ jobStatus?: JobStatus | undefined;
255
+ nextToken?: string | undefined;
256
+ maxResults?: number | undefined;
257
257
  }
258
258
  export interface DICOMImportJobSummary {
259
259
  jobId: string | undefined;
260
260
  jobName: string | undefined;
261
261
  jobStatus: JobStatus | undefined;
262
262
  datastoreId: string | undefined;
263
- dataAccessRoleArn?: string;
264
- endedAt?: Date;
265
- submittedAt?: Date;
266
- message?: string;
263
+ dataAccessRoleArn?: string | undefined;
264
+ endedAt?: Date | undefined;
265
+ submittedAt?: Date | undefined;
266
+ message?: string | undefined;
267
267
  }
268
268
  export interface ListDICOMImportJobsResponse {
269
269
  jobSummaries: DICOMImportJobSummary[] | undefined;
270
- nextToken?: string;
270
+ nextToken?: string | undefined;
271
271
  }
272
272
  export interface ListImageSetVersionsRequest {
273
273
  datastoreId: string | undefined;
274
274
  imageSetId: string | undefined;
275
- nextToken?: string;
276
- maxResults?: number;
275
+ nextToken?: string | undefined;
276
+ maxResults?: number | undefined;
277
277
  }
278
278
  export interface ImageSetProperties {
279
279
  imageSetId: string | undefined;
280
280
  versionId: string | undefined;
281
281
  imageSetState: ImageSetState | undefined;
282
- ImageSetWorkflowStatus?: ImageSetWorkflowStatus;
283
- createdAt?: Date;
284
- updatedAt?: Date;
285
- deletedAt?: Date;
286
- message?: string;
287
- overrides?: Overrides;
282
+ ImageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
283
+ createdAt?: Date | undefined;
284
+ updatedAt?: Date | undefined;
285
+ deletedAt?: Date | undefined;
286
+ message?: string | undefined;
287
+ overrides?: Overrides | undefined;
288
288
  }
289
289
  export interface ListImageSetVersionsResponse {
290
290
  imageSetPropertiesList: ImageSetProperties[] | undefined;
291
- nextToken?: string;
291
+ nextToken?: string | undefined;
292
292
  }
293
293
  export interface ListTagsForResourceRequest {
294
294
  resourceArn: string | undefined;
@@ -303,7 +303,7 @@ export declare const Operator: {
303
303
  export type Operator = (typeof Operator)[keyof typeof Operator];
304
304
  export interface DICOMStudyDateAndTime {
305
305
  DICOMStudyDate: string | undefined;
306
- DICOMStudyTime?: string;
306
+ DICOMStudyTime?: string | undefined;
307
307
  }
308
308
  export type SearchByAttributeValue =
309
309
  | SearchByAttributeValue.DICOMAccessionNumberMember
@@ -448,53 +448,53 @@ export interface Sort {
448
448
  sortField: SortField | undefined;
449
449
  }
450
450
  export interface SearchCriteria {
451
- filters?: SearchFilter[];
452
- sort?: Sort;
451
+ filters?: SearchFilter[] | undefined;
452
+ sort?: Sort | undefined;
453
453
  }
454
454
  export interface SearchImageSetsRequest {
455
455
  datastoreId: string | undefined;
456
- searchCriteria?: SearchCriteria;
457
- maxResults?: number;
458
- nextToken?: string;
456
+ searchCriteria?: SearchCriteria | undefined;
457
+ maxResults?: number | undefined;
458
+ nextToken?: string | undefined;
459
459
  }
460
460
  export interface DICOMTags {
461
- DICOMPatientId?: string;
462
- DICOMPatientName?: string;
463
- DICOMPatientBirthDate?: string;
464
- DICOMPatientSex?: string;
465
- DICOMStudyInstanceUID?: string;
466
- DICOMStudyId?: string;
467
- DICOMStudyDescription?: string;
468
- DICOMNumberOfStudyRelatedSeries?: number;
469
- DICOMNumberOfStudyRelatedInstances?: number;
470
- DICOMAccessionNumber?: string;
471
- DICOMSeriesInstanceUID?: string;
472
- DICOMSeriesModality?: string;
473
- DICOMSeriesBodyPart?: string;
474
- DICOMSeriesNumber?: number;
475
- DICOMStudyDate?: string;
476
- DICOMStudyTime?: string;
461
+ DICOMPatientId?: string | undefined;
462
+ DICOMPatientName?: string | undefined;
463
+ DICOMPatientBirthDate?: string | undefined;
464
+ DICOMPatientSex?: string | undefined;
465
+ DICOMStudyInstanceUID?: string | undefined;
466
+ DICOMStudyId?: string | undefined;
467
+ DICOMStudyDescription?: string | undefined;
468
+ DICOMNumberOfStudyRelatedSeries?: number | undefined;
469
+ DICOMNumberOfStudyRelatedInstances?: number | undefined;
470
+ DICOMAccessionNumber?: string | undefined;
471
+ DICOMSeriesInstanceUID?: string | undefined;
472
+ DICOMSeriesModality?: string | undefined;
473
+ DICOMSeriesBodyPart?: string | undefined;
474
+ DICOMSeriesNumber?: number | undefined;
475
+ DICOMStudyDate?: string | undefined;
476
+ DICOMStudyTime?: string | undefined;
477
477
  }
478
478
  export interface ImageSetsMetadataSummary {
479
479
  imageSetId: string | undefined;
480
- version?: number;
481
- createdAt?: Date;
482
- updatedAt?: Date;
483
- DICOMTags?: DICOMTags;
480
+ version?: number | undefined;
481
+ createdAt?: Date | undefined;
482
+ updatedAt?: Date | undefined;
483
+ DICOMTags?: DICOMTags | undefined;
484
484
  }
485
485
  export interface SearchImageSetsResponse {
486
486
  imageSetsMetadataSummaries: ImageSetsMetadataSummary[] | undefined;
487
- sort?: Sort;
488
- nextToken?: string;
487
+ sort?: Sort | undefined;
488
+ nextToken?: string | undefined;
489
489
  }
490
490
  export interface StartDICOMImportJobRequest {
491
- jobName?: string;
491
+ jobName?: string | undefined;
492
492
  dataAccessRoleArn: string | undefined;
493
- clientToken?: string;
493
+ clientToken?: string | undefined;
494
494
  datastoreId: string | undefined;
495
495
  inputS3Uri: string | undefined;
496
496
  outputS3Uri: string | undefined;
497
- inputOwnerAccountId?: string;
497
+ inputOwnerAccountId?: string | undefined;
498
498
  }
499
499
  export interface StartDICOMImportJobResponse {
500
500
  datastoreId: string | undefined;
@@ -513,8 +513,8 @@ export interface UntagResourceRequest {
513
513
  }
514
514
  export interface UntagResourceResponse {}
515
515
  export interface DICOMUpdates {
516
- removableAttributes?: Uint8Array;
517
- updatableAttributes?: Uint8Array;
516
+ removableAttributes?: Uint8Array | undefined;
517
+ updatableAttributes?: Uint8Array | undefined;
518
518
  }
519
519
  export type MetadataUpdates =
520
520
  | MetadataUpdates.DICOMUpdatesMember
@@ -547,7 +547,7 @@ export interface UpdateImageSetMetadataRequest {
547
547
  datastoreId: string | undefined;
548
548
  imageSetId: string | undefined;
549
549
  latestVersionId: string | undefined;
550
- force?: boolean;
550
+ force?: boolean | undefined;
551
551
  updateImageSetMetadataUpdates: MetadataUpdates | undefined;
552
552
  }
553
553
  export interface UpdateImageSetMetadataResponse {
@@ -555,10 +555,10 @@ export interface UpdateImageSetMetadataResponse {
555
555
  imageSetId: string | undefined;
556
556
  latestVersionId: string | undefined;
557
557
  imageSetState: ImageSetState | undefined;
558
- imageSetWorkflowStatus?: ImageSetWorkflowStatus;
559
- createdAt?: Date;
560
- updatedAt?: Date;
561
- message?: string;
558
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | undefined;
559
+ createdAt?: Date | undefined;
560
+ updatedAt?: Date | undefined;
561
+ message?: string | undefined;
562
562
  }
563
563
  export declare const MetadataCopiesFilterSensitiveLog: (
564
564
  obj: MetadataCopies
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-medical-imaging",
3
3
  "description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.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-medical-imaging",
@@ -20,19 +20,19 @@
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.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",