@aws-sdk/client-comprehendmedical 3.168.0 → 3.170.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 (41) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ComprehendMedical.d.ts +472 -135
  3. package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +5 -5
  33. package/dist-types/ts3.4/models/ComprehendMedicalServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1097 -1021
  36. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  41. package/package.json +34 -34
@@ -1,1021 +1,1097 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ComprehendMedicalServiceException as __BaseException } from "./ComprehendMedicalServiceException";
3
- export declare enum EntityType {
4
- ANATOMY = "ANATOMY",
5
- MEDICAL_CONDITION = "MEDICAL_CONDITION",
6
- MEDICATION = "MEDICATION",
7
- PROTECTED_HEALTH_INFORMATION = "PROTECTED_HEALTH_INFORMATION",
8
- TEST_TREATMENT_PROCEDURE = "TEST_TREATMENT_PROCEDURE",
9
- TIME_EXPRESSION = "TIME_EXPRESSION"
10
- }
11
- export declare enum RelationshipType {
12
- ACUITY = "ACUITY",
13
- ADMINISTERED_VIA = "ADMINISTERED_VIA",
14
- DIRECTION = "DIRECTION",
15
- DOSAGE = "DOSAGE",
16
- DURATION = "DURATION",
17
- EVERY = "EVERY",
18
- FOR = "FOR",
19
- FORM = "FORM",
20
- FREQUENCY = "FREQUENCY",
21
- NEGATIVE = "NEGATIVE",
22
- OVERLAP = "OVERLAP",
23
- RATE = "RATE",
24
- ROUTE_OR_MODE = "ROUTE_OR_MODE",
25
- STRENGTH = "STRENGTH",
26
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
27
- TEST_UNIT = "TEST_UNIT",
28
- TEST_UNITS = "TEST_UNITS",
29
- TEST_VALUE = "TEST_VALUE",
30
- WITH_DOSAGE = "WITH_DOSAGE"
31
- }
32
- export declare enum AttributeName {
33
- DIAGNOSIS = "DIAGNOSIS",
34
- NEGATION = "NEGATION",
35
- SIGN = "SIGN",
36
- SYMPTOM = "SYMPTOM"
37
- }
38
-
39
- export interface Trait {
40
-
41
- Name?: AttributeName | string;
42
-
43
- Score?: number;
44
- }
45
- export declare enum EntitySubType {
46
- ACUITY = "ACUITY",
47
- ADDRESS = "ADDRESS",
48
- AGE = "AGE",
49
- BRAND_NAME = "BRAND_NAME",
50
- CONTACT_POINT = "CONTACT_POINT",
51
- DATE = "DATE",
52
- DIRECTION = "DIRECTION",
53
- DOSAGE = "DOSAGE",
54
- DURATION = "DURATION",
55
- DX_NAME = "DX_NAME",
56
- EMAIL = "EMAIL",
57
- FORM = "FORM",
58
- FREQUENCY = "FREQUENCY",
59
- GENERIC_NAME = "GENERIC_NAME",
60
- ID = "ID",
61
- IDENTIFIER = "IDENTIFIER",
62
- NAME = "NAME",
63
- PHONE_OR_FAX = "PHONE_OR_FAX",
64
- PROCEDURE_NAME = "PROCEDURE_NAME",
65
- PROFESSION = "PROFESSION",
66
- QUALITY = "QUALITY",
67
- QUANTITY = "QUANTITY",
68
- RATE = "RATE",
69
- ROUTE_OR_MODE = "ROUTE_OR_MODE",
70
- STRENGTH = "STRENGTH",
71
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
72
- TEST_NAME = "TEST_NAME",
73
- TEST_UNIT = "TEST_UNIT",
74
- TEST_UNITS = "TEST_UNITS",
75
- TEST_VALUE = "TEST_VALUE",
76
- TIME_EXPRESSION = "TIME_EXPRESSION",
77
- TIME_TO_DX_NAME = "TIME_TO_DX_NAME",
78
- TIME_TO_MEDICATION_NAME = "TIME_TO_MEDICATION_NAME",
79
- TIME_TO_PROCEDURE_NAME = "TIME_TO_PROCEDURE_NAME",
80
- TIME_TO_TEST_NAME = "TIME_TO_TEST_NAME",
81
- TIME_TO_TREATMENT_NAME = "TIME_TO_TREATMENT_NAME",
82
- TREATMENT_NAME = "TREATMENT_NAME",
83
- URL = "URL"
84
- }
85
-
86
- export interface Attribute {
87
-
88
- Type?: EntitySubType | string;
89
-
90
- Score?: number;
91
-
92
- RelationshipScore?: number;
93
-
94
- RelationshipType?: RelationshipType | string;
95
-
96
- Id?: number;
97
-
98
- BeginOffset?: number;
99
-
100
- EndOffset?: number;
101
-
102
- Text?: string;
103
-
104
- Category?: EntityType | string;
105
-
106
- Traits?: Trait[];
107
- }
108
-
109
- export interface Characters {
110
-
111
- OriginalTextCharacters?: number;
112
- }
113
- export interface DescribeEntitiesDetectionV2JobRequest {
114
-
115
- JobId: string | undefined;
116
- }
117
-
118
- export interface InputDataConfig {
119
-
120
- S3Bucket: string | undefined;
121
-
122
- S3Key?: string;
123
- }
124
- export declare enum JobStatus {
125
- COMPLETED = "COMPLETED",
126
- FAILED = "FAILED",
127
- IN_PROGRESS = "IN_PROGRESS",
128
- PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
129
- STOPPED = "STOPPED",
130
- STOP_REQUESTED = "STOP_REQUESTED",
131
- SUBMITTED = "SUBMITTED"
132
- }
133
- export declare enum LanguageCode {
134
- EN = "en"
135
- }
136
-
137
- export interface OutputDataConfig {
138
-
139
- S3Bucket: string | undefined;
140
-
141
- S3Key?: string;
142
- }
143
-
144
- export interface ComprehendMedicalAsyncJobProperties {
145
-
146
- JobId?: string;
147
-
148
- JobName?: string;
149
-
150
- JobStatus?: JobStatus | string;
151
-
152
- Message?: string;
153
-
154
- SubmitTime?: Date;
155
-
156
- EndTime?: Date;
157
-
158
- ExpirationTime?: Date;
159
-
160
- InputDataConfig?: InputDataConfig;
161
-
162
- OutputDataConfig?: OutputDataConfig;
163
-
164
- LanguageCode?: LanguageCode | string;
165
-
166
- DataAccessRoleArn?: string;
167
-
168
- ManifestFilePath?: string;
169
-
170
- KMSKey?: string;
171
-
172
- ModelVersion?: string;
173
- }
174
- export interface DescribeEntitiesDetectionV2JobResponse {
175
-
176
- ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
177
- }
178
-
179
- export declare class InternalServerException extends __BaseException {
180
- readonly name: "InternalServerException";
181
- readonly $fault: "server";
182
- Message?: string;
183
-
184
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
185
- }
186
-
187
- export declare class InvalidRequestException extends __BaseException {
188
- readonly name: "InvalidRequestException";
189
- readonly $fault: "client";
190
- Message?: string;
191
-
192
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
193
- }
194
-
195
- export declare class ResourceNotFoundException extends __BaseException {
196
- readonly name: "ResourceNotFoundException";
197
- readonly $fault: "client";
198
- Message?: string;
199
-
200
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
201
- }
202
-
203
- export declare class TooManyRequestsException extends __BaseException {
204
- readonly name: "TooManyRequestsException";
205
- readonly $fault: "client";
206
- Message?: string;
207
-
208
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
209
- }
210
- export interface DescribeICD10CMInferenceJobRequest {
211
-
212
- JobId: string | undefined;
213
- }
214
- export interface DescribeICD10CMInferenceJobResponse {
215
-
216
- ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
217
- }
218
- export interface DescribePHIDetectionJobRequest {
219
-
220
- JobId: string | undefined;
221
- }
222
- export interface DescribePHIDetectionJobResponse {
223
-
224
- ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
225
- }
226
- export interface DescribeRxNormInferenceJobRequest {
227
-
228
- JobId: string | undefined;
229
- }
230
- export interface DescribeRxNormInferenceJobResponse {
231
-
232
- ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
233
- }
234
- export interface DescribeSNOMEDCTInferenceJobRequest {
235
-
236
- JobId: string | undefined;
237
- }
238
- export interface DescribeSNOMEDCTInferenceJobResponse {
239
-
240
- ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
241
- }
242
- export interface DetectEntitiesRequest {
243
-
244
- Text: string | undefined;
245
- }
246
-
247
- export interface Entity {
248
-
249
- Id?: number;
250
-
251
- BeginOffset?: number;
252
-
253
- EndOffset?: number;
254
-
255
- Score?: number;
256
-
257
- Text?: string;
258
-
259
- Category?: EntityType | string;
260
-
261
- Type?: EntitySubType | string;
262
-
263
- Traits?: Trait[];
264
-
265
- Attributes?: Attribute[];
266
- }
267
-
268
- export interface UnmappedAttribute {
269
-
270
- Type?: EntityType | string;
271
-
272
- Attribute?: Attribute;
273
- }
274
- export interface DetectEntitiesResponse {
275
-
276
- Entities: Entity[] | undefined;
277
-
278
- UnmappedAttributes?: UnmappedAttribute[];
279
-
280
- PaginationToken?: string;
281
-
282
- ModelVersion: string | undefined;
283
- }
284
-
285
- export declare class InvalidEncodingException extends __BaseException {
286
- readonly name: "InvalidEncodingException";
287
- readonly $fault: "client";
288
- Message?: string;
289
-
290
- constructor(opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>);
291
- }
292
-
293
- export declare class ServiceUnavailableException extends __BaseException {
294
- readonly name: "ServiceUnavailableException";
295
- readonly $fault: "server";
296
- Message?: string;
297
-
298
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
299
- }
300
-
301
- export declare class TextSizeLimitExceededException extends __BaseException {
302
- readonly name: "TextSizeLimitExceededException";
303
- readonly $fault: "client";
304
- Message?: string;
305
-
306
- constructor(opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>);
307
- }
308
- export interface DetectEntitiesV2Request {
309
-
310
- Text: string | undefined;
311
- }
312
- export interface DetectEntitiesV2Response {
313
-
314
- Entities: Entity[] | undefined;
315
-
316
- UnmappedAttributes?: UnmappedAttribute[];
317
-
318
- PaginationToken?: string;
319
-
320
- ModelVersion: string | undefined;
321
- }
322
- export interface DetectPHIRequest {
323
-
324
- Text: string | undefined;
325
- }
326
- export interface DetectPHIResponse {
327
-
328
- Entities: Entity[] | undefined;
329
-
330
- PaginationToken?: string;
331
-
332
- ModelVersion: string | undefined;
333
- }
334
- export interface InferICD10CMRequest {
335
-
336
- Text: string | undefined;
337
- }
338
- export declare enum ICD10CMEntityType {
339
- DX_NAME = "DX_NAME",
340
- TIME_EXPRESSION = "TIME_EXPRESSION"
341
- }
342
- export declare enum ICD10CMRelationshipType {
343
- OVERLAP = "OVERLAP",
344
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE"
345
- }
346
- export declare enum ICD10CMTraitName {
347
- DIAGNOSIS = "DIAGNOSIS",
348
- NEGATION = "NEGATION",
349
- SIGN = "SIGN",
350
- SYMPTOM = "SYMPTOM"
351
- }
352
-
353
- export interface ICD10CMTrait {
354
-
355
- Name?: ICD10CMTraitName | string;
356
-
357
- Score?: number;
358
- }
359
- export declare enum ICD10CMAttributeType {
360
- ACUITY = "ACUITY",
361
- DIRECTION = "DIRECTION",
362
- QUALITY = "QUALITY",
363
- QUANTITY = "QUANTITY",
364
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
365
- TIME_EXPRESSION = "TIME_EXPRESSION",
366
- TIME_TO_DX_NAME = "TIME_TO_DX_NAME"
367
- }
368
-
369
- export interface ICD10CMAttribute {
370
-
371
- Type?: ICD10CMAttributeType | string;
372
-
373
- Score?: number;
374
-
375
- RelationshipScore?: number;
376
-
377
- Id?: number;
378
-
379
- BeginOffset?: number;
380
-
381
- EndOffset?: number;
382
-
383
- Text?: string;
384
-
385
- Traits?: ICD10CMTrait[];
386
-
387
- Category?: ICD10CMEntityType | string;
388
-
389
- RelationshipType?: ICD10CMRelationshipType | string;
390
- }
391
- export declare enum ICD10CMEntityCategory {
392
- MEDICAL_CONDITION = "MEDICAL_CONDITION"
393
- }
394
-
395
- export interface ICD10CMConcept {
396
-
397
- Description?: string;
398
-
399
- Code?: string;
400
-
401
- Score?: number;
402
- }
403
-
404
- export interface ICD10CMEntity {
405
-
406
- Id?: number;
407
-
408
- Text?: string;
409
-
410
- Category?: ICD10CMEntityCategory | string;
411
-
412
- Type?: ICD10CMEntityType | string;
413
-
414
- Score?: number;
415
-
416
- BeginOffset?: number;
417
-
418
- EndOffset?: number;
419
-
420
- Attributes?: ICD10CMAttribute[];
421
-
422
- Traits?: ICD10CMTrait[];
423
-
424
- ICD10CMConcepts?: ICD10CMConcept[];
425
- }
426
- export interface InferICD10CMResponse {
427
-
428
- Entities: ICD10CMEntity[] | undefined;
429
-
430
- PaginationToken?: string;
431
-
432
- ModelVersion?: string;
433
- }
434
- export interface InferRxNormRequest {
435
-
436
- Text: string | undefined;
437
- }
438
- export declare enum RxNormTraitName {
439
- NEGATION = "NEGATION"
440
- }
441
-
442
- export interface RxNormTrait {
443
-
444
- Name?: RxNormTraitName | string;
445
-
446
- Score?: number;
447
- }
448
- export declare enum RxNormAttributeType {
449
- DOSAGE = "DOSAGE",
450
- DURATION = "DURATION",
451
- FORM = "FORM",
452
- FREQUENCY = "FREQUENCY",
453
- RATE = "RATE",
454
- ROUTE_OR_MODE = "ROUTE_OR_MODE",
455
- STRENGTH = "STRENGTH"
456
- }
457
-
458
- export interface RxNormAttribute {
459
-
460
- Type?: RxNormAttributeType | string;
461
-
462
- Score?: number;
463
-
464
- RelationshipScore?: number;
465
-
466
- Id?: number;
467
-
468
- BeginOffset?: number;
469
-
470
- EndOffset?: number;
471
-
472
- Text?: string;
473
-
474
- Traits?: RxNormTrait[];
475
- }
476
- export declare enum RxNormEntityCategory {
477
- MEDICATION = "MEDICATION"
478
- }
479
-
480
- export interface RxNormConcept {
481
-
482
- Description?: string;
483
-
484
- Code?: string;
485
-
486
- Score?: number;
487
- }
488
- export declare enum RxNormEntityType {
489
- BRAND_NAME = "BRAND_NAME",
490
- GENERIC_NAME = "GENERIC_NAME"
491
- }
492
-
493
- export interface RxNormEntity {
494
-
495
- Id?: number;
496
-
497
- Text?: string;
498
-
499
- Category?: RxNormEntityCategory | string;
500
-
501
- Type?: RxNormEntityType | string;
502
-
503
- Score?: number;
504
-
505
- BeginOffset?: number;
506
-
507
- EndOffset?: number;
508
-
509
- Attributes?: RxNormAttribute[];
510
-
511
- Traits?: RxNormTrait[];
512
-
513
- RxNormConcepts?: RxNormConcept[];
514
- }
515
- export interface InferRxNormResponse {
516
-
517
- Entities: RxNormEntity[] | undefined;
518
-
519
- PaginationToken?: string;
520
-
521
- ModelVersion?: string;
522
- }
523
- export interface InferSNOMEDCTRequest {
524
-
525
- Text: string | undefined;
526
- }
527
- export declare enum SNOMEDCTEntityCategory {
528
- ANATOMY = "ANATOMY",
529
- MEDICAL_CONDITION = "MEDICAL_CONDITION",
530
- TEST_TREATMENT_PROCEDURE = "TEST_TREATMENT_PROCEDURE"
531
- }
532
- export declare enum SNOMEDCTRelationshipType {
533
- ACUITY = "ACUITY",
534
- DIRECTION = "DIRECTION",
535
- QUALITY = "QUALITY",
536
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
537
- TEST_UNITS = "TEST_UNITS",
538
- TEST_VALUE = "TEST_VALUE"
539
- }
540
-
541
- export interface SNOMEDCTConcept {
542
-
543
- Description?: string;
544
-
545
- Code?: string;
546
-
547
- Score?: number;
548
- }
549
- export declare enum SNOMEDCTTraitName {
550
- DIAGNOSIS = "DIAGNOSIS",
551
- NEGATION = "NEGATION",
552
- SIGN = "SIGN",
553
- SYMPTOM = "SYMPTOM"
554
- }
555
-
556
- export interface SNOMEDCTTrait {
557
-
558
- Name?: SNOMEDCTTraitName | string;
559
-
560
- Score?: number;
561
- }
562
- export declare enum SNOMEDCTAttributeType {
563
- ACUITY = "ACUITY",
564
- DIRECTION = "DIRECTION",
565
- QUALITY = "QUALITY",
566
- SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
567
- TEST_UNIT = "TEST_UNIT",
568
- TEST_VALUE = "TEST_VALUE"
569
- }
570
-
571
- export interface SNOMEDCTAttribute {
572
-
573
- Category?: SNOMEDCTEntityCategory | string;
574
-
575
- Type?: SNOMEDCTAttributeType | string;
576
-
577
- Score?: number;
578
-
579
- RelationshipScore?: number;
580
-
581
- RelationshipType?: SNOMEDCTRelationshipType | string;
582
-
583
- Id?: number;
584
-
585
- BeginOffset?: number;
586
-
587
- EndOffset?: number;
588
-
589
- Text?: string;
590
-
591
- Traits?: SNOMEDCTTrait[];
592
-
593
- SNOMEDCTConcepts?: SNOMEDCTConcept[];
594
- }
595
- export declare enum SNOMEDCTEntityType {
596
- DX_NAME = "DX_NAME",
597
- PROCEDURE_NAME = "PROCEDURE_NAME",
598
- TEST_NAME = "TEST_NAME",
599
- TREATMENT_NAME = "TREATMENT_NAME"
600
- }
601
-
602
- export interface SNOMEDCTEntity {
603
-
604
- Id?: number;
605
-
606
- Text?: string;
607
-
608
- Category?: SNOMEDCTEntityCategory | string;
609
-
610
- Type?: SNOMEDCTEntityType | string;
611
-
612
- Score?: number;
613
-
614
- BeginOffset?: number;
615
-
616
- EndOffset?: number;
617
-
618
- Attributes?: SNOMEDCTAttribute[];
619
-
620
- Traits?: SNOMEDCTTrait[];
621
-
622
- SNOMEDCTConcepts?: SNOMEDCTConcept[];
623
- }
624
-
625
- export interface SNOMEDCTDetails {
626
-
627
- Edition?: string;
628
-
629
- Language?: string;
630
-
631
- VersionDate?: string;
632
- }
633
- export interface InferSNOMEDCTResponse {
634
-
635
- Entities: SNOMEDCTEntity[] | undefined;
636
-
637
- PaginationToken?: string;
638
-
639
- ModelVersion?: string;
640
-
641
- SNOMEDCTDetails?: SNOMEDCTDetails;
642
-
643
- Characters?: Characters;
644
- }
645
-
646
- export interface ComprehendMedicalAsyncJobFilter {
647
-
648
- JobName?: string;
649
-
650
- JobStatus?: JobStatus | string;
651
-
652
- SubmitTimeBefore?: Date;
653
-
654
- SubmitTimeAfter?: Date;
655
- }
656
- export interface ListEntitiesDetectionV2JobsRequest {
657
-
658
- Filter?: ComprehendMedicalAsyncJobFilter;
659
-
660
- NextToken?: string;
661
-
662
- MaxResults?: number;
663
- }
664
- export interface ListEntitiesDetectionV2JobsResponse {
665
-
666
- ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
667
-
668
- NextToken?: string;
669
- }
670
-
671
- export declare class ValidationException extends __BaseException {
672
- readonly name: "ValidationException";
673
- readonly $fault: "client";
674
- Message?: string;
675
-
676
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
677
- }
678
- export interface ListICD10CMInferenceJobsRequest {
679
-
680
- Filter?: ComprehendMedicalAsyncJobFilter;
681
-
682
- NextToken?: string;
683
-
684
- MaxResults?: number;
685
- }
686
- export interface ListICD10CMInferenceJobsResponse {
687
-
688
- ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
689
-
690
- NextToken?: string;
691
- }
692
- export interface ListPHIDetectionJobsRequest {
693
-
694
- Filter?: ComprehendMedicalAsyncJobFilter;
695
-
696
- NextToken?: string;
697
-
698
- MaxResults?: number;
699
- }
700
- export interface ListPHIDetectionJobsResponse {
701
-
702
- ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
703
-
704
- NextToken?: string;
705
- }
706
- export interface ListRxNormInferenceJobsRequest {
707
-
708
- Filter?: ComprehendMedicalAsyncJobFilter;
709
-
710
- NextToken?: string;
711
-
712
- MaxResults?: number;
713
- }
714
- export interface ListRxNormInferenceJobsResponse {
715
-
716
- ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
717
-
718
- NextToken?: string;
719
- }
720
- export interface ListSNOMEDCTInferenceJobsRequest {
721
-
722
- Filter?: ComprehendMedicalAsyncJobFilter;
723
-
724
- NextToken?: string;
725
-
726
- MaxResults?: number;
727
- }
728
- export interface ListSNOMEDCTInferenceJobsResponse {
729
-
730
- ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
731
-
732
- NextToken?: string;
733
- }
734
- export interface StartEntitiesDetectionV2JobRequest {
735
-
736
- InputDataConfig: InputDataConfig | undefined;
737
-
738
- OutputDataConfig: OutputDataConfig | undefined;
739
-
740
- DataAccessRoleArn: string | undefined;
741
-
742
- JobName?: string;
743
-
744
- ClientRequestToken?: string;
745
-
746
- KMSKey?: string;
747
-
748
- LanguageCode: LanguageCode | string | undefined;
749
- }
750
- export interface StartEntitiesDetectionV2JobResponse {
751
-
752
- JobId?: string;
753
- }
754
- export interface StartICD10CMInferenceJobRequest {
755
-
756
- InputDataConfig: InputDataConfig | undefined;
757
-
758
- OutputDataConfig: OutputDataConfig | undefined;
759
-
760
- DataAccessRoleArn: string | undefined;
761
-
762
- JobName?: string;
763
-
764
- ClientRequestToken?: string;
765
-
766
- KMSKey?: string;
767
-
768
- LanguageCode: LanguageCode | string | undefined;
769
- }
770
- export interface StartICD10CMInferenceJobResponse {
771
-
772
- JobId?: string;
773
- }
774
- export interface StartPHIDetectionJobRequest {
775
-
776
- InputDataConfig: InputDataConfig | undefined;
777
-
778
- OutputDataConfig: OutputDataConfig | undefined;
779
-
780
- DataAccessRoleArn: string | undefined;
781
-
782
- JobName?: string;
783
-
784
- ClientRequestToken?: string;
785
-
786
- KMSKey?: string;
787
-
788
- LanguageCode: LanguageCode | string | undefined;
789
- }
790
- export interface StartPHIDetectionJobResponse {
791
-
792
- JobId?: string;
793
- }
794
- export interface StartRxNormInferenceJobRequest {
795
-
796
- InputDataConfig: InputDataConfig | undefined;
797
-
798
- OutputDataConfig: OutputDataConfig | undefined;
799
-
800
- DataAccessRoleArn: string | undefined;
801
-
802
- JobName?: string;
803
-
804
- ClientRequestToken?: string;
805
-
806
- KMSKey?: string;
807
-
808
- LanguageCode: LanguageCode | string | undefined;
809
- }
810
- export interface StartRxNormInferenceJobResponse {
811
-
812
- JobId?: string;
813
- }
814
- export interface StartSNOMEDCTInferenceJobRequest {
815
-
816
- InputDataConfig: InputDataConfig | undefined;
817
-
818
- OutputDataConfig: OutputDataConfig | undefined;
819
-
820
- DataAccessRoleArn: string | undefined;
821
-
822
- JobName?: string;
823
-
824
- ClientRequestToken?: string;
825
-
826
- KMSKey?: string;
827
-
828
- LanguageCode: LanguageCode | string | undefined;
829
- }
830
- export interface StartSNOMEDCTInferenceJobResponse {
831
-
832
- JobId?: string;
833
- }
834
- export interface StopEntitiesDetectionV2JobRequest {
835
-
836
- JobId: string | undefined;
837
- }
838
- export interface StopEntitiesDetectionV2JobResponse {
839
-
840
- JobId?: string;
841
- }
842
- export interface StopICD10CMInferenceJobRequest {
843
-
844
- JobId: string | undefined;
845
- }
846
- export interface StopICD10CMInferenceJobResponse {
847
-
848
- JobId?: string;
849
- }
850
- export interface StopPHIDetectionJobRequest {
851
-
852
- JobId: string | undefined;
853
- }
854
- export interface StopPHIDetectionJobResponse {
855
-
856
- JobId?: string;
857
- }
858
- export interface StopRxNormInferenceJobRequest {
859
-
860
- JobId: string | undefined;
861
- }
862
- export interface StopRxNormInferenceJobResponse {
863
-
864
- JobId?: string;
865
- }
866
- export interface StopSNOMEDCTInferenceJobRequest {
867
-
868
- JobId: string | undefined;
869
- }
870
- export interface StopSNOMEDCTInferenceJobResponse {
871
-
872
- JobId?: string;
873
- }
874
-
875
- export declare const TraitFilterSensitiveLog: (obj: Trait) => any;
876
-
877
- export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
878
-
879
- export declare const CharactersFilterSensitiveLog: (obj: Characters) => any;
880
-
881
- export declare const DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobRequest) => any;
882
-
883
- export declare const InputDataConfigFilterSensitiveLog: (obj: InputDataConfig) => any;
884
-
885
- export declare const OutputDataConfigFilterSensitiveLog: (obj: OutputDataConfig) => any;
886
-
887
- export declare const ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog: (obj: ComprehendMedicalAsyncJobProperties) => any;
888
-
889
- export declare const DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobResponse) => any;
890
-
891
- export declare const DescribeICD10CMInferenceJobRequestFilterSensitiveLog: (obj: DescribeICD10CMInferenceJobRequest) => any;
892
-
893
- export declare const DescribeICD10CMInferenceJobResponseFilterSensitiveLog: (obj: DescribeICD10CMInferenceJobResponse) => any;
894
-
895
- export declare const DescribePHIDetectionJobRequestFilterSensitiveLog: (obj: DescribePHIDetectionJobRequest) => any;
896
-
897
- export declare const DescribePHIDetectionJobResponseFilterSensitiveLog: (obj: DescribePHIDetectionJobResponse) => any;
898
-
899
- export declare const DescribeRxNormInferenceJobRequestFilterSensitiveLog: (obj: DescribeRxNormInferenceJobRequest) => any;
900
-
901
- export declare const DescribeRxNormInferenceJobResponseFilterSensitiveLog: (obj: DescribeRxNormInferenceJobResponse) => any;
902
-
903
- export declare const DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobRequest) => any;
904
-
905
- export declare const DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobResponse) => any;
906
-
907
- export declare const DetectEntitiesRequestFilterSensitiveLog: (obj: DetectEntitiesRequest) => any;
908
-
909
- export declare const EntityFilterSensitiveLog: (obj: Entity) => any;
910
-
911
- export declare const UnmappedAttributeFilterSensitiveLog: (obj: UnmappedAttribute) => any;
912
-
913
- export declare const DetectEntitiesResponseFilterSensitiveLog: (obj: DetectEntitiesResponse) => any;
914
-
915
- export declare const DetectEntitiesV2RequestFilterSensitiveLog: (obj: DetectEntitiesV2Request) => any;
916
-
917
- export declare const DetectEntitiesV2ResponseFilterSensitiveLog: (obj: DetectEntitiesV2Response) => any;
918
-
919
- export declare const DetectPHIRequestFilterSensitiveLog: (obj: DetectPHIRequest) => any;
920
-
921
- export declare const DetectPHIResponseFilterSensitiveLog: (obj: DetectPHIResponse) => any;
922
-
923
- export declare const InferICD10CMRequestFilterSensitiveLog: (obj: InferICD10CMRequest) => any;
924
-
925
- export declare const ICD10CMTraitFilterSensitiveLog: (obj: ICD10CMTrait) => any;
926
-
927
- export declare const ICD10CMAttributeFilterSensitiveLog: (obj: ICD10CMAttribute) => any;
928
-
929
- export declare const ICD10CMConceptFilterSensitiveLog: (obj: ICD10CMConcept) => any;
930
-
931
- export declare const ICD10CMEntityFilterSensitiveLog: (obj: ICD10CMEntity) => any;
932
-
933
- export declare const InferICD10CMResponseFilterSensitiveLog: (obj: InferICD10CMResponse) => any;
934
-
935
- export declare const InferRxNormRequestFilterSensitiveLog: (obj: InferRxNormRequest) => any;
936
-
937
- export declare const RxNormTraitFilterSensitiveLog: (obj: RxNormTrait) => any;
938
-
939
- export declare const RxNormAttributeFilterSensitiveLog: (obj: RxNormAttribute) => any;
940
-
941
- export declare const RxNormConceptFilterSensitiveLog: (obj: RxNormConcept) => any;
942
-
943
- export declare const RxNormEntityFilterSensitiveLog: (obj: RxNormEntity) => any;
944
-
945
- export declare const InferRxNormResponseFilterSensitiveLog: (obj: InferRxNormResponse) => any;
946
-
947
- export declare const InferSNOMEDCTRequestFilterSensitiveLog: (obj: InferSNOMEDCTRequest) => any;
948
-
949
- export declare const SNOMEDCTConceptFilterSensitiveLog: (obj: SNOMEDCTConcept) => any;
950
-
951
- export declare const SNOMEDCTTraitFilterSensitiveLog: (obj: SNOMEDCTTrait) => any;
952
-
953
- export declare const SNOMEDCTAttributeFilterSensitiveLog: (obj: SNOMEDCTAttribute) => any;
954
-
955
- export declare const SNOMEDCTEntityFilterSensitiveLog: (obj: SNOMEDCTEntity) => any;
956
-
957
- export declare const SNOMEDCTDetailsFilterSensitiveLog: (obj: SNOMEDCTDetails) => any;
958
-
959
- export declare const InferSNOMEDCTResponseFilterSensitiveLog: (obj: InferSNOMEDCTResponse) => any;
960
-
961
- export declare const ComprehendMedicalAsyncJobFilterFilterSensitiveLog: (obj: ComprehendMedicalAsyncJobFilter) => any;
962
-
963
- export declare const ListEntitiesDetectionV2JobsRequestFilterSensitiveLog: (obj: ListEntitiesDetectionV2JobsRequest) => any;
964
-
965
- export declare const ListEntitiesDetectionV2JobsResponseFilterSensitiveLog: (obj: ListEntitiesDetectionV2JobsResponse) => any;
966
-
967
- export declare const ListICD10CMInferenceJobsRequestFilterSensitiveLog: (obj: ListICD10CMInferenceJobsRequest) => any;
968
-
969
- export declare const ListICD10CMInferenceJobsResponseFilterSensitiveLog: (obj: ListICD10CMInferenceJobsResponse) => any;
970
-
971
- export declare const ListPHIDetectionJobsRequestFilterSensitiveLog: (obj: ListPHIDetectionJobsRequest) => any;
972
-
973
- export declare const ListPHIDetectionJobsResponseFilterSensitiveLog: (obj: ListPHIDetectionJobsResponse) => any;
974
-
975
- export declare const ListRxNormInferenceJobsRequestFilterSensitiveLog: (obj: ListRxNormInferenceJobsRequest) => any;
976
-
977
- export declare const ListRxNormInferenceJobsResponseFilterSensitiveLog: (obj: ListRxNormInferenceJobsResponse) => any;
978
-
979
- export declare const ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsRequest) => any;
980
-
981
- export declare const ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsResponse) => any;
982
-
983
- export declare const StartEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: StartEntitiesDetectionV2JobRequest) => any;
984
-
985
- export declare const StartEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: StartEntitiesDetectionV2JobResponse) => any;
986
-
987
- export declare const StartICD10CMInferenceJobRequestFilterSensitiveLog: (obj: StartICD10CMInferenceJobRequest) => any;
988
-
989
- export declare const StartICD10CMInferenceJobResponseFilterSensitiveLog: (obj: StartICD10CMInferenceJobResponse) => any;
990
-
991
- export declare const StartPHIDetectionJobRequestFilterSensitiveLog: (obj: StartPHIDetectionJobRequest) => any;
992
-
993
- export declare const StartPHIDetectionJobResponseFilterSensitiveLog: (obj: StartPHIDetectionJobResponse) => any;
994
-
995
- export declare const StartRxNormInferenceJobRequestFilterSensitiveLog: (obj: StartRxNormInferenceJobRequest) => any;
996
-
997
- export declare const StartRxNormInferenceJobResponseFilterSensitiveLog: (obj: StartRxNormInferenceJobResponse) => any;
998
-
999
- export declare const StartSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: StartSNOMEDCTInferenceJobRequest) => any;
1000
-
1001
- export declare const StartSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: StartSNOMEDCTInferenceJobResponse) => any;
1002
-
1003
- export declare const StopEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: StopEntitiesDetectionV2JobRequest) => any;
1004
-
1005
- export declare const StopEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: StopEntitiesDetectionV2JobResponse) => any;
1006
-
1007
- export declare const StopICD10CMInferenceJobRequestFilterSensitiveLog: (obj: StopICD10CMInferenceJobRequest) => any;
1008
-
1009
- export declare const StopICD10CMInferenceJobResponseFilterSensitiveLog: (obj: StopICD10CMInferenceJobResponse) => any;
1010
-
1011
- export declare const StopPHIDetectionJobRequestFilterSensitiveLog: (obj: StopPHIDetectionJobRequest) => any;
1012
-
1013
- export declare const StopPHIDetectionJobResponseFilterSensitiveLog: (obj: StopPHIDetectionJobResponse) => any;
1014
-
1015
- export declare const StopRxNormInferenceJobRequestFilterSensitiveLog: (obj: StopRxNormInferenceJobRequest) => any;
1016
-
1017
- export declare const StopRxNormInferenceJobResponseFilterSensitiveLog: (obj: StopRxNormInferenceJobResponse) => any;
1018
-
1019
- export declare const StopSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: StopSNOMEDCTInferenceJobRequest) => any;
1020
-
1021
- export declare const StopSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: StopSNOMEDCTInferenceJobResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ComprehendMedicalServiceException as __BaseException } from "./ComprehendMedicalServiceException";
3
+ export declare enum EntityType {
4
+ ANATOMY = "ANATOMY",
5
+ MEDICAL_CONDITION = "MEDICAL_CONDITION",
6
+ MEDICATION = "MEDICATION",
7
+ PROTECTED_HEALTH_INFORMATION = "PROTECTED_HEALTH_INFORMATION",
8
+ TEST_TREATMENT_PROCEDURE = "TEST_TREATMENT_PROCEDURE",
9
+ TIME_EXPRESSION = "TIME_EXPRESSION",
10
+ }
11
+ export declare enum RelationshipType {
12
+ ACUITY = "ACUITY",
13
+ ADMINISTERED_VIA = "ADMINISTERED_VIA",
14
+ DIRECTION = "DIRECTION",
15
+ DOSAGE = "DOSAGE",
16
+ DURATION = "DURATION",
17
+ EVERY = "EVERY",
18
+ FOR = "FOR",
19
+ FORM = "FORM",
20
+ FREQUENCY = "FREQUENCY",
21
+ NEGATIVE = "NEGATIVE",
22
+ OVERLAP = "OVERLAP",
23
+ RATE = "RATE",
24
+ ROUTE_OR_MODE = "ROUTE_OR_MODE",
25
+ STRENGTH = "STRENGTH",
26
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
27
+ TEST_UNIT = "TEST_UNIT",
28
+ TEST_UNITS = "TEST_UNITS",
29
+ TEST_VALUE = "TEST_VALUE",
30
+ WITH_DOSAGE = "WITH_DOSAGE",
31
+ }
32
+ export declare enum AttributeName {
33
+ DIAGNOSIS = "DIAGNOSIS",
34
+ NEGATION = "NEGATION",
35
+ SIGN = "SIGN",
36
+ SYMPTOM = "SYMPTOM",
37
+ }
38
+
39
+ export interface Trait {
40
+ Name?: AttributeName | string;
41
+
42
+ Score?: number;
43
+ }
44
+ export declare enum EntitySubType {
45
+ ACUITY = "ACUITY",
46
+ ADDRESS = "ADDRESS",
47
+ AGE = "AGE",
48
+ BRAND_NAME = "BRAND_NAME",
49
+ CONTACT_POINT = "CONTACT_POINT",
50
+ DATE = "DATE",
51
+ DIRECTION = "DIRECTION",
52
+ DOSAGE = "DOSAGE",
53
+ DURATION = "DURATION",
54
+ DX_NAME = "DX_NAME",
55
+ EMAIL = "EMAIL",
56
+ FORM = "FORM",
57
+ FREQUENCY = "FREQUENCY",
58
+ GENERIC_NAME = "GENERIC_NAME",
59
+ ID = "ID",
60
+ IDENTIFIER = "IDENTIFIER",
61
+ NAME = "NAME",
62
+ PHONE_OR_FAX = "PHONE_OR_FAX",
63
+ PROCEDURE_NAME = "PROCEDURE_NAME",
64
+ PROFESSION = "PROFESSION",
65
+ QUALITY = "QUALITY",
66
+ QUANTITY = "QUANTITY",
67
+ RATE = "RATE",
68
+ ROUTE_OR_MODE = "ROUTE_OR_MODE",
69
+ STRENGTH = "STRENGTH",
70
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
71
+ TEST_NAME = "TEST_NAME",
72
+ TEST_UNIT = "TEST_UNIT",
73
+ TEST_UNITS = "TEST_UNITS",
74
+ TEST_VALUE = "TEST_VALUE",
75
+ TIME_EXPRESSION = "TIME_EXPRESSION",
76
+ TIME_TO_DX_NAME = "TIME_TO_DX_NAME",
77
+ TIME_TO_MEDICATION_NAME = "TIME_TO_MEDICATION_NAME",
78
+ TIME_TO_PROCEDURE_NAME = "TIME_TO_PROCEDURE_NAME",
79
+ TIME_TO_TEST_NAME = "TIME_TO_TEST_NAME",
80
+ TIME_TO_TREATMENT_NAME = "TIME_TO_TREATMENT_NAME",
81
+ TREATMENT_NAME = "TREATMENT_NAME",
82
+ URL = "URL",
83
+ }
84
+
85
+ export interface Attribute {
86
+ Type?: EntitySubType | string;
87
+
88
+ Score?: number;
89
+
90
+ RelationshipScore?: number;
91
+
92
+ RelationshipType?: RelationshipType | string;
93
+
94
+ Id?: number;
95
+
96
+ BeginOffset?: number;
97
+
98
+ EndOffset?: number;
99
+
100
+ Text?: string;
101
+
102
+ Category?: EntityType | string;
103
+
104
+ Traits?: Trait[];
105
+ }
106
+
107
+ export interface Characters {
108
+ OriginalTextCharacters?: number;
109
+ }
110
+ export interface DescribeEntitiesDetectionV2JobRequest {
111
+ JobId: string | undefined;
112
+ }
113
+
114
+ export interface InputDataConfig {
115
+ S3Bucket: string | undefined;
116
+
117
+ S3Key?: string;
118
+ }
119
+ export declare enum JobStatus {
120
+ COMPLETED = "COMPLETED",
121
+ FAILED = "FAILED",
122
+ IN_PROGRESS = "IN_PROGRESS",
123
+ PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
124
+ STOPPED = "STOPPED",
125
+ STOP_REQUESTED = "STOP_REQUESTED",
126
+ SUBMITTED = "SUBMITTED",
127
+ }
128
+ export declare enum LanguageCode {
129
+ EN = "en",
130
+ }
131
+
132
+ export interface OutputDataConfig {
133
+ S3Bucket: string | undefined;
134
+
135
+ S3Key?: string;
136
+ }
137
+
138
+ export interface ComprehendMedicalAsyncJobProperties {
139
+ JobId?: string;
140
+
141
+ JobName?: string;
142
+
143
+ JobStatus?: JobStatus | string;
144
+
145
+ Message?: string;
146
+
147
+ SubmitTime?: Date;
148
+
149
+ EndTime?: Date;
150
+
151
+ ExpirationTime?: Date;
152
+
153
+ InputDataConfig?: InputDataConfig;
154
+
155
+ OutputDataConfig?: OutputDataConfig;
156
+
157
+ LanguageCode?: LanguageCode | string;
158
+
159
+ DataAccessRoleArn?: string;
160
+
161
+ ManifestFilePath?: string;
162
+
163
+ KMSKey?: string;
164
+
165
+ ModelVersion?: string;
166
+ }
167
+ export interface DescribeEntitiesDetectionV2JobResponse {
168
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
169
+ }
170
+
171
+ export declare class InternalServerException extends __BaseException {
172
+ readonly name: "InternalServerException";
173
+ readonly $fault: "server";
174
+ Message?: string;
175
+
176
+ constructor(
177
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
178
+ );
179
+ }
180
+
181
+ export declare class InvalidRequestException extends __BaseException {
182
+ readonly name: "InvalidRequestException";
183
+ readonly $fault: "client";
184
+ Message?: string;
185
+
186
+ constructor(
187
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
188
+ );
189
+ }
190
+
191
+ export declare class ResourceNotFoundException extends __BaseException {
192
+ readonly name: "ResourceNotFoundException";
193
+ readonly $fault: "client";
194
+ Message?: string;
195
+
196
+ constructor(
197
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
198
+ );
199
+ }
200
+
201
+ export declare class TooManyRequestsException extends __BaseException {
202
+ readonly name: "TooManyRequestsException";
203
+ readonly $fault: "client";
204
+ Message?: string;
205
+
206
+ constructor(
207
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
208
+ );
209
+ }
210
+ export interface DescribeICD10CMInferenceJobRequest {
211
+ JobId: string | undefined;
212
+ }
213
+ export interface DescribeICD10CMInferenceJobResponse {
214
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
215
+ }
216
+ export interface DescribePHIDetectionJobRequest {
217
+ JobId: string | undefined;
218
+ }
219
+ export interface DescribePHIDetectionJobResponse {
220
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
221
+ }
222
+ export interface DescribeRxNormInferenceJobRequest {
223
+ JobId: string | undefined;
224
+ }
225
+ export interface DescribeRxNormInferenceJobResponse {
226
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
227
+ }
228
+ export interface DescribeSNOMEDCTInferenceJobRequest {
229
+ JobId: string | undefined;
230
+ }
231
+ export interface DescribeSNOMEDCTInferenceJobResponse {
232
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
233
+ }
234
+ export interface DetectEntitiesRequest {
235
+ Text: string | undefined;
236
+ }
237
+
238
+ export interface Entity {
239
+ Id?: number;
240
+
241
+ BeginOffset?: number;
242
+
243
+ EndOffset?: number;
244
+
245
+ Score?: number;
246
+
247
+ Text?: string;
248
+
249
+ Category?: EntityType | string;
250
+
251
+ Type?: EntitySubType | string;
252
+
253
+ Traits?: Trait[];
254
+
255
+ Attributes?: Attribute[];
256
+ }
257
+
258
+ export interface UnmappedAttribute {
259
+ Type?: EntityType | string;
260
+
261
+ Attribute?: Attribute;
262
+ }
263
+ export interface DetectEntitiesResponse {
264
+ Entities: Entity[] | undefined;
265
+
266
+ UnmappedAttributes?: UnmappedAttribute[];
267
+
268
+ PaginationToken?: string;
269
+
270
+ ModelVersion: string | undefined;
271
+ }
272
+
273
+ export declare class InvalidEncodingException extends __BaseException {
274
+ readonly name: "InvalidEncodingException";
275
+ readonly $fault: "client";
276
+ Message?: string;
277
+
278
+ constructor(
279
+ opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>
280
+ );
281
+ }
282
+
283
+ export declare class ServiceUnavailableException extends __BaseException {
284
+ readonly name: "ServiceUnavailableException";
285
+ readonly $fault: "server";
286
+ Message?: string;
287
+
288
+ constructor(
289
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
290
+ );
291
+ }
292
+
293
+ export declare class TextSizeLimitExceededException extends __BaseException {
294
+ readonly name: "TextSizeLimitExceededException";
295
+ readonly $fault: "client";
296
+ Message?: string;
297
+
298
+ constructor(
299
+ opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
300
+ );
301
+ }
302
+ export interface DetectEntitiesV2Request {
303
+ Text: string | undefined;
304
+ }
305
+ export interface DetectEntitiesV2Response {
306
+ Entities: Entity[] | undefined;
307
+
308
+ UnmappedAttributes?: UnmappedAttribute[];
309
+
310
+ PaginationToken?: string;
311
+
312
+ ModelVersion: string | undefined;
313
+ }
314
+ export interface DetectPHIRequest {
315
+ Text: string | undefined;
316
+ }
317
+ export interface DetectPHIResponse {
318
+ Entities: Entity[] | undefined;
319
+
320
+ PaginationToken?: string;
321
+
322
+ ModelVersion: string | undefined;
323
+ }
324
+ export interface InferICD10CMRequest {
325
+ Text: string | undefined;
326
+ }
327
+ export declare enum ICD10CMEntityType {
328
+ DX_NAME = "DX_NAME",
329
+ TIME_EXPRESSION = "TIME_EXPRESSION",
330
+ }
331
+ export declare enum ICD10CMRelationshipType {
332
+ OVERLAP = "OVERLAP",
333
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
334
+ }
335
+ export declare enum ICD10CMTraitName {
336
+ DIAGNOSIS = "DIAGNOSIS",
337
+ NEGATION = "NEGATION",
338
+ SIGN = "SIGN",
339
+ SYMPTOM = "SYMPTOM",
340
+ }
341
+
342
+ export interface ICD10CMTrait {
343
+ Name?: ICD10CMTraitName | string;
344
+
345
+ Score?: number;
346
+ }
347
+ export declare enum ICD10CMAttributeType {
348
+ ACUITY = "ACUITY",
349
+ DIRECTION = "DIRECTION",
350
+ QUALITY = "QUALITY",
351
+ QUANTITY = "QUANTITY",
352
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
353
+ TIME_EXPRESSION = "TIME_EXPRESSION",
354
+ TIME_TO_DX_NAME = "TIME_TO_DX_NAME",
355
+ }
356
+
357
+ export interface ICD10CMAttribute {
358
+ Type?: ICD10CMAttributeType | string;
359
+
360
+ Score?: number;
361
+
362
+ RelationshipScore?: number;
363
+
364
+ Id?: number;
365
+
366
+ BeginOffset?: number;
367
+
368
+ EndOffset?: number;
369
+
370
+ Text?: string;
371
+
372
+ Traits?: ICD10CMTrait[];
373
+
374
+ Category?: ICD10CMEntityType | string;
375
+
376
+ RelationshipType?: ICD10CMRelationshipType | string;
377
+ }
378
+ export declare enum ICD10CMEntityCategory {
379
+ MEDICAL_CONDITION = "MEDICAL_CONDITION",
380
+ }
381
+
382
+ export interface ICD10CMConcept {
383
+ Description?: string;
384
+
385
+ Code?: string;
386
+
387
+ Score?: number;
388
+ }
389
+
390
+ export interface ICD10CMEntity {
391
+ Id?: number;
392
+
393
+ Text?: string;
394
+
395
+ Category?: ICD10CMEntityCategory | string;
396
+
397
+ Type?: ICD10CMEntityType | string;
398
+
399
+ Score?: number;
400
+
401
+ BeginOffset?: number;
402
+
403
+ EndOffset?: number;
404
+
405
+ Attributes?: ICD10CMAttribute[];
406
+
407
+ Traits?: ICD10CMTrait[];
408
+
409
+ ICD10CMConcepts?: ICD10CMConcept[];
410
+ }
411
+ export interface InferICD10CMResponse {
412
+ Entities: ICD10CMEntity[] | undefined;
413
+
414
+ PaginationToken?: string;
415
+
416
+ ModelVersion?: string;
417
+ }
418
+ export interface InferRxNormRequest {
419
+ Text: string | undefined;
420
+ }
421
+ export declare enum RxNormTraitName {
422
+ NEGATION = "NEGATION",
423
+ }
424
+
425
+ export interface RxNormTrait {
426
+ Name?: RxNormTraitName | string;
427
+
428
+ Score?: number;
429
+ }
430
+ export declare enum RxNormAttributeType {
431
+ DOSAGE = "DOSAGE",
432
+ DURATION = "DURATION",
433
+ FORM = "FORM",
434
+ FREQUENCY = "FREQUENCY",
435
+ RATE = "RATE",
436
+ ROUTE_OR_MODE = "ROUTE_OR_MODE",
437
+ STRENGTH = "STRENGTH",
438
+ }
439
+
440
+ export interface RxNormAttribute {
441
+ Type?: RxNormAttributeType | string;
442
+
443
+ Score?: number;
444
+
445
+ RelationshipScore?: number;
446
+
447
+ Id?: number;
448
+
449
+ BeginOffset?: number;
450
+
451
+ EndOffset?: number;
452
+
453
+ Text?: string;
454
+
455
+ Traits?: RxNormTrait[];
456
+ }
457
+ export declare enum RxNormEntityCategory {
458
+ MEDICATION = "MEDICATION",
459
+ }
460
+
461
+ export interface RxNormConcept {
462
+ Description?: string;
463
+
464
+ Code?: string;
465
+
466
+ Score?: number;
467
+ }
468
+ export declare enum RxNormEntityType {
469
+ BRAND_NAME = "BRAND_NAME",
470
+ GENERIC_NAME = "GENERIC_NAME",
471
+ }
472
+
473
+ export interface RxNormEntity {
474
+ Id?: number;
475
+
476
+ Text?: string;
477
+
478
+ Category?: RxNormEntityCategory | string;
479
+
480
+ Type?: RxNormEntityType | string;
481
+
482
+ Score?: number;
483
+
484
+ BeginOffset?: number;
485
+
486
+ EndOffset?: number;
487
+
488
+ Attributes?: RxNormAttribute[];
489
+
490
+ Traits?: RxNormTrait[];
491
+
492
+ RxNormConcepts?: RxNormConcept[];
493
+ }
494
+ export interface InferRxNormResponse {
495
+ Entities: RxNormEntity[] | undefined;
496
+
497
+ PaginationToken?: string;
498
+
499
+ ModelVersion?: string;
500
+ }
501
+ export interface InferSNOMEDCTRequest {
502
+ Text: string | undefined;
503
+ }
504
+ export declare enum SNOMEDCTEntityCategory {
505
+ ANATOMY = "ANATOMY",
506
+ MEDICAL_CONDITION = "MEDICAL_CONDITION",
507
+ TEST_TREATMENT_PROCEDURE = "TEST_TREATMENT_PROCEDURE",
508
+ }
509
+ export declare enum SNOMEDCTRelationshipType {
510
+ ACUITY = "ACUITY",
511
+ DIRECTION = "DIRECTION",
512
+ QUALITY = "QUALITY",
513
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
514
+ TEST_UNITS = "TEST_UNITS",
515
+ TEST_VALUE = "TEST_VALUE",
516
+ }
517
+
518
+ export interface SNOMEDCTConcept {
519
+ Description?: string;
520
+
521
+ Code?: string;
522
+
523
+ Score?: number;
524
+ }
525
+ export declare enum SNOMEDCTTraitName {
526
+ DIAGNOSIS = "DIAGNOSIS",
527
+ NEGATION = "NEGATION",
528
+ SIGN = "SIGN",
529
+ SYMPTOM = "SYMPTOM",
530
+ }
531
+
532
+ export interface SNOMEDCTTrait {
533
+ Name?: SNOMEDCTTraitName | string;
534
+
535
+ Score?: number;
536
+ }
537
+ export declare enum SNOMEDCTAttributeType {
538
+ ACUITY = "ACUITY",
539
+ DIRECTION = "DIRECTION",
540
+ QUALITY = "QUALITY",
541
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
542
+ TEST_UNIT = "TEST_UNIT",
543
+ TEST_VALUE = "TEST_VALUE",
544
+ }
545
+
546
+ export interface SNOMEDCTAttribute {
547
+ Category?: SNOMEDCTEntityCategory | string;
548
+
549
+ Type?: SNOMEDCTAttributeType | string;
550
+
551
+ Score?: number;
552
+
553
+ RelationshipScore?: number;
554
+
555
+ RelationshipType?: SNOMEDCTRelationshipType | string;
556
+
557
+ Id?: number;
558
+
559
+ BeginOffset?: number;
560
+
561
+ EndOffset?: number;
562
+
563
+ Text?: string;
564
+
565
+ Traits?: SNOMEDCTTrait[];
566
+
567
+ SNOMEDCTConcepts?: SNOMEDCTConcept[];
568
+ }
569
+ export declare enum SNOMEDCTEntityType {
570
+ DX_NAME = "DX_NAME",
571
+ PROCEDURE_NAME = "PROCEDURE_NAME",
572
+ TEST_NAME = "TEST_NAME",
573
+ TREATMENT_NAME = "TREATMENT_NAME",
574
+ }
575
+
576
+ export interface SNOMEDCTEntity {
577
+ Id?: number;
578
+
579
+ Text?: string;
580
+
581
+ Category?: SNOMEDCTEntityCategory | string;
582
+
583
+ Type?: SNOMEDCTEntityType | string;
584
+
585
+ Score?: number;
586
+
587
+ BeginOffset?: number;
588
+
589
+ EndOffset?: number;
590
+
591
+ Attributes?: SNOMEDCTAttribute[];
592
+
593
+ Traits?: SNOMEDCTTrait[];
594
+
595
+ SNOMEDCTConcepts?: SNOMEDCTConcept[];
596
+ }
597
+
598
+ export interface SNOMEDCTDetails {
599
+ Edition?: string;
600
+
601
+ Language?: string;
602
+
603
+ VersionDate?: string;
604
+ }
605
+ export interface InferSNOMEDCTResponse {
606
+ Entities: SNOMEDCTEntity[] | undefined;
607
+
608
+ PaginationToken?: string;
609
+
610
+ ModelVersion?: string;
611
+
612
+ SNOMEDCTDetails?: SNOMEDCTDetails;
613
+
614
+ Characters?: Characters;
615
+ }
616
+
617
+ export interface ComprehendMedicalAsyncJobFilter {
618
+ JobName?: string;
619
+
620
+ JobStatus?: JobStatus | string;
621
+
622
+ SubmitTimeBefore?: Date;
623
+
624
+ SubmitTimeAfter?: Date;
625
+ }
626
+ export interface ListEntitiesDetectionV2JobsRequest {
627
+ Filter?: ComprehendMedicalAsyncJobFilter;
628
+
629
+ NextToken?: string;
630
+
631
+ MaxResults?: number;
632
+ }
633
+ export interface ListEntitiesDetectionV2JobsResponse {
634
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
635
+
636
+ NextToken?: string;
637
+ }
638
+
639
+ export declare class ValidationException extends __BaseException {
640
+ readonly name: "ValidationException";
641
+ readonly $fault: "client";
642
+ Message?: string;
643
+
644
+ constructor(
645
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
646
+ );
647
+ }
648
+ export interface ListICD10CMInferenceJobsRequest {
649
+ Filter?: ComprehendMedicalAsyncJobFilter;
650
+
651
+ NextToken?: string;
652
+
653
+ MaxResults?: number;
654
+ }
655
+ export interface ListICD10CMInferenceJobsResponse {
656
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
657
+
658
+ NextToken?: string;
659
+ }
660
+ export interface ListPHIDetectionJobsRequest {
661
+ Filter?: ComprehendMedicalAsyncJobFilter;
662
+
663
+ NextToken?: string;
664
+
665
+ MaxResults?: number;
666
+ }
667
+ export interface ListPHIDetectionJobsResponse {
668
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
669
+
670
+ NextToken?: string;
671
+ }
672
+ export interface ListRxNormInferenceJobsRequest {
673
+ Filter?: ComprehendMedicalAsyncJobFilter;
674
+
675
+ NextToken?: string;
676
+
677
+ MaxResults?: number;
678
+ }
679
+ export interface ListRxNormInferenceJobsResponse {
680
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
681
+
682
+ NextToken?: string;
683
+ }
684
+ export interface ListSNOMEDCTInferenceJobsRequest {
685
+ Filter?: ComprehendMedicalAsyncJobFilter;
686
+
687
+ NextToken?: string;
688
+
689
+ MaxResults?: number;
690
+ }
691
+ export interface ListSNOMEDCTInferenceJobsResponse {
692
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
693
+
694
+ NextToken?: string;
695
+ }
696
+ export interface StartEntitiesDetectionV2JobRequest {
697
+ InputDataConfig: InputDataConfig | undefined;
698
+
699
+ OutputDataConfig: OutputDataConfig | undefined;
700
+
701
+ DataAccessRoleArn: string | undefined;
702
+
703
+ JobName?: string;
704
+
705
+ ClientRequestToken?: string;
706
+
707
+ KMSKey?: string;
708
+
709
+ LanguageCode: LanguageCode | string | undefined;
710
+ }
711
+ export interface StartEntitiesDetectionV2JobResponse {
712
+ JobId?: string;
713
+ }
714
+ export interface StartICD10CMInferenceJobRequest {
715
+ InputDataConfig: InputDataConfig | undefined;
716
+
717
+ OutputDataConfig: OutputDataConfig | undefined;
718
+
719
+ DataAccessRoleArn: string | undefined;
720
+
721
+ JobName?: string;
722
+
723
+ ClientRequestToken?: string;
724
+
725
+ KMSKey?: string;
726
+
727
+ LanguageCode: LanguageCode | string | undefined;
728
+ }
729
+ export interface StartICD10CMInferenceJobResponse {
730
+ JobId?: string;
731
+ }
732
+ export interface StartPHIDetectionJobRequest {
733
+ InputDataConfig: InputDataConfig | undefined;
734
+
735
+ OutputDataConfig: OutputDataConfig | undefined;
736
+
737
+ DataAccessRoleArn: string | undefined;
738
+
739
+ JobName?: string;
740
+
741
+ ClientRequestToken?: string;
742
+
743
+ KMSKey?: string;
744
+
745
+ LanguageCode: LanguageCode | string | undefined;
746
+ }
747
+ export interface StartPHIDetectionJobResponse {
748
+ JobId?: string;
749
+ }
750
+ export interface StartRxNormInferenceJobRequest {
751
+ InputDataConfig: InputDataConfig | undefined;
752
+
753
+ OutputDataConfig: OutputDataConfig | undefined;
754
+
755
+ DataAccessRoleArn: string | undefined;
756
+
757
+ JobName?: string;
758
+
759
+ ClientRequestToken?: string;
760
+
761
+ KMSKey?: string;
762
+
763
+ LanguageCode: LanguageCode | string | undefined;
764
+ }
765
+ export interface StartRxNormInferenceJobResponse {
766
+ JobId?: string;
767
+ }
768
+ export interface StartSNOMEDCTInferenceJobRequest {
769
+ InputDataConfig: InputDataConfig | undefined;
770
+
771
+ OutputDataConfig: OutputDataConfig | undefined;
772
+
773
+ DataAccessRoleArn: string | undefined;
774
+
775
+ JobName?: string;
776
+
777
+ ClientRequestToken?: string;
778
+
779
+ KMSKey?: string;
780
+
781
+ LanguageCode: LanguageCode | string | undefined;
782
+ }
783
+ export interface StartSNOMEDCTInferenceJobResponse {
784
+ JobId?: string;
785
+ }
786
+ export interface StopEntitiesDetectionV2JobRequest {
787
+ JobId: string | undefined;
788
+ }
789
+ export interface StopEntitiesDetectionV2JobResponse {
790
+ JobId?: string;
791
+ }
792
+ export interface StopICD10CMInferenceJobRequest {
793
+ JobId: string | undefined;
794
+ }
795
+ export interface StopICD10CMInferenceJobResponse {
796
+ JobId?: string;
797
+ }
798
+ export interface StopPHIDetectionJobRequest {
799
+ JobId: string | undefined;
800
+ }
801
+ export interface StopPHIDetectionJobResponse {
802
+ JobId?: string;
803
+ }
804
+ export interface StopRxNormInferenceJobRequest {
805
+ JobId: string | undefined;
806
+ }
807
+ export interface StopRxNormInferenceJobResponse {
808
+ JobId?: string;
809
+ }
810
+ export interface StopSNOMEDCTInferenceJobRequest {
811
+ JobId: string | undefined;
812
+ }
813
+ export interface StopSNOMEDCTInferenceJobResponse {
814
+ JobId?: string;
815
+ }
816
+
817
+ export declare const TraitFilterSensitiveLog: (obj: Trait) => any;
818
+
819
+ export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
820
+
821
+ export declare const CharactersFilterSensitiveLog: (obj: Characters) => any;
822
+
823
+ export declare const DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog: (
824
+ obj: DescribeEntitiesDetectionV2JobRequest
825
+ ) => any;
826
+
827
+ export declare const InputDataConfigFilterSensitiveLog: (
828
+ obj: InputDataConfig
829
+ ) => any;
830
+
831
+ export declare const OutputDataConfigFilterSensitiveLog: (
832
+ obj: OutputDataConfig
833
+ ) => any;
834
+
835
+ export declare const ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog: (
836
+ obj: ComprehendMedicalAsyncJobProperties
837
+ ) => any;
838
+
839
+ export declare const DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog: (
840
+ obj: DescribeEntitiesDetectionV2JobResponse
841
+ ) => any;
842
+
843
+ export declare const DescribeICD10CMInferenceJobRequestFilterSensitiveLog: (
844
+ obj: DescribeICD10CMInferenceJobRequest
845
+ ) => any;
846
+
847
+ export declare const DescribeICD10CMInferenceJobResponseFilterSensitiveLog: (
848
+ obj: DescribeICD10CMInferenceJobResponse
849
+ ) => any;
850
+
851
+ export declare const DescribePHIDetectionJobRequestFilterSensitiveLog: (
852
+ obj: DescribePHIDetectionJobRequest
853
+ ) => any;
854
+
855
+ export declare const DescribePHIDetectionJobResponseFilterSensitiveLog: (
856
+ obj: DescribePHIDetectionJobResponse
857
+ ) => any;
858
+
859
+ export declare const DescribeRxNormInferenceJobRequestFilterSensitiveLog: (
860
+ obj: DescribeRxNormInferenceJobRequest
861
+ ) => any;
862
+
863
+ export declare const DescribeRxNormInferenceJobResponseFilterSensitiveLog: (
864
+ obj: DescribeRxNormInferenceJobResponse
865
+ ) => any;
866
+
867
+ export declare const DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
868
+ obj: DescribeSNOMEDCTInferenceJobRequest
869
+ ) => any;
870
+
871
+ export declare const DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
872
+ obj: DescribeSNOMEDCTInferenceJobResponse
873
+ ) => any;
874
+
875
+ export declare const DetectEntitiesRequestFilterSensitiveLog: (
876
+ obj: DetectEntitiesRequest
877
+ ) => any;
878
+
879
+ export declare const EntityFilterSensitiveLog: (obj: Entity) => any;
880
+
881
+ export declare const UnmappedAttributeFilterSensitiveLog: (
882
+ obj: UnmappedAttribute
883
+ ) => any;
884
+
885
+ export declare const DetectEntitiesResponseFilterSensitiveLog: (
886
+ obj: DetectEntitiesResponse
887
+ ) => any;
888
+
889
+ export declare const DetectEntitiesV2RequestFilterSensitiveLog: (
890
+ obj: DetectEntitiesV2Request
891
+ ) => any;
892
+
893
+ export declare const DetectEntitiesV2ResponseFilterSensitiveLog: (
894
+ obj: DetectEntitiesV2Response
895
+ ) => any;
896
+
897
+ export declare const DetectPHIRequestFilterSensitiveLog: (
898
+ obj: DetectPHIRequest
899
+ ) => any;
900
+
901
+ export declare const DetectPHIResponseFilterSensitiveLog: (
902
+ obj: DetectPHIResponse
903
+ ) => any;
904
+
905
+ export declare const InferICD10CMRequestFilterSensitiveLog: (
906
+ obj: InferICD10CMRequest
907
+ ) => any;
908
+
909
+ export declare const ICD10CMTraitFilterSensitiveLog: (obj: ICD10CMTrait) => any;
910
+
911
+ export declare const ICD10CMAttributeFilterSensitiveLog: (
912
+ obj: ICD10CMAttribute
913
+ ) => any;
914
+
915
+ export declare const ICD10CMConceptFilterSensitiveLog: (
916
+ obj: ICD10CMConcept
917
+ ) => any;
918
+
919
+ export declare const ICD10CMEntityFilterSensitiveLog: (
920
+ obj: ICD10CMEntity
921
+ ) => any;
922
+
923
+ export declare const InferICD10CMResponseFilterSensitiveLog: (
924
+ obj: InferICD10CMResponse
925
+ ) => any;
926
+
927
+ export declare const InferRxNormRequestFilterSensitiveLog: (
928
+ obj: InferRxNormRequest
929
+ ) => any;
930
+
931
+ export declare const RxNormTraitFilterSensitiveLog: (obj: RxNormTrait) => any;
932
+
933
+ export declare const RxNormAttributeFilterSensitiveLog: (
934
+ obj: RxNormAttribute
935
+ ) => any;
936
+
937
+ export declare const RxNormConceptFilterSensitiveLog: (
938
+ obj: RxNormConcept
939
+ ) => any;
940
+
941
+ export declare const RxNormEntityFilterSensitiveLog: (obj: RxNormEntity) => any;
942
+
943
+ export declare const InferRxNormResponseFilterSensitiveLog: (
944
+ obj: InferRxNormResponse
945
+ ) => any;
946
+
947
+ export declare const InferSNOMEDCTRequestFilterSensitiveLog: (
948
+ obj: InferSNOMEDCTRequest
949
+ ) => any;
950
+
951
+ export declare const SNOMEDCTConceptFilterSensitiveLog: (
952
+ obj: SNOMEDCTConcept
953
+ ) => any;
954
+
955
+ export declare const SNOMEDCTTraitFilterSensitiveLog: (
956
+ obj: SNOMEDCTTrait
957
+ ) => any;
958
+
959
+ export declare const SNOMEDCTAttributeFilterSensitiveLog: (
960
+ obj: SNOMEDCTAttribute
961
+ ) => any;
962
+
963
+ export declare const SNOMEDCTEntityFilterSensitiveLog: (
964
+ obj: SNOMEDCTEntity
965
+ ) => any;
966
+
967
+ export declare const SNOMEDCTDetailsFilterSensitiveLog: (
968
+ obj: SNOMEDCTDetails
969
+ ) => any;
970
+
971
+ export declare const InferSNOMEDCTResponseFilterSensitiveLog: (
972
+ obj: InferSNOMEDCTResponse
973
+ ) => any;
974
+
975
+ export declare const ComprehendMedicalAsyncJobFilterFilterSensitiveLog: (
976
+ obj: ComprehendMedicalAsyncJobFilter
977
+ ) => any;
978
+
979
+ export declare const ListEntitiesDetectionV2JobsRequestFilterSensitiveLog: (
980
+ obj: ListEntitiesDetectionV2JobsRequest
981
+ ) => any;
982
+
983
+ export declare const ListEntitiesDetectionV2JobsResponseFilterSensitiveLog: (
984
+ obj: ListEntitiesDetectionV2JobsResponse
985
+ ) => any;
986
+
987
+ export declare const ListICD10CMInferenceJobsRequestFilterSensitiveLog: (
988
+ obj: ListICD10CMInferenceJobsRequest
989
+ ) => any;
990
+
991
+ export declare const ListICD10CMInferenceJobsResponseFilterSensitiveLog: (
992
+ obj: ListICD10CMInferenceJobsResponse
993
+ ) => any;
994
+
995
+ export declare const ListPHIDetectionJobsRequestFilterSensitiveLog: (
996
+ obj: ListPHIDetectionJobsRequest
997
+ ) => any;
998
+
999
+ export declare const ListPHIDetectionJobsResponseFilterSensitiveLog: (
1000
+ obj: ListPHIDetectionJobsResponse
1001
+ ) => any;
1002
+
1003
+ export declare const ListRxNormInferenceJobsRequestFilterSensitiveLog: (
1004
+ obj: ListRxNormInferenceJobsRequest
1005
+ ) => any;
1006
+
1007
+ export declare const ListRxNormInferenceJobsResponseFilterSensitiveLog: (
1008
+ obj: ListRxNormInferenceJobsResponse
1009
+ ) => any;
1010
+
1011
+ export declare const ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog: (
1012
+ obj: ListSNOMEDCTInferenceJobsRequest
1013
+ ) => any;
1014
+
1015
+ export declare const ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog: (
1016
+ obj: ListSNOMEDCTInferenceJobsResponse
1017
+ ) => any;
1018
+
1019
+ export declare const StartEntitiesDetectionV2JobRequestFilterSensitiveLog: (
1020
+ obj: StartEntitiesDetectionV2JobRequest
1021
+ ) => any;
1022
+
1023
+ export declare const StartEntitiesDetectionV2JobResponseFilterSensitiveLog: (
1024
+ obj: StartEntitiesDetectionV2JobResponse
1025
+ ) => any;
1026
+
1027
+ export declare const StartICD10CMInferenceJobRequestFilterSensitiveLog: (
1028
+ obj: StartICD10CMInferenceJobRequest
1029
+ ) => any;
1030
+
1031
+ export declare const StartICD10CMInferenceJobResponseFilterSensitiveLog: (
1032
+ obj: StartICD10CMInferenceJobResponse
1033
+ ) => any;
1034
+
1035
+ export declare const StartPHIDetectionJobRequestFilterSensitiveLog: (
1036
+ obj: StartPHIDetectionJobRequest
1037
+ ) => any;
1038
+
1039
+ export declare const StartPHIDetectionJobResponseFilterSensitiveLog: (
1040
+ obj: StartPHIDetectionJobResponse
1041
+ ) => any;
1042
+
1043
+ export declare const StartRxNormInferenceJobRequestFilterSensitiveLog: (
1044
+ obj: StartRxNormInferenceJobRequest
1045
+ ) => any;
1046
+
1047
+ export declare const StartRxNormInferenceJobResponseFilterSensitiveLog: (
1048
+ obj: StartRxNormInferenceJobResponse
1049
+ ) => any;
1050
+
1051
+ export declare const StartSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
1052
+ obj: StartSNOMEDCTInferenceJobRequest
1053
+ ) => any;
1054
+
1055
+ export declare const StartSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
1056
+ obj: StartSNOMEDCTInferenceJobResponse
1057
+ ) => any;
1058
+
1059
+ export declare const StopEntitiesDetectionV2JobRequestFilterSensitiveLog: (
1060
+ obj: StopEntitiesDetectionV2JobRequest
1061
+ ) => any;
1062
+
1063
+ export declare const StopEntitiesDetectionV2JobResponseFilterSensitiveLog: (
1064
+ obj: StopEntitiesDetectionV2JobResponse
1065
+ ) => any;
1066
+
1067
+ export declare const StopICD10CMInferenceJobRequestFilterSensitiveLog: (
1068
+ obj: StopICD10CMInferenceJobRequest
1069
+ ) => any;
1070
+
1071
+ export declare const StopICD10CMInferenceJobResponseFilterSensitiveLog: (
1072
+ obj: StopICD10CMInferenceJobResponse
1073
+ ) => any;
1074
+
1075
+ export declare const StopPHIDetectionJobRequestFilterSensitiveLog: (
1076
+ obj: StopPHIDetectionJobRequest
1077
+ ) => any;
1078
+
1079
+ export declare const StopPHIDetectionJobResponseFilterSensitiveLog: (
1080
+ obj: StopPHIDetectionJobResponse
1081
+ ) => any;
1082
+
1083
+ export declare const StopRxNormInferenceJobRequestFilterSensitiveLog: (
1084
+ obj: StopRxNormInferenceJobRequest
1085
+ ) => any;
1086
+
1087
+ export declare const StopRxNormInferenceJobResponseFilterSensitiveLog: (
1088
+ obj: StopRxNormInferenceJobResponse
1089
+ ) => any;
1090
+
1091
+ export declare const StopSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
1092
+ obj: StopSNOMEDCTInferenceJobRequest
1093
+ ) => any;
1094
+
1095
+ export declare const StopSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
1096
+ obj: StopSNOMEDCTInferenceJobResponse
1097
+ ) => any;