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