@aws-sdk/client-comprehendmedical 3.169.0 → 3.171.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 +446 -135
  3. package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +261 -99
  4. package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +36 -17
  28. package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +39 -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 +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +823 -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 +67 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  41. package/package.json +34 -34
@@ -1,1021 +1,823 @@
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
+ export interface Trait {
39
+ Name?: AttributeName | string;
40
+ Score?: number;
41
+ }
42
+ export declare enum EntitySubType {
43
+ ACUITY = "ACUITY",
44
+ ADDRESS = "ADDRESS",
45
+ AGE = "AGE",
46
+ BRAND_NAME = "BRAND_NAME",
47
+ CONTACT_POINT = "CONTACT_POINT",
48
+ DATE = "DATE",
49
+ DIRECTION = "DIRECTION",
50
+ DOSAGE = "DOSAGE",
51
+ DURATION = "DURATION",
52
+ DX_NAME = "DX_NAME",
53
+ EMAIL = "EMAIL",
54
+ FORM = "FORM",
55
+ FREQUENCY = "FREQUENCY",
56
+ GENERIC_NAME = "GENERIC_NAME",
57
+ ID = "ID",
58
+ IDENTIFIER = "IDENTIFIER",
59
+ NAME = "NAME",
60
+ PHONE_OR_FAX = "PHONE_OR_FAX",
61
+ PROCEDURE_NAME = "PROCEDURE_NAME",
62
+ PROFESSION = "PROFESSION",
63
+ QUALITY = "QUALITY",
64
+ QUANTITY = "QUANTITY",
65
+ RATE = "RATE",
66
+ ROUTE_OR_MODE = "ROUTE_OR_MODE",
67
+ STRENGTH = "STRENGTH",
68
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
69
+ TEST_NAME = "TEST_NAME",
70
+ TEST_UNIT = "TEST_UNIT",
71
+ TEST_UNITS = "TEST_UNITS",
72
+ TEST_VALUE = "TEST_VALUE",
73
+ TIME_EXPRESSION = "TIME_EXPRESSION",
74
+ TIME_TO_DX_NAME = "TIME_TO_DX_NAME",
75
+ TIME_TO_MEDICATION_NAME = "TIME_TO_MEDICATION_NAME",
76
+ TIME_TO_PROCEDURE_NAME = "TIME_TO_PROCEDURE_NAME",
77
+ TIME_TO_TEST_NAME = "TIME_TO_TEST_NAME",
78
+ TIME_TO_TREATMENT_NAME = "TIME_TO_TREATMENT_NAME",
79
+ TREATMENT_NAME = "TREATMENT_NAME",
80
+ URL = "URL",
81
+ }
82
+ export interface Attribute {
83
+ Type?: EntitySubType | string;
84
+ Score?: number;
85
+ RelationshipScore?: number;
86
+ RelationshipType?: RelationshipType | string;
87
+ Id?: number;
88
+ BeginOffset?: number;
89
+ EndOffset?: number;
90
+ Text?: string;
91
+ Category?: EntityType | string;
92
+ Traits?: Trait[];
93
+ }
94
+ export interface Characters {
95
+ OriginalTextCharacters?: number;
96
+ }
97
+ export interface DescribeEntitiesDetectionV2JobRequest {
98
+ JobId: string | undefined;
99
+ }
100
+ export interface InputDataConfig {
101
+ S3Bucket: string | undefined;
102
+ S3Key?: string;
103
+ }
104
+ export declare enum JobStatus {
105
+ COMPLETED = "COMPLETED",
106
+ FAILED = "FAILED",
107
+ IN_PROGRESS = "IN_PROGRESS",
108
+ PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
109
+ STOPPED = "STOPPED",
110
+ STOP_REQUESTED = "STOP_REQUESTED",
111
+ SUBMITTED = "SUBMITTED",
112
+ }
113
+ export declare enum LanguageCode {
114
+ EN = "en",
115
+ }
116
+ export interface OutputDataConfig {
117
+ S3Bucket: string | undefined;
118
+ S3Key?: string;
119
+ }
120
+ export interface ComprehendMedicalAsyncJobProperties {
121
+ JobId?: string;
122
+ JobName?: string;
123
+ JobStatus?: JobStatus | string;
124
+ Message?: string;
125
+ SubmitTime?: Date;
126
+ EndTime?: Date;
127
+ ExpirationTime?: Date;
128
+ InputDataConfig?: InputDataConfig;
129
+ OutputDataConfig?: OutputDataConfig;
130
+ LanguageCode?: LanguageCode | string;
131
+ DataAccessRoleArn?: string;
132
+ ManifestFilePath?: string;
133
+ KMSKey?: string;
134
+ ModelVersion?: string;
135
+ }
136
+ export interface DescribeEntitiesDetectionV2JobResponse {
137
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
138
+ }
139
+ export declare class InternalServerException extends __BaseException {
140
+ readonly name: "InternalServerException";
141
+ readonly $fault: "server";
142
+ Message?: string;
143
+ constructor(
144
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
145
+ );
146
+ }
147
+ export declare class InvalidRequestException extends __BaseException {
148
+ readonly name: "InvalidRequestException";
149
+ readonly $fault: "client";
150
+ Message?: string;
151
+ constructor(
152
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
153
+ );
154
+ }
155
+ export declare class ResourceNotFoundException extends __BaseException {
156
+ readonly name: "ResourceNotFoundException";
157
+ readonly $fault: "client";
158
+ Message?: string;
159
+ constructor(
160
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
161
+ );
162
+ }
163
+ export declare class TooManyRequestsException extends __BaseException {
164
+ readonly name: "TooManyRequestsException";
165
+ readonly $fault: "client";
166
+ Message?: string;
167
+ constructor(
168
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
169
+ );
170
+ }
171
+ export interface DescribeICD10CMInferenceJobRequest {
172
+ JobId: string | undefined;
173
+ }
174
+ export interface DescribeICD10CMInferenceJobResponse {
175
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
176
+ }
177
+ export interface DescribePHIDetectionJobRequest {
178
+ JobId: string | undefined;
179
+ }
180
+ export interface DescribePHIDetectionJobResponse {
181
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
182
+ }
183
+ export interface DescribeRxNormInferenceJobRequest {
184
+ JobId: string | undefined;
185
+ }
186
+ export interface DescribeRxNormInferenceJobResponse {
187
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
188
+ }
189
+ export interface DescribeSNOMEDCTInferenceJobRequest {
190
+ JobId: string | undefined;
191
+ }
192
+ export interface DescribeSNOMEDCTInferenceJobResponse {
193
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
194
+ }
195
+ export interface DetectEntitiesRequest {
196
+ Text: string | undefined;
197
+ }
198
+ export interface Entity {
199
+ Id?: number;
200
+ BeginOffset?: number;
201
+ EndOffset?: number;
202
+ Score?: number;
203
+ Text?: string;
204
+ Category?: EntityType | string;
205
+ Type?: EntitySubType | string;
206
+ Traits?: Trait[];
207
+ Attributes?: Attribute[];
208
+ }
209
+ export interface UnmappedAttribute {
210
+ Type?: EntityType | string;
211
+ Attribute?: Attribute;
212
+ }
213
+ export interface DetectEntitiesResponse {
214
+ Entities: Entity[] | undefined;
215
+ UnmappedAttributes?: UnmappedAttribute[];
216
+ PaginationToken?: string;
217
+ ModelVersion: string | undefined;
218
+ }
219
+ export declare class InvalidEncodingException extends __BaseException {
220
+ readonly name: "InvalidEncodingException";
221
+ readonly $fault: "client";
222
+ Message?: string;
223
+ constructor(
224
+ opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>
225
+ );
226
+ }
227
+ export declare class ServiceUnavailableException extends __BaseException {
228
+ readonly name: "ServiceUnavailableException";
229
+ readonly $fault: "server";
230
+ Message?: string;
231
+ constructor(
232
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
233
+ );
234
+ }
235
+ export declare class TextSizeLimitExceededException extends __BaseException {
236
+ readonly name: "TextSizeLimitExceededException";
237
+ readonly $fault: "client";
238
+ Message?: string;
239
+ constructor(
240
+ opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
241
+ );
242
+ }
243
+ export interface DetectEntitiesV2Request {
244
+ Text: string | undefined;
245
+ }
246
+ export interface DetectEntitiesV2Response {
247
+ Entities: Entity[] | undefined;
248
+ UnmappedAttributes?: UnmappedAttribute[];
249
+ PaginationToken?: string;
250
+ ModelVersion: string | undefined;
251
+ }
252
+ export interface DetectPHIRequest {
253
+ Text: string | undefined;
254
+ }
255
+ export interface DetectPHIResponse {
256
+ Entities: Entity[] | undefined;
257
+ PaginationToken?: string;
258
+ ModelVersion: string | undefined;
259
+ }
260
+ export interface InferICD10CMRequest {
261
+ Text: string | undefined;
262
+ }
263
+ export declare enum ICD10CMEntityType {
264
+ DX_NAME = "DX_NAME",
265
+ TIME_EXPRESSION = "TIME_EXPRESSION",
266
+ }
267
+ export declare enum ICD10CMRelationshipType {
268
+ OVERLAP = "OVERLAP",
269
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
270
+ }
271
+ export declare enum ICD10CMTraitName {
272
+ DIAGNOSIS = "DIAGNOSIS",
273
+ NEGATION = "NEGATION",
274
+ SIGN = "SIGN",
275
+ SYMPTOM = "SYMPTOM",
276
+ }
277
+ export interface ICD10CMTrait {
278
+ Name?: ICD10CMTraitName | string;
279
+ Score?: number;
280
+ }
281
+ export declare enum ICD10CMAttributeType {
282
+ ACUITY = "ACUITY",
283
+ DIRECTION = "DIRECTION",
284
+ QUALITY = "QUALITY",
285
+ QUANTITY = "QUANTITY",
286
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
287
+ TIME_EXPRESSION = "TIME_EXPRESSION",
288
+ TIME_TO_DX_NAME = "TIME_TO_DX_NAME",
289
+ }
290
+ export interface ICD10CMAttribute {
291
+ Type?: ICD10CMAttributeType | string;
292
+ Score?: number;
293
+ RelationshipScore?: number;
294
+ Id?: number;
295
+ BeginOffset?: number;
296
+ EndOffset?: number;
297
+ Text?: string;
298
+ Traits?: ICD10CMTrait[];
299
+ Category?: ICD10CMEntityType | string;
300
+ RelationshipType?: ICD10CMRelationshipType | string;
301
+ }
302
+ export declare enum ICD10CMEntityCategory {
303
+ MEDICAL_CONDITION = "MEDICAL_CONDITION",
304
+ }
305
+ export interface ICD10CMConcept {
306
+ Description?: string;
307
+ Code?: string;
308
+ Score?: number;
309
+ }
310
+ export interface ICD10CMEntity {
311
+ Id?: number;
312
+ Text?: string;
313
+ Category?: ICD10CMEntityCategory | string;
314
+ Type?: ICD10CMEntityType | string;
315
+ Score?: number;
316
+ BeginOffset?: number;
317
+ EndOffset?: number;
318
+ Attributes?: ICD10CMAttribute[];
319
+ Traits?: ICD10CMTrait[];
320
+ ICD10CMConcepts?: ICD10CMConcept[];
321
+ }
322
+ export interface InferICD10CMResponse {
323
+ Entities: ICD10CMEntity[] | undefined;
324
+ PaginationToken?: string;
325
+ ModelVersion?: string;
326
+ }
327
+ export interface InferRxNormRequest {
328
+ Text: string | undefined;
329
+ }
330
+ export declare enum RxNormTraitName {
331
+ NEGATION = "NEGATION",
332
+ }
333
+ export interface RxNormTrait {
334
+ Name?: RxNormTraitName | string;
335
+ Score?: number;
336
+ }
337
+ export declare enum RxNormAttributeType {
338
+ DOSAGE = "DOSAGE",
339
+ DURATION = "DURATION",
340
+ FORM = "FORM",
341
+ FREQUENCY = "FREQUENCY",
342
+ RATE = "RATE",
343
+ ROUTE_OR_MODE = "ROUTE_OR_MODE",
344
+ STRENGTH = "STRENGTH",
345
+ }
346
+ export interface RxNormAttribute {
347
+ Type?: RxNormAttributeType | string;
348
+ Score?: number;
349
+ RelationshipScore?: number;
350
+ Id?: number;
351
+ BeginOffset?: number;
352
+ EndOffset?: number;
353
+ Text?: string;
354
+ Traits?: RxNormTrait[];
355
+ }
356
+ export declare enum RxNormEntityCategory {
357
+ MEDICATION = "MEDICATION",
358
+ }
359
+ export interface RxNormConcept {
360
+ Description?: string;
361
+ Code?: string;
362
+ Score?: number;
363
+ }
364
+ export declare enum RxNormEntityType {
365
+ BRAND_NAME = "BRAND_NAME",
366
+ GENERIC_NAME = "GENERIC_NAME",
367
+ }
368
+ export interface RxNormEntity {
369
+ Id?: number;
370
+ Text?: string;
371
+ Category?: RxNormEntityCategory | string;
372
+ Type?: RxNormEntityType | string;
373
+ Score?: number;
374
+ BeginOffset?: number;
375
+ EndOffset?: number;
376
+ Attributes?: RxNormAttribute[];
377
+ Traits?: RxNormTrait[];
378
+ RxNormConcepts?: RxNormConcept[];
379
+ }
380
+ export interface InferRxNormResponse {
381
+ Entities: RxNormEntity[] | undefined;
382
+ PaginationToken?: string;
383
+ ModelVersion?: string;
384
+ }
385
+ export interface InferSNOMEDCTRequest {
386
+ Text: string | undefined;
387
+ }
388
+ export declare enum SNOMEDCTEntityCategory {
389
+ ANATOMY = "ANATOMY",
390
+ MEDICAL_CONDITION = "MEDICAL_CONDITION",
391
+ TEST_TREATMENT_PROCEDURE = "TEST_TREATMENT_PROCEDURE",
392
+ }
393
+ export declare enum SNOMEDCTRelationshipType {
394
+ ACUITY = "ACUITY",
395
+ DIRECTION = "DIRECTION",
396
+ QUALITY = "QUALITY",
397
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
398
+ TEST_UNITS = "TEST_UNITS",
399
+ TEST_VALUE = "TEST_VALUE",
400
+ }
401
+ export interface SNOMEDCTConcept {
402
+ Description?: string;
403
+ Code?: string;
404
+ Score?: number;
405
+ }
406
+ export declare enum SNOMEDCTTraitName {
407
+ DIAGNOSIS = "DIAGNOSIS",
408
+ NEGATION = "NEGATION",
409
+ SIGN = "SIGN",
410
+ SYMPTOM = "SYMPTOM",
411
+ }
412
+ export interface SNOMEDCTTrait {
413
+ Name?: SNOMEDCTTraitName | string;
414
+ Score?: number;
415
+ }
416
+ export declare enum SNOMEDCTAttributeType {
417
+ ACUITY = "ACUITY",
418
+ DIRECTION = "DIRECTION",
419
+ QUALITY = "QUALITY",
420
+ SYSTEM_ORGAN_SITE = "SYSTEM_ORGAN_SITE",
421
+ TEST_UNIT = "TEST_UNIT",
422
+ TEST_VALUE = "TEST_VALUE",
423
+ }
424
+ export interface SNOMEDCTAttribute {
425
+ Category?: SNOMEDCTEntityCategory | string;
426
+ Type?: SNOMEDCTAttributeType | string;
427
+ Score?: number;
428
+ RelationshipScore?: number;
429
+ RelationshipType?: SNOMEDCTRelationshipType | string;
430
+ Id?: number;
431
+ BeginOffset?: number;
432
+ EndOffset?: number;
433
+ Text?: string;
434
+ Traits?: SNOMEDCTTrait[];
435
+ SNOMEDCTConcepts?: SNOMEDCTConcept[];
436
+ }
437
+ export declare enum SNOMEDCTEntityType {
438
+ DX_NAME = "DX_NAME",
439
+ PROCEDURE_NAME = "PROCEDURE_NAME",
440
+ TEST_NAME = "TEST_NAME",
441
+ TREATMENT_NAME = "TREATMENT_NAME",
442
+ }
443
+ export interface SNOMEDCTEntity {
444
+ Id?: number;
445
+ Text?: string;
446
+ Category?: SNOMEDCTEntityCategory | string;
447
+ Type?: SNOMEDCTEntityType | string;
448
+ Score?: number;
449
+ BeginOffset?: number;
450
+ EndOffset?: number;
451
+ Attributes?: SNOMEDCTAttribute[];
452
+ Traits?: SNOMEDCTTrait[];
453
+ SNOMEDCTConcepts?: SNOMEDCTConcept[];
454
+ }
455
+ export interface SNOMEDCTDetails {
456
+ Edition?: string;
457
+ Language?: string;
458
+ VersionDate?: string;
459
+ }
460
+ export interface InferSNOMEDCTResponse {
461
+ Entities: SNOMEDCTEntity[] | undefined;
462
+ PaginationToken?: string;
463
+ ModelVersion?: string;
464
+ SNOMEDCTDetails?: SNOMEDCTDetails;
465
+ Characters?: Characters;
466
+ }
467
+ export interface ComprehendMedicalAsyncJobFilter {
468
+ JobName?: string;
469
+ JobStatus?: JobStatus | string;
470
+ SubmitTimeBefore?: Date;
471
+ SubmitTimeAfter?: Date;
472
+ }
473
+ export interface ListEntitiesDetectionV2JobsRequest {
474
+ Filter?: ComprehendMedicalAsyncJobFilter;
475
+ NextToken?: string;
476
+ MaxResults?: number;
477
+ }
478
+ export interface ListEntitiesDetectionV2JobsResponse {
479
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
480
+ NextToken?: string;
481
+ }
482
+ export declare class ValidationException extends __BaseException {
483
+ readonly name: "ValidationException";
484
+ readonly $fault: "client";
485
+ Message?: string;
486
+ constructor(
487
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
488
+ );
489
+ }
490
+ export interface ListICD10CMInferenceJobsRequest {
491
+ Filter?: ComprehendMedicalAsyncJobFilter;
492
+ NextToken?: string;
493
+ MaxResults?: number;
494
+ }
495
+ export interface ListICD10CMInferenceJobsResponse {
496
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
497
+ NextToken?: string;
498
+ }
499
+ export interface ListPHIDetectionJobsRequest {
500
+ Filter?: ComprehendMedicalAsyncJobFilter;
501
+ NextToken?: string;
502
+ MaxResults?: number;
503
+ }
504
+ export interface ListPHIDetectionJobsResponse {
505
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
506
+ NextToken?: string;
507
+ }
508
+ export interface ListRxNormInferenceJobsRequest {
509
+ Filter?: ComprehendMedicalAsyncJobFilter;
510
+ NextToken?: string;
511
+ MaxResults?: number;
512
+ }
513
+ export interface ListRxNormInferenceJobsResponse {
514
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
515
+ NextToken?: string;
516
+ }
517
+ export interface ListSNOMEDCTInferenceJobsRequest {
518
+ Filter?: ComprehendMedicalAsyncJobFilter;
519
+ NextToken?: string;
520
+ MaxResults?: number;
521
+ }
522
+ export interface ListSNOMEDCTInferenceJobsResponse {
523
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[];
524
+ NextToken?: string;
525
+ }
526
+ export interface StartEntitiesDetectionV2JobRequest {
527
+ InputDataConfig: InputDataConfig | undefined;
528
+ OutputDataConfig: OutputDataConfig | undefined;
529
+ DataAccessRoleArn: string | undefined;
530
+ JobName?: string;
531
+ ClientRequestToken?: string;
532
+ KMSKey?: string;
533
+ LanguageCode: LanguageCode | string | undefined;
534
+ }
535
+ export interface StartEntitiesDetectionV2JobResponse {
536
+ JobId?: string;
537
+ }
538
+ export interface StartICD10CMInferenceJobRequest {
539
+ InputDataConfig: InputDataConfig | undefined;
540
+ OutputDataConfig: OutputDataConfig | undefined;
541
+ DataAccessRoleArn: string | undefined;
542
+ JobName?: string;
543
+ ClientRequestToken?: string;
544
+ KMSKey?: string;
545
+ LanguageCode: LanguageCode | string | undefined;
546
+ }
547
+ export interface StartICD10CMInferenceJobResponse {
548
+ JobId?: string;
549
+ }
550
+ export interface StartPHIDetectionJobRequest {
551
+ InputDataConfig: InputDataConfig | undefined;
552
+ OutputDataConfig: OutputDataConfig | undefined;
553
+ DataAccessRoleArn: string | undefined;
554
+ JobName?: string;
555
+ ClientRequestToken?: string;
556
+ KMSKey?: string;
557
+ LanguageCode: LanguageCode | string | undefined;
558
+ }
559
+ export interface StartPHIDetectionJobResponse {
560
+ JobId?: string;
561
+ }
562
+ export interface StartRxNormInferenceJobRequest {
563
+ InputDataConfig: InputDataConfig | undefined;
564
+ OutputDataConfig: OutputDataConfig | undefined;
565
+ DataAccessRoleArn: string | undefined;
566
+ JobName?: string;
567
+ ClientRequestToken?: string;
568
+ KMSKey?: string;
569
+ LanguageCode: LanguageCode | string | undefined;
570
+ }
571
+ export interface StartRxNormInferenceJobResponse {
572
+ JobId?: string;
573
+ }
574
+ export interface StartSNOMEDCTInferenceJobRequest {
575
+ InputDataConfig: InputDataConfig | undefined;
576
+ OutputDataConfig: OutputDataConfig | undefined;
577
+ DataAccessRoleArn: string | undefined;
578
+ JobName?: string;
579
+ ClientRequestToken?: string;
580
+ KMSKey?: string;
581
+ LanguageCode: LanguageCode | string | undefined;
582
+ }
583
+ export interface StartSNOMEDCTInferenceJobResponse {
584
+ JobId?: string;
585
+ }
586
+ export interface StopEntitiesDetectionV2JobRequest {
587
+ JobId: string | undefined;
588
+ }
589
+ export interface StopEntitiesDetectionV2JobResponse {
590
+ JobId?: string;
591
+ }
592
+ export interface StopICD10CMInferenceJobRequest {
593
+ JobId: string | undefined;
594
+ }
595
+ export interface StopICD10CMInferenceJobResponse {
596
+ JobId?: string;
597
+ }
598
+ export interface StopPHIDetectionJobRequest {
599
+ JobId: string | undefined;
600
+ }
601
+ export interface StopPHIDetectionJobResponse {
602
+ JobId?: string;
603
+ }
604
+ export interface StopRxNormInferenceJobRequest {
605
+ JobId: string | undefined;
606
+ }
607
+ export interface StopRxNormInferenceJobResponse {
608
+ JobId?: string;
609
+ }
610
+ export interface StopSNOMEDCTInferenceJobRequest {
611
+ JobId: string | undefined;
612
+ }
613
+ export interface StopSNOMEDCTInferenceJobResponse {
614
+ JobId?: string;
615
+ }
616
+ export declare const TraitFilterSensitiveLog: (obj: Trait) => any;
617
+ export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
618
+ export declare const CharactersFilterSensitiveLog: (obj: Characters) => any;
619
+ export declare const DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog: (
620
+ obj: DescribeEntitiesDetectionV2JobRequest
621
+ ) => any;
622
+ export declare const InputDataConfigFilterSensitiveLog: (
623
+ obj: InputDataConfig
624
+ ) => any;
625
+ export declare const OutputDataConfigFilterSensitiveLog: (
626
+ obj: OutputDataConfig
627
+ ) => any;
628
+ export declare const ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog: (
629
+ obj: ComprehendMedicalAsyncJobProperties
630
+ ) => any;
631
+ export declare const DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog: (
632
+ obj: DescribeEntitiesDetectionV2JobResponse
633
+ ) => any;
634
+ export declare const DescribeICD10CMInferenceJobRequestFilterSensitiveLog: (
635
+ obj: DescribeICD10CMInferenceJobRequest
636
+ ) => any;
637
+ export declare const DescribeICD10CMInferenceJobResponseFilterSensitiveLog: (
638
+ obj: DescribeICD10CMInferenceJobResponse
639
+ ) => any;
640
+ export declare const DescribePHIDetectionJobRequestFilterSensitiveLog: (
641
+ obj: DescribePHIDetectionJobRequest
642
+ ) => any;
643
+ export declare const DescribePHIDetectionJobResponseFilterSensitiveLog: (
644
+ obj: DescribePHIDetectionJobResponse
645
+ ) => any;
646
+ export declare const DescribeRxNormInferenceJobRequestFilterSensitiveLog: (
647
+ obj: DescribeRxNormInferenceJobRequest
648
+ ) => any;
649
+ export declare const DescribeRxNormInferenceJobResponseFilterSensitiveLog: (
650
+ obj: DescribeRxNormInferenceJobResponse
651
+ ) => any;
652
+ export declare const DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
653
+ obj: DescribeSNOMEDCTInferenceJobRequest
654
+ ) => any;
655
+ export declare const DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
656
+ obj: DescribeSNOMEDCTInferenceJobResponse
657
+ ) => any;
658
+ export declare const DetectEntitiesRequestFilterSensitiveLog: (
659
+ obj: DetectEntitiesRequest
660
+ ) => any;
661
+ export declare const EntityFilterSensitiveLog: (obj: Entity) => any;
662
+ export declare const UnmappedAttributeFilterSensitiveLog: (
663
+ obj: UnmappedAttribute
664
+ ) => any;
665
+ export declare const DetectEntitiesResponseFilterSensitiveLog: (
666
+ obj: DetectEntitiesResponse
667
+ ) => any;
668
+ export declare const DetectEntitiesV2RequestFilterSensitiveLog: (
669
+ obj: DetectEntitiesV2Request
670
+ ) => any;
671
+ export declare const DetectEntitiesV2ResponseFilterSensitiveLog: (
672
+ obj: DetectEntitiesV2Response
673
+ ) => any;
674
+ export declare const DetectPHIRequestFilterSensitiveLog: (
675
+ obj: DetectPHIRequest
676
+ ) => any;
677
+ export declare const DetectPHIResponseFilterSensitiveLog: (
678
+ obj: DetectPHIResponse
679
+ ) => any;
680
+ export declare const InferICD10CMRequestFilterSensitiveLog: (
681
+ obj: InferICD10CMRequest
682
+ ) => any;
683
+ export declare const ICD10CMTraitFilterSensitiveLog: (obj: ICD10CMTrait) => any;
684
+ export declare const ICD10CMAttributeFilterSensitiveLog: (
685
+ obj: ICD10CMAttribute
686
+ ) => any;
687
+ export declare const ICD10CMConceptFilterSensitiveLog: (
688
+ obj: ICD10CMConcept
689
+ ) => any;
690
+ export declare const ICD10CMEntityFilterSensitiveLog: (
691
+ obj: ICD10CMEntity
692
+ ) => any;
693
+ export declare const InferICD10CMResponseFilterSensitiveLog: (
694
+ obj: InferICD10CMResponse
695
+ ) => any;
696
+ export declare const InferRxNormRequestFilterSensitiveLog: (
697
+ obj: InferRxNormRequest
698
+ ) => any;
699
+ export declare const RxNormTraitFilterSensitiveLog: (obj: RxNormTrait) => any;
700
+ export declare const RxNormAttributeFilterSensitiveLog: (
701
+ obj: RxNormAttribute
702
+ ) => any;
703
+ export declare const RxNormConceptFilterSensitiveLog: (
704
+ obj: RxNormConcept
705
+ ) => any;
706
+ export declare const RxNormEntityFilterSensitiveLog: (obj: RxNormEntity) => any;
707
+ export declare const InferRxNormResponseFilterSensitiveLog: (
708
+ obj: InferRxNormResponse
709
+ ) => any;
710
+ export declare const InferSNOMEDCTRequestFilterSensitiveLog: (
711
+ obj: InferSNOMEDCTRequest
712
+ ) => any;
713
+ export declare const SNOMEDCTConceptFilterSensitiveLog: (
714
+ obj: SNOMEDCTConcept
715
+ ) => any;
716
+ export declare const SNOMEDCTTraitFilterSensitiveLog: (
717
+ obj: SNOMEDCTTrait
718
+ ) => any;
719
+ export declare const SNOMEDCTAttributeFilterSensitiveLog: (
720
+ obj: SNOMEDCTAttribute
721
+ ) => any;
722
+ export declare const SNOMEDCTEntityFilterSensitiveLog: (
723
+ obj: SNOMEDCTEntity
724
+ ) => any;
725
+ export declare const SNOMEDCTDetailsFilterSensitiveLog: (
726
+ obj: SNOMEDCTDetails
727
+ ) => any;
728
+ export declare const InferSNOMEDCTResponseFilterSensitiveLog: (
729
+ obj: InferSNOMEDCTResponse
730
+ ) => any;
731
+ export declare const ComprehendMedicalAsyncJobFilterFilterSensitiveLog: (
732
+ obj: ComprehendMedicalAsyncJobFilter
733
+ ) => any;
734
+ export declare const ListEntitiesDetectionV2JobsRequestFilterSensitiveLog: (
735
+ obj: ListEntitiesDetectionV2JobsRequest
736
+ ) => any;
737
+ export declare const ListEntitiesDetectionV2JobsResponseFilterSensitiveLog: (
738
+ obj: ListEntitiesDetectionV2JobsResponse
739
+ ) => any;
740
+ export declare const ListICD10CMInferenceJobsRequestFilterSensitiveLog: (
741
+ obj: ListICD10CMInferenceJobsRequest
742
+ ) => any;
743
+ export declare const ListICD10CMInferenceJobsResponseFilterSensitiveLog: (
744
+ obj: ListICD10CMInferenceJobsResponse
745
+ ) => any;
746
+ export declare const ListPHIDetectionJobsRequestFilterSensitiveLog: (
747
+ obj: ListPHIDetectionJobsRequest
748
+ ) => any;
749
+ export declare const ListPHIDetectionJobsResponseFilterSensitiveLog: (
750
+ obj: ListPHIDetectionJobsResponse
751
+ ) => any;
752
+ export declare const ListRxNormInferenceJobsRequestFilterSensitiveLog: (
753
+ obj: ListRxNormInferenceJobsRequest
754
+ ) => any;
755
+ export declare const ListRxNormInferenceJobsResponseFilterSensitiveLog: (
756
+ obj: ListRxNormInferenceJobsResponse
757
+ ) => any;
758
+ export declare const ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog: (
759
+ obj: ListSNOMEDCTInferenceJobsRequest
760
+ ) => any;
761
+ export declare const ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog: (
762
+ obj: ListSNOMEDCTInferenceJobsResponse
763
+ ) => any;
764
+ export declare const StartEntitiesDetectionV2JobRequestFilterSensitiveLog: (
765
+ obj: StartEntitiesDetectionV2JobRequest
766
+ ) => any;
767
+ export declare const StartEntitiesDetectionV2JobResponseFilterSensitiveLog: (
768
+ obj: StartEntitiesDetectionV2JobResponse
769
+ ) => any;
770
+ export declare const StartICD10CMInferenceJobRequestFilterSensitiveLog: (
771
+ obj: StartICD10CMInferenceJobRequest
772
+ ) => any;
773
+ export declare const StartICD10CMInferenceJobResponseFilterSensitiveLog: (
774
+ obj: StartICD10CMInferenceJobResponse
775
+ ) => any;
776
+ export declare const StartPHIDetectionJobRequestFilterSensitiveLog: (
777
+ obj: StartPHIDetectionJobRequest
778
+ ) => any;
779
+ export declare const StartPHIDetectionJobResponseFilterSensitiveLog: (
780
+ obj: StartPHIDetectionJobResponse
781
+ ) => any;
782
+ export declare const StartRxNormInferenceJobRequestFilterSensitiveLog: (
783
+ obj: StartRxNormInferenceJobRequest
784
+ ) => any;
785
+ export declare const StartRxNormInferenceJobResponseFilterSensitiveLog: (
786
+ obj: StartRxNormInferenceJobResponse
787
+ ) => any;
788
+ export declare const StartSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
789
+ obj: StartSNOMEDCTInferenceJobRequest
790
+ ) => any;
791
+ export declare const StartSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
792
+ obj: StartSNOMEDCTInferenceJobResponse
793
+ ) => any;
794
+ export declare const StopEntitiesDetectionV2JobRequestFilterSensitiveLog: (
795
+ obj: StopEntitiesDetectionV2JobRequest
796
+ ) => any;
797
+ export declare const StopEntitiesDetectionV2JobResponseFilterSensitiveLog: (
798
+ obj: StopEntitiesDetectionV2JobResponse
799
+ ) => any;
800
+ export declare const StopICD10CMInferenceJobRequestFilterSensitiveLog: (
801
+ obj: StopICD10CMInferenceJobRequest
802
+ ) => any;
803
+ export declare const StopICD10CMInferenceJobResponseFilterSensitiveLog: (
804
+ obj: StopICD10CMInferenceJobResponse
805
+ ) => any;
806
+ export declare const StopPHIDetectionJobRequestFilterSensitiveLog: (
807
+ obj: StopPHIDetectionJobRequest
808
+ ) => any;
809
+ export declare const StopPHIDetectionJobResponseFilterSensitiveLog: (
810
+ obj: StopPHIDetectionJobResponse
811
+ ) => any;
812
+ export declare const StopRxNormInferenceJobRequestFilterSensitiveLog: (
813
+ obj: StopRxNormInferenceJobRequest
814
+ ) => any;
815
+ export declare const StopRxNormInferenceJobResponseFilterSensitiveLog: (
816
+ obj: StopRxNormInferenceJobResponse
817
+ ) => any;
818
+ export declare const StopSNOMEDCTInferenceJobRequestFilterSensitiveLog: (
819
+ obj: StopSNOMEDCTInferenceJobRequest
820
+ ) => any;
821
+ export declare const StopSNOMEDCTInferenceJobResponseFilterSensitiveLog: (
822
+ obj: StopSNOMEDCTInferenceJobResponse
823
+ ) => any;