@aws-sdk/client-medical-imaging 3.529.1 → 3.535.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.
Files changed (49) hide show
  1. package/dist-types/MedicalImaging.d.ts +2 -1
  2. package/dist-types/MedicalImagingClient.d.ts +1 -1
  3. package/dist-types/commands/CopyImageSetCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateDatastoreCommand.d.ts +2 -1
  5. package/dist-types/commands/DeleteDatastoreCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteImageSetCommand.d.ts +2 -1
  7. package/dist-types/commands/GetDICOMImportJobCommand.d.ts +2 -1
  8. package/dist-types/commands/GetDatastoreCommand.d.ts +2 -1
  9. package/dist-types/commands/GetImageFrameCommand.d.ts +3 -2
  10. package/dist-types/commands/GetImageSetCommand.d.ts +2 -1
  11. package/dist-types/commands/GetImageSetMetadataCommand.d.ts +3 -2
  12. package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListDatastoresCommand.d.ts +2 -1
  14. package/dist-types/commands/ListImageSetVersionsCommand.d.ts +2 -1
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  16. package/dist-types/commands/SearchImageSetsCommand.d.ts +2 -1
  17. package/dist-types/commands/StartDICOMImportJobCommand.d.ts +2 -1
  18. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  19. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  20. package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +4 -3
  21. package/dist-types/models/models_0.d.ts +217 -217
  22. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  23. package/dist-types/runtimeConfig.d.ts +2 -2
  24. package/dist-types/runtimeConfig.native.d.ts +2 -2
  25. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  26. package/dist-types/ts3.4/MedicalImaging.d.ts +1 -0
  27. package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  49. package/package.json +41 -41
@@ -2,8 +2,8 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { StreamingBlobTypes } from "@smithy/types";
3
3
  import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
4
4
  /**
5
- * @public
6
5
  * <p>The user does not have sufficient access to perform this action.</p>
6
+ * @public
7
7
  */
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
@@ -14,8 +14,8 @@ export declare class AccessDeniedException extends __BaseException {
14
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
15
  }
16
16
  /**
17
- * @public
18
17
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
18
+ * @public
19
19
  */
20
20
  export declare class ConflictException extends __BaseException {
21
21
  readonly name: "ConflictException";
@@ -26,45 +26,45 @@ export declare class ConflictException extends __BaseException {
26
26
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
27
27
  }
28
28
  /**
29
- * @public
30
29
  * <p>Copy the destination image set.</p>
30
+ * @public
31
31
  */
32
32
  export interface CopyDestinationImageSet {
33
33
  /**
34
- * @public
35
34
  * <p>The image set identifier for the destination image set.</p>
35
+ * @public
36
36
  */
37
37
  imageSetId: string | undefined;
38
38
  /**
39
- * @public
40
39
  * <p>The latest version identifier for the destination image set.</p>
40
+ * @public
41
41
  */
42
42
  latestVersionId: string | undefined;
43
43
  }
44
44
  /**
45
- * @public
46
45
  * <p>Copy source image set information.</p>
46
+ * @public
47
47
  */
48
48
  export interface CopySourceImageSetInformation {
49
49
  /**
50
- * @public
51
50
  * <p>The latest version identifier for the source image set.</p>
51
+ * @public
52
52
  */
53
53
  latestVersionId: string | undefined;
54
54
  }
55
55
  /**
56
- * @public
57
56
  * <p>Copy image set information.</p>
57
+ * @public
58
58
  */
59
59
  export interface CopyImageSetInformation {
60
60
  /**
61
- * @public
62
61
  * <p>The source image set.</p>
62
+ * @public
63
63
  */
64
64
  sourceImageSet: CopySourceImageSetInformation | undefined;
65
65
  /**
66
- * @public
67
66
  * <p>The destination image set.</p>
67
+ * @public
68
68
  */
69
69
  destinationImageSet?: CopyDestinationImageSet;
70
70
  }
@@ -73,18 +73,18 @@ export interface CopyImageSetInformation {
73
73
  */
74
74
  export interface CopyImageSetRequest {
75
75
  /**
76
- * @public
77
76
  * <p>The data store identifier.</p>
77
+ * @public
78
78
  */
79
79
  datastoreId: string | undefined;
80
80
  /**
81
- * @public
82
81
  * <p>The source image set identifier.</p>
82
+ * @public
83
83
  */
84
84
  sourceImageSetId: string | undefined;
85
85
  /**
86
- * @public
87
86
  * <p>Copy image set information.</p>
87
+ * @public
88
88
  */
89
89
  copyImageSetInformation: CopyImageSetInformation | undefined;
90
90
  }
@@ -122,84 +122,84 @@ export declare const ImageSetWorkflowStatus: {
122
122
  */
123
123
  export type ImageSetWorkflowStatus = (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
124
124
  /**
125
- * @public
126
125
  * <p>Copy the image set properties of the destination image set.</p>
126
+ * @public
127
127
  */
128
128
  export interface CopyDestinationImageSetProperties {
129
129
  /**
130
- * @public
131
130
  * <p>The image set identifier of the copied image set properties.</p>
131
+ * @public
132
132
  */
133
133
  imageSetId: string | undefined;
134
134
  /**
135
- * @public
136
135
  * <p>The latest version identifier for the destination image set properties.</p>
136
+ * @public
137
137
  */
138
138
  latestVersionId: string | undefined;
139
139
  /**
140
- * @public
141
140
  * <p>The image set state of the destination image set properties.</p>
141
+ * @public
142
142
  */
143
143
  imageSetState?: ImageSetState;
144
144
  /**
145
- * @public
146
145
  * <p>The image set workflow status of the destination image set properties.</p>
146
+ * @public
147
147
  */
148
148
  imageSetWorkflowStatus?: ImageSetWorkflowStatus;
149
149
  /**
150
- * @public
151
150
  * <p>The timestamp when the destination image set properties were created.</p>
151
+ * @public
152
152
  */
153
153
  createdAt?: Date;
154
154
  /**
155
- * @public
156
155
  * <p>The timestamp when the destination image set properties were last updated.</p>
156
+ * @public
157
157
  */
158
158
  updatedAt?: Date;
159
159
  /**
160
- * @public
161
160
  * <p>The Amazon Resource Name (ARN) assigned to the destination image set.</p>
161
+ * @public
162
162
  */
163
163
  imageSetArn?: string;
164
164
  }
165
165
  /**
166
- * @public
167
166
  * <p>Copy source image set properties.</p>
167
+ * @public
168
168
  */
169
169
  export interface CopySourceImageSetProperties {
170
170
  /**
171
- * @public
172
171
  * <p>The image set identifier for the copied source image set.</p>
172
+ * @public
173
173
  */
174
174
  imageSetId: string | undefined;
175
175
  /**
176
- * @public
177
176
  * <p>The latest version identifier for the copied source image set.</p>
177
+ * @public
178
178
  */
179
179
  latestVersionId: string | undefined;
180
180
  /**
181
- * @public
182
181
  * <p>The image set state of the copied source image set.</p>
182
+ * @public
183
183
  */
184
184
  imageSetState?: ImageSetState;
185
185
  /**
186
- * @public
187
186
  * <p>The workflow status of the copied source image set.</p>
187
+ * @public
188
188
  */
189
189
  imageSetWorkflowStatus?: ImageSetWorkflowStatus;
190
190
  /**
191
- * @public
192
191
  * <p>The timestamp when the source image set properties were created.</p>
192
+ * @public
193
193
  */
194
194
  createdAt?: Date;
195
195
  /**
196
- * @public
197
196
  * <p>The timestamp when the source image set properties were updated.</p>
197
+ * @public
198
198
  */
199
199
  updatedAt?: Date;
200
200
  /**
201
- * @public
202
201
  * <p>The Amazon Resource Name (ARN) assigned to the source image set.</p>
202
+ * @public
203
203
  */
204
204
  imageSetArn?: string;
205
205
  }
@@ -208,24 +208,24 @@ export interface CopySourceImageSetProperties {
208
208
  */
209
209
  export interface CopyImageSetResponse {
210
210
  /**
211
- * @public
212
211
  * <p>The data store identifier.</p>
212
+ * @public
213
213
  */
214
214
  datastoreId: string | undefined;
215
215
  /**
216
- * @public
217
216
  * <p>The properties of the source image set.</p>
217
+ * @public
218
218
  */
219
219
  sourceImageSetProperties: CopySourceImageSetProperties | undefined;
220
220
  /**
221
- * @public
222
221
  * <p>The properties of the destination image set.</p>
222
+ * @public
223
223
  */
224
224
  destinationImageSetProperties: CopyDestinationImageSetProperties | undefined;
225
225
  }
226
226
  /**
227
- * @public
228
227
  * <p>An unexpected error occurred during processing of the request.</p>
228
+ * @public
229
229
  */
230
230
  export declare class InternalServerException extends __BaseException {
231
231
  readonly name: "InternalServerException";
@@ -236,8 +236,8 @@ export declare class InternalServerException extends __BaseException {
236
236
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
237
237
  }
238
238
  /**
239
- * @public
240
239
  * <p>The request references a resource which does not exist.</p>
240
+ * @public
241
241
  */
242
242
  export declare class ResourceNotFoundException extends __BaseException {
243
243
  readonly name: "ResourceNotFoundException";
@@ -248,8 +248,8 @@ export declare class ResourceNotFoundException extends __BaseException {
248
248
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
249
249
  }
250
250
  /**
251
- * @public
252
251
  * <p>The request caused a service quota to be exceeded.</p>
252
+ * @public
253
253
  */
254
254
  export declare class ServiceQuotaExceededException extends __BaseException {
255
255
  readonly name: "ServiceQuotaExceededException";
@@ -260,8 +260,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
260
260
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
261
261
  }
262
262
  /**
263
- * @public
264
263
  * <p>The request was denied due to throttling.</p>
264
+ * @public
265
265
  */
266
266
  export declare class ThrottlingException extends __BaseException {
267
267
  readonly name: "ThrottlingException";
@@ -272,8 +272,8 @@ export declare class ThrottlingException extends __BaseException {
272
272
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
273
273
  }
274
274
  /**
275
- * @public
276
275
  * <p>The input fails to satisfy the constraints set by the service.</p>
276
+ * @public
277
277
  */
278
278
  export declare class ValidationException extends __BaseException {
279
279
  readonly name: "ValidationException";
@@ -288,23 +288,23 @@ export declare class ValidationException extends __BaseException {
288
288
  */
289
289
  export interface CreateDatastoreRequest {
290
290
  /**
291
- * @public
292
291
  * <p>The data store name.</p>
292
+ * @public
293
293
  */
294
294
  datastoreName?: string;
295
295
  /**
296
- * @public
297
296
  * <p>A unique identifier for API idempotency.</p>
297
+ * @public
298
298
  */
299
299
  clientToken?: string;
300
300
  /**
301
- * @public
302
301
  * <p>The tags provided when creating a data store.</p>
302
+ * @public
303
303
  */
304
304
  tags?: Record<string, string>;
305
305
  /**
306
- * @public
307
306
  * <p>The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.</p>
307
+ * @public
308
308
  */
309
309
  kmsKeyArn?: string;
310
310
  }
@@ -328,13 +328,13 @@ export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreSta
328
328
  */
329
329
  export interface CreateDatastoreResponse {
330
330
  /**
331
- * @public
332
331
  * <p>The data store identifier.</p>
332
+ * @public
333
333
  */
334
334
  datastoreId: string | undefined;
335
335
  /**
336
- * @public
337
336
  * <p>The data store status.</p>
337
+ * @public
338
338
  */
339
339
  datastoreStatus: DatastoreStatus | undefined;
340
340
  }
@@ -343,8 +343,8 @@ export interface CreateDatastoreResponse {
343
343
  */
344
344
  export interface DeleteDatastoreRequest {
345
345
  /**
346
- * @public
347
346
  * <p>The data store identifier.</p>
347
+ * @public
348
348
  */
349
349
  datastoreId: string | undefined;
350
350
  }
@@ -353,13 +353,13 @@ export interface DeleteDatastoreRequest {
353
353
  */
354
354
  export interface DeleteDatastoreResponse {
355
355
  /**
356
- * @public
357
356
  * <p>The data store identifier.</p>
357
+ * @public
358
358
  */
359
359
  datastoreId: string | undefined;
360
360
  /**
361
- * @public
362
361
  * <p>The data store status.</p>
362
+ * @public
363
363
  */
364
364
  datastoreStatus: DatastoreStatus | undefined;
365
365
  }
@@ -368,49 +368,49 @@ export interface DeleteDatastoreResponse {
368
368
  */
369
369
  export interface GetDatastoreRequest {
370
370
  /**
371
- * @public
372
371
  * <p>The data store identifier.</p>
372
+ * @public
373
373
  */
374
374
  datastoreId: string | undefined;
375
375
  }
376
376
  /**
377
- * @public
378
377
  * <p>The properties associated with the data store.</p>
378
+ * @public
379
379
  */
380
380
  export interface DatastoreProperties {
381
381
  /**
382
- * @public
383
382
  * <p>The data store identifier.</p>
383
+ * @public
384
384
  */
385
385
  datastoreId: string | undefined;
386
386
  /**
387
- * @public
388
387
  * <p>The data store name.</p>
388
+ * @public
389
389
  */
390
390
  datastoreName: string | undefined;
391
391
  /**
392
- * @public
393
392
  * <p>The data store status.</p>
393
+ * @public
394
394
  */
395
395
  datastoreStatus: DatastoreStatus | undefined;
396
396
  /**
397
- * @public
398
397
  * <p>The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.</p>
398
+ * @public
399
399
  */
400
400
  kmsKeyArn?: string;
401
401
  /**
402
- * @public
403
402
  * <p>The Amazon Resource Name (ARN) for the data store.</p>
403
+ * @public
404
404
  */
405
405
  datastoreArn?: string;
406
406
  /**
407
- * @public
408
407
  * <p>The timestamp when the data store was created.</p>
408
+ * @public
409
409
  */
410
410
  createdAt?: Date;
411
411
  /**
412
- * @public
413
412
  * <p>The timestamp when the data store was last updated.</p>
413
+ * @public
414
414
  */
415
415
  updatedAt?: Date;
416
416
  }
@@ -419,8 +419,8 @@ export interface DatastoreProperties {
419
419
  */
420
420
  export interface GetDatastoreResponse {
421
421
  /**
422
- * @public
423
422
  * <p>The data store properties.</p>
423
+ * @public
424
424
  */
425
425
  datastoreProperties: DatastoreProperties | undefined;
426
426
  }
@@ -429,54 +429,54 @@ export interface GetDatastoreResponse {
429
429
  */
430
430
  export interface ListDatastoresRequest {
431
431
  /**
432
- * @public
433
432
  * <p>The data store status.</p>
433
+ * @public
434
434
  */
435
435
  datastoreStatus?: DatastoreStatus;
436
436
  /**
437
- * @public
438
437
  * <p>The pagination token used to request the list of data stores on the next page.</p>
438
+ * @public
439
439
  */
440
440
  nextToken?: string;
441
441
  /**
442
- * @public
443
442
  * <p>Valid Range: Minimum value of 1. Maximum value of 50.</p>
443
+ * @public
444
444
  */
445
445
  maxResults?: number;
446
446
  }
447
447
  /**
448
- * @public
449
448
  * <p>List of summaries of data stores.</p>
449
+ * @public
450
450
  */
451
451
  export interface DatastoreSummary {
452
452
  /**
453
- * @public
454
453
  * <p>The data store identifier.</p>
454
+ * @public
455
455
  */
456
456
  datastoreId: string | undefined;
457
457
  /**
458
- * @public
459
458
  * <p>The data store name.</p>
459
+ * @public
460
460
  */
461
461
  datastoreName: string | undefined;
462
462
  /**
463
- * @public
464
463
  * <p>The data store status.</p>
464
+ * @public
465
465
  */
466
466
  datastoreStatus: DatastoreStatus | undefined;
467
467
  /**
468
- * @public
469
468
  * <p>The Amazon Resource Name (ARN) for the data store.</p>
469
+ * @public
470
470
  */
471
471
  datastoreArn?: string;
472
472
  /**
473
- * @public
474
473
  * <p>The timestamp when the data store was created.</p>
474
+ * @public
475
475
  */
476
476
  createdAt?: Date;
477
477
  /**
478
- * @public
479
478
  * <p>The timestamp when the data store was last updated.</p>
479
+ * @public
480
480
  */
481
481
  updatedAt?: Date;
482
482
  }
@@ -485,13 +485,13 @@ export interface DatastoreSummary {
485
485
  */
486
486
  export interface ListDatastoresResponse {
487
487
  /**
488
- * @public
489
488
  * <p>The list of summaries of data stores.</p>
489
+ * @public
490
490
  */
491
491
  datastoreSummaries?: DatastoreSummary[];
492
492
  /**
493
- * @public
494
493
  * <p>The pagination token used to retrieve the list of data stores on the next page.</p>
494
+ * @public
495
495
  */
496
496
  nextToken?: string;
497
497
  }
@@ -500,13 +500,13 @@ export interface ListDatastoresResponse {
500
500
  */
501
501
  export interface DeleteImageSetRequest {
502
502
  /**
503
- * @public
504
503
  * <p>The data store identifier.</p>
504
+ * @public
505
505
  */
506
506
  datastoreId: string | undefined;
507
507
  /**
508
- * @public
509
508
  * <p>The image set identifier.</p>
509
+ * @public
510
510
  */
511
511
  imageSetId: string | undefined;
512
512
  }
@@ -515,23 +515,23 @@ export interface DeleteImageSetRequest {
515
515
  */
516
516
  export interface DeleteImageSetResponse {
517
517
  /**
518
- * @public
519
518
  * <p>The data store identifier.</p>
519
+ * @public
520
520
  */
521
521
  datastoreId: string | undefined;
522
522
  /**
523
- * @public
524
523
  * <p>The image set identifier.</p>
524
+ * @public
525
525
  */
526
526
  imageSetId: string | undefined;
527
527
  /**
528
- * @public
529
528
  * <p>The image set state.</p>
529
+ * @public
530
530
  */
531
531
  imageSetState: ImageSetState | undefined;
532
532
  /**
533
- * @public
534
533
  * <p>The image set workflow status.</p>
534
+ * @public
535
535
  */
536
536
  imageSetWorkflowStatus: ImageSetWorkflowStatus | undefined;
537
537
  }
@@ -540,13 +540,13 @@ export interface DeleteImageSetResponse {
540
540
  */
541
541
  export interface GetDICOMImportJobRequest {
542
542
  /**
543
- * @public
544
543
  * <p>The data store identifier.</p>
544
+ * @public
545
545
  */
546
546
  datastoreId: string | undefined;
547
547
  /**
548
- * @public
549
548
  * <p>The import job identifier.</p>
549
+ * @public
550
550
  */
551
551
  jobId: string | undefined;
552
552
  }
@@ -565,58 +565,58 @@ export declare const JobStatus: {
565
565
  */
566
566
  export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
567
567
  /**
568
- * @public
569
568
  * <p>Properties of the import job.</p>
569
+ * @public
570
570
  */
571
571
  export interface DICOMImportJobProperties {
572
572
  /**
573
- * @public
574
573
  * <p>The import job identifier.</p>
574
+ * @public
575
575
  */
576
576
  jobId: string | undefined;
577
577
  /**
578
- * @public
579
578
  * <p>The import job name.</p>
579
+ * @public
580
580
  */
581
581
  jobName: string | undefined;
582
582
  /**
583
- * @public
584
583
  * <p>The filters for listing import jobs based on status.</p>
584
+ * @public
585
585
  */
586
586
  jobStatus: JobStatus | undefined;
587
587
  /**
588
- * @public
589
588
  * <p>The data store identifier.</p>
589
+ * @public
590
590
  */
591
591
  datastoreId: string | undefined;
592
592
  /**
593
- * @public
594
593
  * <p>The Amazon Resource Name (ARN) that grants permissions to access medical imaging resources.</p>
594
+ * @public
595
595
  */
596
596
  dataAccessRoleArn: string | undefined;
597
597
  /**
598
- * @public
599
598
  * <p>The timestamp for when the import job was ended.</p>
599
+ * @public
600
600
  */
601
601
  endedAt?: Date;
602
602
  /**
603
- * @public
604
603
  * <p>The timestamp for when the import job was submitted.</p>
604
+ * @public
605
605
  */
606
606
  submittedAt?: Date;
607
607
  /**
608
- * @public
609
608
  * <p>The input prefix path for the S3 bucket that contains the DICOM P10 files to be imported.</p>
609
+ * @public
610
610
  */
611
611
  inputS3Uri: string | undefined;
612
612
  /**
613
- * @public
614
613
  * <p>The output prefix of the S3 bucket to upload the results of the DICOM import job.</p>
614
+ * @public
615
615
  */
616
616
  outputS3Uri: string | undefined;
617
617
  /**
618
- * @public
619
618
  * <p>The error message thrown if an import job fails.</p>
619
+ * @public
620
620
  */
621
621
  message?: string;
622
622
  }
@@ -625,19 +625,19 @@ export interface DICOMImportJobProperties {
625
625
  */
626
626
  export interface GetDICOMImportJobResponse {
627
627
  /**
628
- * @public
629
628
  * <p>The properties of the import job.</p>
629
+ * @public
630
630
  */
631
631
  jobProperties: DICOMImportJobProperties | undefined;
632
632
  }
633
633
  /**
634
- * @public
635
634
  * <p>Information about the image frame (pixel data) identifier.</p>
635
+ * @public
636
636
  */
637
637
  export interface ImageFrameInformation {
638
638
  /**
639
- * @public
640
639
  * <p>The image frame (pixel data) identifier.</p>
640
+ * @public
641
641
  */
642
642
  imageFrameId: string | undefined;
643
643
  }
@@ -646,18 +646,18 @@ export interface ImageFrameInformation {
646
646
  */
647
647
  export interface GetImageFrameRequest {
648
648
  /**
649
- * @public
650
649
  * <p>The data store identifier.</p>
650
+ * @public
651
651
  */
652
652
  datastoreId: string | undefined;
653
653
  /**
654
- * @public
655
654
  * <p>The image set identifier.</p>
655
+ * @public
656
656
  */
657
657
  imageSetId: string | undefined;
658
658
  /**
659
- * @public
660
659
  * <p>Information about the image frame (pixel data) identifier.</p>
660
+ * @public
661
661
  */
662
662
  imageFrameInformation: ImageFrameInformation | undefined;
663
663
  }
@@ -666,14 +666,14 @@ export interface GetImageFrameRequest {
666
666
  */
667
667
  export interface GetImageFrameResponse {
668
668
  /**
669
- * @public
670
669
  * <p>The blob containing the aggregated image frame information.</p>
670
+ * @public
671
671
  */
672
672
  imageFrameBlob: StreamingBlobTypes | undefined;
673
673
  /**
674
- * @public
675
674
  * <p>The format in which the image frame information is returned to the customer. Default is
676
675
  * <code>application/octet-stream</code>.</p>
676
+ * @public
677
677
  */
678
678
  contentType?: string;
679
679
  }
@@ -682,18 +682,18 @@ export interface GetImageFrameResponse {
682
682
  */
683
683
  export interface GetImageSetRequest {
684
684
  /**
685
- * @public
686
685
  * <p>The data store identifier.</p>
686
+ * @public
687
687
  */
688
688
  datastoreId: string | undefined;
689
689
  /**
690
- * @public
691
690
  * <p>The image set identifier.</p>
691
+ * @public
692
692
  */
693
693
  imageSetId: string | undefined;
694
694
  /**
695
- * @public
696
695
  * <p>The image set version identifier.</p>
696
+ * @public
697
697
  */
698
698
  versionId?: string;
699
699
  }
@@ -702,53 +702,53 @@ export interface GetImageSetRequest {
702
702
  */
703
703
  export interface GetImageSetResponse {
704
704
  /**
705
- * @public
706
705
  * <p>The data store identifier.</p>
706
+ * @public
707
707
  */
708
708
  datastoreId: string | undefined;
709
709
  /**
710
- * @public
711
710
  * <p>The image set identifier.</p>
711
+ * @public
712
712
  */
713
713
  imageSetId: string | undefined;
714
714
  /**
715
- * @public
716
715
  * <p>The image set version identifier.</p>
716
+ * @public
717
717
  */
718
718
  versionId: string | undefined;
719
719
  /**
720
- * @public
721
720
  * <p>The image set state.</p>
721
+ * @public
722
722
  */
723
723
  imageSetState: ImageSetState | undefined;
724
724
  /**
725
- * @public
726
725
  * <p>The image set workflow status.</p>
726
+ * @public
727
727
  */
728
728
  imageSetWorkflowStatus?: ImageSetWorkflowStatus;
729
729
  /**
730
- * @public
731
730
  * <p>The timestamp when image set properties were created.</p>
731
+ * @public
732
732
  */
733
733
  createdAt?: Date;
734
734
  /**
735
- * @public
736
735
  * <p>The timestamp when image set properties were updated.</p>
736
+ * @public
737
737
  */
738
738
  updatedAt?: Date;
739
739
  /**
740
- * @public
741
740
  * <p>The timestamp when the image set properties were deleted.</p>
741
+ * @public
742
742
  */
743
743
  deletedAt?: Date;
744
744
  /**
745
- * @public
746
745
  * <p>The error message thrown if an image set action fails.</p>
746
+ * @public
747
747
  */
748
748
  message?: string;
749
749
  /**
750
- * @public
751
750
  * <p>The Amazon Resource Name (ARN) assigned to the image set.</p>
751
+ * @public
752
752
  */
753
753
  imageSetArn?: string;
754
754
  }
@@ -757,18 +757,18 @@ export interface GetImageSetResponse {
757
757
  */
758
758
  export interface GetImageSetMetadataRequest {
759
759
  /**
760
- * @public
761
760
  * <p>The data store identifier.</p>
761
+ * @public
762
762
  */
763
763
  datastoreId: string | undefined;
764
764
  /**
765
- * @public
766
765
  * <p>The image set identifier.</p>
766
+ * @public
767
767
  */
768
768
  imageSetId: string | undefined;
769
769
  /**
770
- * @public
771
770
  * <p>The image set version identifier.</p>
771
+ * @public
772
772
  */
773
773
  versionId?: string;
774
774
  }
@@ -777,18 +777,18 @@ export interface GetImageSetMetadataRequest {
777
777
  */
778
778
  export interface GetImageSetMetadataResponse {
779
779
  /**
780
- * @public
781
780
  * <p>The blob containing the aggregated metadata information for the image set.</p>
781
+ * @public
782
782
  */
783
783
  imageSetMetadataBlob: StreamingBlobTypes | undefined;
784
784
  /**
785
- * @public
786
785
  * <p>The format in which the study metadata is returned to the customer. Default is <code>text/plain</code>.</p>
786
+ * @public
787
787
  */
788
788
  contentType?: string;
789
789
  /**
790
- * @public
791
790
  * <p>The compression format in which image set metadata attributes are returned.</p>
791
+ * @public
792
792
  */
793
793
  contentEncoding?: string;
794
794
  }
@@ -797,69 +797,69 @@ export interface GetImageSetMetadataResponse {
797
797
  */
798
798
  export interface ListDICOMImportJobsRequest {
799
799
  /**
800
- * @public
801
800
  * <p>The data store identifier.</p>
801
+ * @public
802
802
  */
803
803
  datastoreId: string | undefined;
804
804
  /**
805
- * @public
806
805
  * <p>The filters for listing import jobs based on status.</p>
806
+ * @public
807
807
  */
808
808
  jobStatus?: JobStatus;
809
809
  /**
810
- * @public
811
810
  * <p>The pagination token used to request the list of import jobs on the next page.</p>
811
+ * @public
812
812
  */
813
813
  nextToken?: string;
814
814
  /**
815
- * @public
816
815
  * <p>The max results count. The upper bound is determined by load testing.</p>
816
+ * @public
817
817
  */
818
818
  maxResults?: number;
819
819
  }
820
820
  /**
821
- * @public
822
821
  * <p>Summary of import job.</p>
822
+ * @public
823
823
  */
824
824
  export interface DICOMImportJobSummary {
825
825
  /**
826
- * @public
827
826
  * <p>The import job identifier.</p>
827
+ * @public
828
828
  */
829
829
  jobId: string | undefined;
830
830
  /**
831
- * @public
832
831
  * <p>The import job name.</p>
832
+ * @public
833
833
  */
834
834
  jobName: string | undefined;
835
835
  /**
836
- * @public
837
836
  * <p>The filters for listing import jobs based on status.</p>
837
+ * @public
838
838
  */
839
839
  jobStatus: JobStatus | undefined;
840
840
  /**
841
- * @public
842
841
  * <p>The data store identifier.</p>
842
+ * @public
843
843
  */
844
844
  datastoreId: string | undefined;
845
845
  /**
846
- * @public
847
846
  * <p>The Amazon Resource Name (ARN) that grants permissions to access medical imaging resources.</p>
847
+ * @public
848
848
  */
849
849
  dataAccessRoleArn?: string;
850
850
  /**
851
- * @public
852
851
  * <p>The timestamp when an import job ended.</p>
852
+ * @public
853
853
  */
854
854
  endedAt?: Date;
855
855
  /**
856
- * @public
857
856
  * <p>The timestamp when an import job was submitted.</p>
857
+ * @public
858
858
  */
859
859
  submittedAt?: Date;
860
860
  /**
861
- * @public
862
861
  * <p>The error message thrown if an import job fails.</p>
862
+ * @public
863
863
  */
864
864
  message?: string;
865
865
  }
@@ -868,13 +868,13 @@ export interface DICOMImportJobSummary {
868
868
  */
869
869
  export interface ListDICOMImportJobsResponse {
870
870
  /**
871
- * @public
872
871
  * <p>A list of job summaries.</p>
872
+ * @public
873
873
  */
874
874
  jobSummaries: DICOMImportJobSummary[] | undefined;
875
875
  /**
876
- * @public
877
876
  * <p>The pagination token used to retrieve the list of import jobs on the next page.</p>
877
+ * @public
878
878
  */
879
879
  nextToken?: string;
880
880
  }
@@ -883,69 +883,69 @@ export interface ListDICOMImportJobsResponse {
883
883
  */
884
884
  export interface ListImageSetVersionsRequest {
885
885
  /**
886
- * @public
887
886
  * <p>The data store identifier.</p>
887
+ * @public
888
888
  */
889
889
  datastoreId: string | undefined;
890
890
  /**
891
- * @public
892
891
  * <p>The image set identifier.</p>
892
+ * @public
893
893
  */
894
894
  imageSetId: string | undefined;
895
895
  /**
896
- * @public
897
896
  * <p>The pagination token used to request the list of image set versions on the next page.</p>
897
+ * @public
898
898
  */
899
899
  nextToken?: string;
900
900
  /**
901
- * @public
902
901
  * <p>The max results count.</p>
902
+ * @public
903
903
  */
904
904
  maxResults?: number;
905
905
  }
906
906
  /**
907
- * @public
908
907
  * <p>The image set properties.</p>
908
+ * @public
909
909
  */
910
910
  export interface ImageSetProperties {
911
911
  /**
912
- * @public
913
912
  * <p>The image set identifier.</p>
913
+ * @public
914
914
  */
915
915
  imageSetId: string | undefined;
916
916
  /**
917
- * @public
918
917
  * <p>The image set version identifier.</p>
918
+ * @public
919
919
  */
920
920
  versionId: string | undefined;
921
921
  /**
922
- * @public
923
922
  * <p>The image set state.</p>
923
+ * @public
924
924
  */
925
925
  imageSetState: ImageSetState | undefined;
926
926
  /**
927
- * @public
928
927
  * <p>The image set workflow status.</p>
928
+ * @public
929
929
  */
930
930
  ImageSetWorkflowStatus?: ImageSetWorkflowStatus;
931
931
  /**
932
- * @public
933
932
  * <p>The timestamp when the image set properties were created.</p>
933
+ * @public
934
934
  */
935
935
  createdAt?: Date;
936
936
  /**
937
- * @public
938
937
  * <p>The timestamp when the image set properties were updated.</p>
938
+ * @public
939
939
  */
940
940
  updatedAt?: Date;
941
941
  /**
942
- * @public
943
942
  * <p>The timestamp when the image set properties were deleted.</p>
943
+ * @public
944
944
  */
945
945
  deletedAt?: Date;
946
946
  /**
947
- * @public
948
947
  * <p>The error message thrown if an image set action fails.</p>
948
+ * @public
949
949
  */
950
950
  message?: string;
951
951
  }
@@ -954,13 +954,13 @@ export interface ImageSetProperties {
954
954
  */
955
955
  export interface ListImageSetVersionsResponse {
956
956
  /**
957
- * @public
958
957
  * <p>Lists all properties associated with an image set.</p>
958
+ * @public
959
959
  */
960
960
  imageSetPropertiesList: ImageSetProperties[] | undefined;
961
961
  /**
962
- * @public
963
962
  * <p>The pagination token used to retrieve the list of image set versions on the next page.</p>
963
+ * @public
964
964
  */
965
965
  nextToken?: string;
966
966
  }
@@ -969,8 +969,8 @@ export interface ListImageSetVersionsResponse {
969
969
  */
970
970
  export interface ListTagsForResourceRequest {
971
971
  /**
972
- * @public
973
972
  * <p>The Amazon Resource Name (ARN) of the medical imaging resource to list tags for.</p>
973
+ * @public
974
974
  */
975
975
  resourceArn: string | undefined;
976
976
  }
@@ -979,8 +979,8 @@ export interface ListTagsForResourceRequest {
979
979
  */
980
980
  export interface ListTagsForResourceResponse {
981
981
  /**
982
- * @public
983
982
  * <p>A list of all tags associated with a medical imaging resource.</p>
983
+ * @public
984
984
  */
985
985
  tags: Record<string, string> | undefined;
986
986
  }
@@ -997,24 +997,24 @@ export declare const Operator: {
997
997
  */
998
998
  export type Operator = (typeof Operator)[keyof typeof Operator];
999
999
  /**
1000
- * @public
1001
1000
  * <p>The aggregated structure to store DICOM study date and study time for search capabilities.</p>
1001
+ * @public
1002
1002
  */
1003
1003
  export interface DICOMStudyDateAndTime {
1004
1004
  /**
1005
- * @public
1006
1005
  * <p>The DICOM study date provided in <code>yyMMdd</code> format.</p>
1006
+ * @public
1007
1007
  */
1008
1008
  DICOMStudyDate: string | undefined;
1009
1009
  /**
1010
- * @public
1011
1010
  * <p>The DICOM study time provided in <code>HHmmss.FFFFFF</code> format.</p>
1011
+ * @public
1012
1012
  */
1013
1013
  DICOMStudyTime?: string;
1014
1014
  }
1015
1015
  /**
1016
- * @public
1017
1016
  * <p>The search input attribute value.</p>
1017
+ * @public
1018
1018
  */
1019
1019
  export type SearchByAttributeValue = SearchByAttributeValue.DICOMAccessionNumberMember | SearchByAttributeValue.DICOMPatientIdMember | SearchByAttributeValue.DICOMStudyDateAndTimeMember | SearchByAttributeValue.DICOMStudyIdMember | SearchByAttributeValue.DICOMStudyInstanceUIDMember | SearchByAttributeValue.CreatedAtMember | SearchByAttributeValue.$UnknownMember;
1020
1020
  /**
@@ -1022,8 +1022,8 @@ export type SearchByAttributeValue = SearchByAttributeValue.DICOMAccessionNumber
1022
1022
  */
1023
1023
  export declare namespace SearchByAttributeValue {
1024
1024
  /**
1025
- * @public
1026
1025
  * <p>The patient ID input for search.</p>
1026
+ * @public
1027
1027
  */
1028
1028
  interface DICOMPatientIdMember {
1029
1029
  DICOMPatientId: string;
@@ -1035,8 +1035,8 @@ export declare namespace SearchByAttributeValue {
1035
1035
  $unknown?: never;
1036
1036
  }
1037
1037
  /**
1038
- * @public
1039
1038
  * <p>The DICOM accession number for search.</p>
1039
+ * @public
1040
1040
  */
1041
1041
  interface DICOMAccessionNumberMember {
1042
1042
  DICOMPatientId?: never;
@@ -1048,8 +1048,8 @@ export declare namespace SearchByAttributeValue {
1048
1048
  $unknown?: never;
1049
1049
  }
1050
1050
  /**
1051
- * @public
1052
1051
  * <p>The DICOM study ID for search.</p>
1052
+ * @public
1053
1053
  */
1054
1054
  interface DICOMStudyIdMember {
1055
1055
  DICOMPatientId?: never;
@@ -1061,8 +1061,8 @@ export declare namespace SearchByAttributeValue {
1061
1061
  $unknown?: never;
1062
1062
  }
1063
1063
  /**
1064
- * @public
1065
1064
  * <p>The DICOM study instance UID for search.</p>
1065
+ * @public
1066
1066
  */
1067
1067
  interface DICOMStudyInstanceUIDMember {
1068
1068
  DICOMPatientId?: never;
@@ -1074,8 +1074,8 @@ export declare namespace SearchByAttributeValue {
1074
1074
  $unknown?: never;
1075
1075
  }
1076
1076
  /**
1077
- * @public
1078
1077
  * <p>The created at time of the image set provided for search.</p>
1078
+ * @public
1079
1079
  */
1080
1080
  interface CreatedAtMember {
1081
1081
  DICOMPatientId?: never;
@@ -1087,8 +1087,8 @@ export declare namespace SearchByAttributeValue {
1087
1087
  $unknown?: never;
1088
1088
  }
1089
1089
  /**
1090
- * @public
1091
1090
  * <p>The aggregated structure containing DICOM study date and study time for search.</p>
1091
+ * @public
1092
1092
  */
1093
1093
  interface DICOMStudyDateAndTimeMember {
1094
1094
  DICOMPatientId?: never;
@@ -1123,29 +1123,29 @@ export declare namespace SearchByAttributeValue {
1123
1123
  const visit: <T>(value: SearchByAttributeValue, visitor: Visitor<T>) => T;
1124
1124
  }
1125
1125
  /**
1126
- * @public
1127
1126
  * <p>The search filter.</p>
1127
+ * @public
1128
1128
  */
1129
1129
  export interface SearchFilter {
1130
1130
  /**
1131
- * @public
1132
1131
  * <p>The search filter values.</p>
1132
+ * @public
1133
1133
  */
1134
1134
  values: SearchByAttributeValue[] | undefined;
1135
1135
  /**
1136
- * @public
1137
1136
  * <p>The search filter operator for <code>imageSetDateTime</code>.</p>
1137
+ * @public
1138
1138
  */
1139
1139
  operator: Operator | undefined;
1140
1140
  }
1141
1141
  /**
1142
- * @public
1143
1142
  * <p>The search criteria.</p>
1143
+ * @public
1144
1144
  */
1145
1145
  export interface SearchCriteria {
1146
1146
  /**
1147
- * @public
1148
1147
  * <p>The filters for the search criteria.</p>
1148
+ * @public
1149
1149
  */
1150
1150
  filters?: SearchFilter[];
1151
1151
  }
@@ -1154,123 +1154,123 @@ export interface SearchCriteria {
1154
1154
  */
1155
1155
  export interface SearchImageSetsRequest {
1156
1156
  /**
1157
- * @public
1158
1157
  * <p>The identifier of the data store where the image sets reside.</p>
1158
+ * @public
1159
1159
  */
1160
1160
  datastoreId: string | undefined;
1161
1161
  /**
1162
- * @public
1163
1162
  * <p>The search criteria that filters by applying a maximum of 1 item to <code>SearchByAttribute</code>.</p>
1163
+ * @public
1164
1164
  */
1165
1165
  searchCriteria?: SearchCriteria;
1166
1166
  /**
1167
- * @public
1168
1167
  * <p>The maximum number of results that can be returned in a search.</p>
1168
+ * @public
1169
1169
  */
1170
1170
  maxResults?: number;
1171
1171
  /**
1172
- * @public
1173
1172
  * <p>The token used for pagination of results returned in the response. Use the token returned from the previous
1174
1173
  * request to continue results where the previous request ended.</p>
1174
+ * @public
1175
1175
  */
1176
1176
  nextToken?: string;
1177
1177
  }
1178
1178
  /**
1179
- * @public
1180
1179
  * <p>The DICOM attributes returned as a part of a response. Each image set has these properties
1181
1180
  * as part of a search result.</p>
1181
+ * @public
1182
1182
  */
1183
1183
  export interface DICOMTags {
1184
1184
  /**
1185
- * @public
1186
1185
  * <p>The unique identifier for a patient in a DICOM Study.</p>
1186
+ * @public
1187
1187
  */
1188
1188
  DICOMPatientId?: string;
1189
1189
  /**
1190
- * @public
1191
1190
  * <p>The patient name.</p>
1191
+ * @public
1192
1192
  */
1193
1193
  DICOMPatientName?: string;
1194
1194
  /**
1195
- * @public
1196
1195
  * <p>The patient birth date.</p>
1196
+ * @public
1197
1197
  */
1198
1198
  DICOMPatientBirthDate?: string;
1199
1199
  /**
1200
- * @public
1201
1200
  * <p>The patient sex.</p>
1201
+ * @public
1202
1202
  */
1203
1203
  DICOMPatientSex?: string;
1204
1204
  /**
1205
- * @public
1206
1205
  * <p>The DICOM provided identifier for studyInstanceUid.&gt;</p>
1206
+ * @public
1207
1207
  */
1208
1208
  DICOMStudyInstanceUID?: string;
1209
1209
  /**
1210
- * @public
1211
1210
  * <p>The DICOM provided studyId.</p>
1211
+ * @public
1212
1212
  */
1213
1213
  DICOMStudyId?: string;
1214
1214
  /**
1215
- * @public
1216
1215
  * <p>The description of the study.</p>
1216
+ * @public
1217
1217
  */
1218
1218
  DICOMStudyDescription?: string;
1219
1219
  /**
1220
- * @public
1221
1220
  * <p>The total number of series in the DICOM study.</p>
1221
+ * @public
1222
1222
  */
1223
1223
  DICOMNumberOfStudyRelatedSeries?: number;
1224
1224
  /**
1225
- * @public
1226
1225
  * <p>The total number of instances in the DICOM study.</p>
1226
+ * @public
1227
1227
  */
1228
1228
  DICOMNumberOfStudyRelatedInstances?: number;
1229
1229
  /**
1230
- * @public
1231
1230
  * <p>The accession number for the DICOM study.</p>
1231
+ * @public
1232
1232
  */
1233
1233
  DICOMAccessionNumber?: string;
1234
1234
  /**
1235
- * @public
1236
1235
  * <p>The study date.</p>
1236
+ * @public
1237
1237
  */
1238
1238
  DICOMStudyDate?: string;
1239
1239
  /**
1240
- * @public
1241
1240
  * <p>The study time.</p>
1241
+ * @public
1242
1242
  */
1243
1243
  DICOMStudyTime?: string;
1244
1244
  }
1245
1245
  /**
1246
- * @public
1247
1246
  * <p>Summary of the image set metadata.</p>
1247
+ * @public
1248
1248
  */
1249
1249
  export interface ImageSetsMetadataSummary {
1250
1250
  /**
1251
- * @public
1252
1251
  * <p>The image set identifier.</p>
1252
+ * @public
1253
1253
  */
1254
1254
  imageSetId: string | undefined;
1255
1255
  /**
1256
- * @public
1257
1256
  * <p>The image set version.</p>
1257
+ * @public
1258
1258
  */
1259
1259
  version?: number;
1260
1260
  /**
1261
- * @public
1262
1261
  * <p>The time an image set is created. Sample creation
1263
1262
  * date is provided in <code>1985-04-12T23:20:50.52Z</code> format.</p>
1263
+ * @public
1264
1264
  */
1265
1265
  createdAt?: Date;
1266
1266
  /**
1267
- * @public
1268
1267
  * <p>The time an image set was last updated.</p>
1268
+ * @public
1269
1269
  */
1270
1270
  updatedAt?: Date;
1271
1271
  /**
1272
- * @public
1273
1272
  * <p>The DICOM tags associated with the image set.</p>
1273
+ * @public
1274
1274
  */
1275
1275
  DICOMTags?: DICOMTags;
1276
1276
  }
@@ -1279,13 +1279,13 @@ export interface ImageSetsMetadataSummary {
1279
1279
  */
1280
1280
  export interface SearchImageSetsResponse {
1281
1281
  /**
1282
- * @public
1283
1282
  * <p>The model containing the image set results.</p>
1283
+ * @public
1284
1284
  */
1285
1285
  imageSetsMetadataSummaries: ImageSetsMetadataSummary[] | undefined;
1286
1286
  /**
1287
- * @public
1288
1287
  * <p>The token for pagination results.</p>
1288
+ * @public
1289
1289
  */
1290
1290
  nextToken?: string;
1291
1291
  }
@@ -1294,33 +1294,33 @@ export interface SearchImageSetsResponse {
1294
1294
  */
1295
1295
  export interface StartDICOMImportJobRequest {
1296
1296
  /**
1297
- * @public
1298
1297
  * <p>The import job name.</p>
1298
+ * @public
1299
1299
  */
1300
1300
  jobName?: string;
1301
1301
  /**
1302
- * @public
1303
1302
  * <p>The Amazon Resource Name (ARN) of the IAM role that grants permission to access medical imaging resources.</p>
1303
+ * @public
1304
1304
  */
1305
1305
  dataAccessRoleArn: string | undefined;
1306
1306
  /**
1307
- * @public
1308
1307
  * <p>A unique identifier for API idempotency.</p>
1308
+ * @public
1309
1309
  */
1310
1310
  clientToken?: string;
1311
1311
  /**
1312
- * @public
1313
1312
  * <p>The data store identifier.</p>
1313
+ * @public
1314
1314
  */
1315
1315
  datastoreId: string | undefined;
1316
1316
  /**
1317
- * @public
1318
1317
  * <p>The input prefix path for the S3 bucket that contains the DICOM files to be imported.</p>
1318
+ * @public
1319
1319
  */
1320
1320
  inputS3Uri: string | undefined;
1321
1321
  /**
1322
- * @public
1323
1322
  * <p>The output prefix of the S3 bucket to upload the results of the DICOM import job.</p>
1323
+ * @public
1324
1324
  */
1325
1325
  outputS3Uri: string | undefined;
1326
1326
  }
@@ -1329,23 +1329,23 @@ export interface StartDICOMImportJobRequest {
1329
1329
  */
1330
1330
  export interface StartDICOMImportJobResponse {
1331
1331
  /**
1332
- * @public
1333
1332
  * <p>The data store identifier.</p>
1333
+ * @public
1334
1334
  */
1335
1335
  datastoreId: string | undefined;
1336
1336
  /**
1337
- * @public
1338
1337
  * <p>The import job identifier.</p>
1338
+ * @public
1339
1339
  */
1340
1340
  jobId: string | undefined;
1341
1341
  /**
1342
- * @public
1343
1342
  * <p>The import job status.</p>
1343
+ * @public
1344
1344
  */
1345
1345
  jobStatus: JobStatus | undefined;
1346
1346
  /**
1347
- * @public
1348
1347
  * <p>The timestamp when the import job was submitted.</p>
1348
+ * @public
1349
1349
  */
1350
1350
  submittedAt: Date | undefined;
1351
1351
  }
@@ -1354,13 +1354,13 @@ export interface StartDICOMImportJobResponse {
1354
1354
  */
1355
1355
  export interface TagResourceRequest {
1356
1356
  /**
1357
- * @public
1358
1357
  * <p>The Amazon Resource Name (ARN) of the medical imaging resource that tags are being added to.</p>
1358
+ * @public
1359
1359
  */
1360
1360
  resourceArn: string | undefined;
1361
1361
  /**
1362
- * @public
1363
1362
  * <p>The user-specified key and value tag pairs added to a medical imaging resource.</p>
1363
+ * @public
1364
1364
  */
1365
1365
  tags: Record<string, string> | undefined;
1366
1366
  }
@@ -1374,13 +1374,13 @@ export interface TagResourceResponse {
1374
1374
  */
1375
1375
  export interface UntagResourceRequest {
1376
1376
  /**
1377
- * @public
1378
1377
  * <p>The Amazon Resource Name (ARN) of the medical imaging resource that tags are being removed from.</p>
1378
+ * @public
1379
1379
  */
1380
1380
  resourceArn: string | undefined;
1381
1381
  /**
1382
- * @public
1383
1382
  * <p>The keys for the tags to be removed from the medical imaging resource.</p>
1383
+ * @public
1384
1384
  */
1385
1385
  tagKeys: string[] | undefined;
1386
1386
  }
@@ -1390,24 +1390,24 @@ export interface UntagResourceRequest {
1390
1390
  export interface UntagResourceResponse {
1391
1391
  }
1392
1392
  /**
1393
- * @public
1394
1393
  * <p>The object containing <code>removableAttributes</code> and <code>updatableAttributes</code>.</p>
1394
+ * @public
1395
1395
  */
1396
1396
  export interface DICOMUpdates {
1397
1397
  /**
1398
- * @public
1399
1398
  * <p>The DICOM tags to be removed from <code>ImageSetMetadata</code>.</p>
1399
+ * @public
1400
1400
  */
1401
1401
  removableAttributes?: Uint8Array;
1402
1402
  /**
1403
- * @public
1404
1403
  * <p>The DICOM tags that need to be updated in <code>ImageSetMetadata</code>.</p>
1404
+ * @public
1405
1405
  */
1406
1406
  updatableAttributes?: Uint8Array;
1407
1407
  }
1408
1408
  /**
1409
- * @public
1410
1409
  * <p>Contains DICOMUpdates.</p>
1410
+ * @public
1411
1411
  */
1412
1412
  export type MetadataUpdates = MetadataUpdates.DICOMUpdatesMember | MetadataUpdates.$UnknownMember;
1413
1413
  /**
@@ -1415,8 +1415,8 @@ export type MetadataUpdates = MetadataUpdates.DICOMUpdatesMember | MetadataUpdat
1415
1415
  */
1416
1416
  export declare namespace MetadataUpdates {
1417
1417
  /**
1418
- * @public
1419
1418
  * <p>The object containing <code>removableAttributes</code> and <code>updatableAttributes</code>.</p>
1419
+ * @public
1420
1420
  */
1421
1421
  interface DICOMUpdatesMember {
1422
1422
  DICOMUpdates: DICOMUpdates;
@@ -1440,23 +1440,23 @@ export declare namespace MetadataUpdates {
1440
1440
  */
1441
1441
  export interface UpdateImageSetMetadataRequest {
1442
1442
  /**
1443
- * @public
1444
1443
  * <p>The data store identifier.</p>
1444
+ * @public
1445
1445
  */
1446
1446
  datastoreId: string | undefined;
1447
1447
  /**
1448
- * @public
1449
1448
  * <p>The image set identifier.</p>
1449
+ * @public
1450
1450
  */
1451
1451
  imageSetId: string | undefined;
1452
1452
  /**
1453
- * @public
1454
1453
  * <p>The latest image set version identifier.</p>
1454
+ * @public
1455
1455
  */
1456
1456
  latestVersionId: string | undefined;
1457
1457
  /**
1458
- * @public
1459
1458
  * <p>Update image set metadata updates.</p>
1459
+ * @public
1460
1460
  */
1461
1461
  updateImageSetMetadataUpdates: MetadataUpdates | undefined;
1462
1462
  }
@@ -1465,43 +1465,43 @@ export interface UpdateImageSetMetadataRequest {
1465
1465
  */
1466
1466
  export interface UpdateImageSetMetadataResponse {
1467
1467
  /**
1468
- * @public
1469
1468
  * <p>The data store identifier.</p>
1469
+ * @public
1470
1470
  */
1471
1471
  datastoreId: string | undefined;
1472
1472
  /**
1473
- * @public
1474
1473
  * <p>The image set identifier.</p>
1474
+ * @public
1475
1475
  */
1476
1476
  imageSetId: string | undefined;
1477
1477
  /**
1478
- * @public
1479
1478
  * <p>The latest image set version identifier.</p>
1479
+ * @public
1480
1480
  */
1481
1481
  latestVersionId: string | undefined;
1482
1482
  /**
1483
- * @public
1484
1483
  * <p>The image set state.</p>
1484
+ * @public
1485
1485
  */
1486
1486
  imageSetState: ImageSetState | undefined;
1487
1487
  /**
1488
- * @public
1489
1488
  * <p>The image set workflow status.</p>
1489
+ * @public
1490
1490
  */
1491
1491
  imageSetWorkflowStatus?: ImageSetWorkflowStatus;
1492
1492
  /**
1493
- * @public
1494
1493
  * <p>The timestamp when image set metadata was created.</p>
1494
+ * @public
1495
1495
  */
1496
1496
  createdAt?: Date;
1497
1497
  /**
1498
- * @public
1499
1498
  * <p>The timestamp when image set metadata was updated.</p>
1499
+ * @public
1500
1500
  */
1501
1501
  updatedAt?: Date;
1502
1502
  /**
1503
- * @public
1504
1503
  * <p>The error message thrown if an update image set metadata action fails.</p>
1504
+ * @public
1505
1505
  */
1506
1506
  message?: string;
1507
1507
  }