@aws-sdk/client-comprehendmedical 3.131.0 → 3.142.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 (61) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/DescribeEntitiesDetectionV2JobCommand.js +2 -2
  4. package/dist-cjs/commands/DescribeICD10CMInferenceJobCommand.js +2 -2
  5. package/dist-cjs/commands/DescribePHIDetectionJobCommand.js +2 -2
  6. package/dist-cjs/commands/DescribeRxNormInferenceJobCommand.js +2 -2
  7. package/dist-cjs/commands/DescribeSNOMEDCTInferenceJobCommand.js +2 -2
  8. package/dist-cjs/commands/DetectEntitiesCommand.js +2 -2
  9. package/dist-cjs/commands/DetectEntitiesV2Command.js +2 -2
  10. package/dist-cjs/commands/DetectPHICommand.js +2 -2
  11. package/dist-cjs/commands/InferICD10CMCommand.js +2 -2
  12. package/dist-cjs/commands/InferRxNormCommand.js +2 -2
  13. package/dist-cjs/commands/InferSNOMEDCTCommand.js +2 -2
  14. package/dist-cjs/commands/ListEntitiesDetectionV2JobsCommand.js +2 -2
  15. package/dist-cjs/commands/ListICD10CMInferenceJobsCommand.js +2 -2
  16. package/dist-cjs/commands/ListPHIDetectionJobsCommand.js +2 -2
  17. package/dist-cjs/commands/ListRxNormInferenceJobsCommand.js +2 -2
  18. package/dist-cjs/commands/ListSNOMEDCTInferenceJobsCommand.js +2 -2
  19. package/dist-cjs/commands/StartEntitiesDetectionV2JobCommand.js +2 -2
  20. package/dist-cjs/commands/StartICD10CMInferenceJobCommand.js +2 -2
  21. package/dist-cjs/commands/StartPHIDetectionJobCommand.js +2 -2
  22. package/dist-cjs/commands/StartRxNormInferenceJobCommand.js +2 -2
  23. package/dist-cjs/commands/StartSNOMEDCTInferenceJobCommand.js +2 -2
  24. package/dist-cjs/commands/StopEntitiesDetectionV2JobCommand.js +2 -2
  25. package/dist-cjs/commands/StopICD10CMInferenceJobCommand.js +2 -2
  26. package/dist-cjs/commands/StopPHIDetectionJobCommand.js +2 -2
  27. package/dist-cjs/commands/StopRxNormInferenceJobCommand.js +2 -2
  28. package/dist-cjs/commands/StopSNOMEDCTInferenceJobCommand.js +2 -2
  29. package/dist-cjs/models/models_0.js +299 -447
  30. package/dist-cjs/protocols/Aws_json1_1.js +130 -208
  31. package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +3 -3
  32. package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +3 -3
  33. package/dist-es/commands/DescribePHIDetectionJobCommand.js +3 -3
  34. package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +3 -3
  35. package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +3 -3
  36. package/dist-es/commands/DetectEntitiesCommand.js +3 -3
  37. package/dist-es/commands/DetectEntitiesV2Command.js +3 -3
  38. package/dist-es/commands/DetectPHICommand.js +3 -3
  39. package/dist-es/commands/InferICD10CMCommand.js +3 -3
  40. package/dist-es/commands/InferRxNormCommand.js +3 -3
  41. package/dist-es/commands/InferSNOMEDCTCommand.js +3 -3
  42. package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +3 -3
  43. package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +3 -3
  44. package/dist-es/commands/ListPHIDetectionJobsCommand.js +3 -3
  45. package/dist-es/commands/ListRxNormInferenceJobsCommand.js +3 -3
  46. package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +3 -3
  47. package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +3 -3
  48. package/dist-es/commands/StartICD10CMInferenceJobCommand.js +3 -3
  49. package/dist-es/commands/StartPHIDetectionJobCommand.js +3 -3
  50. package/dist-es/commands/StartRxNormInferenceJobCommand.js +3 -3
  51. package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +3 -3
  52. package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +3 -3
  53. package/dist-es/commands/StopICD10CMInferenceJobCommand.js +3 -3
  54. package/dist-es/commands/StopPHIDetectionJobCommand.js +3 -3
  55. package/dist-es/commands/StopRxNormInferenceJobCommand.js +3 -3
  56. package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +3 -3
  57. package/dist-es/models/models_0.js +74 -296
  58. package/dist-es/protocols/Aws_json1_1.js +209 -209
  59. package/dist-types/models/models_0.d.ts +296 -444
  60. package/dist-types/ts3.4/models/models_0.d.ts +148 -296
  61. package/package.json +6 -6
@@ -48,12 +48,6 @@ export interface Trait {
48
48
  */
49
49
  Score?: number;
50
50
  }
51
- export declare namespace Trait {
52
- /**
53
- * @internal
54
- */
55
- const filterSensitiveLog: (obj: Trait) => any;
56
- }
57
51
  export declare enum EntitySubType {
58
52
  ACUITY = "ACUITY",
59
53
  ADDRESS = "ADDRESS",
@@ -149,12 +143,6 @@ export interface Attribute {
149
143
  */
150
144
  Traits?: Trait[];
151
145
  }
152
- export declare namespace Attribute {
153
- /**
154
- * @internal
155
- */
156
- const filterSensitiveLog: (obj: Attribute) => any;
157
- }
158
146
  /**
159
147
  * <p>
160
148
  * The number of characters in the input text to be analyzed.
@@ -168,12 +156,6 @@ export interface Characters {
168
156
  */
169
157
  OriginalTextCharacters?: number;
170
158
  }
171
- export declare namespace Characters {
172
- /**
173
- * @internal
174
- */
175
- const filterSensitiveLog: (obj: Characters) => any;
176
- }
177
159
  export interface DescribeEntitiesDetectionV2JobRequest {
178
160
  /**
179
161
  * <p>The identifier that Comprehend Medical; generated for the job. The
@@ -182,12 +164,6 @@ export interface DescribeEntitiesDetectionV2JobRequest {
182
164
  */
183
165
  JobId: string | undefined;
184
166
  }
185
- export declare namespace DescribeEntitiesDetectionV2JobRequest {
186
- /**
187
- * @internal
188
- */
189
- const filterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobRequest) => any;
190
- }
191
167
  /**
192
168
  * <p>The input properties for an entities detection job. This includes the name of the S3
193
169
  * bucket and the path to the files to be analyzed. </p>
@@ -205,12 +181,6 @@ export interface InputDataConfig {
205
181
  */
206
182
  S3Key?: string;
207
183
  }
208
- export declare namespace InputDataConfig {
209
- /**
210
- * @internal
211
- */
212
- const filterSensitiveLog: (obj: InputDataConfig) => any;
213
- }
214
184
  export declare enum JobStatus {
215
185
  COMPLETED = "COMPLETED",
216
186
  FAILED = "FAILED",
@@ -241,12 +211,6 @@ export interface OutputDataConfig {
241
211
  */
242
212
  S3Key?: string;
243
213
  }
244
- export declare namespace OutputDataConfig {
245
- /**
246
- * @internal
247
- */
248
- const filterSensitiveLog: (obj: OutputDataConfig) => any;
249
- }
250
214
  /**
251
215
  * <p>Provides information about a detection job.</p>
252
216
  */
@@ -314,24 +278,12 @@ export interface ComprehendMedicalAsyncJobProperties {
314
278
  */
315
279
  ModelVersion?: string;
316
280
  }
317
- export declare namespace ComprehendMedicalAsyncJobProperties {
318
- /**
319
- * @internal
320
- */
321
- const filterSensitiveLog: (obj: ComprehendMedicalAsyncJobProperties) => any;
322
- }
323
281
  export interface DescribeEntitiesDetectionV2JobResponse {
324
282
  /**
325
283
  * <p>An object that contains the properties associated with a detection job.</p>
326
284
  */
327
285
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
328
286
  }
329
- export declare namespace DescribeEntitiesDetectionV2JobResponse {
330
- /**
331
- * @internal
332
- */
333
- const filterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobResponse) => any;
334
- }
335
287
  /**
336
288
  * <p> An internal server error occurred. Retry your request. </p>
337
289
  */
@@ -391,24 +343,12 @@ export interface DescribeICD10CMInferenceJobRequest {
391
343
  */
392
344
  JobId: string | undefined;
393
345
  }
394
- export declare namespace DescribeICD10CMInferenceJobRequest {
395
- /**
396
- * @internal
397
- */
398
- const filterSensitiveLog: (obj: DescribeICD10CMInferenceJobRequest) => any;
399
- }
400
346
  export interface DescribeICD10CMInferenceJobResponse {
401
347
  /**
402
348
  * <p>An object that contains the properties associated with a detection job.</p>
403
349
  */
404
350
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
405
351
  }
406
- export declare namespace DescribeICD10CMInferenceJobResponse {
407
- /**
408
- * @internal
409
- */
410
- const filterSensitiveLog: (obj: DescribeICD10CMInferenceJobResponse) => any;
411
- }
412
352
  export interface DescribePHIDetectionJobRequest {
413
353
  /**
414
354
  * <p>The identifier that Comprehend Medical; generated for the job. The <code>StartPHIDetectionJob</code>
@@ -416,24 +356,12 @@ export interface DescribePHIDetectionJobRequest {
416
356
  */
417
357
  JobId: string | undefined;
418
358
  }
419
- export declare namespace DescribePHIDetectionJobRequest {
420
- /**
421
- * @internal
422
- */
423
- const filterSensitiveLog: (obj: DescribePHIDetectionJobRequest) => any;
424
- }
425
359
  export interface DescribePHIDetectionJobResponse {
426
360
  /**
427
361
  * <p>An object that contains the properties associated with a detection job.</p>
428
362
  */
429
363
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
430
364
  }
431
- export declare namespace DescribePHIDetectionJobResponse {
432
- /**
433
- * @internal
434
- */
435
- const filterSensitiveLog: (obj: DescribePHIDetectionJobResponse) => any;
436
- }
437
365
  export interface DescribeRxNormInferenceJobRequest {
438
366
  /**
439
367
  * <p>The identifier that Amazon Comprehend Medical generated for the job. The
@@ -441,24 +369,12 @@ export interface DescribeRxNormInferenceJobRequest {
441
369
  */
442
370
  JobId: string | undefined;
443
371
  }
444
- export declare namespace DescribeRxNormInferenceJobRequest {
445
- /**
446
- * @internal
447
- */
448
- const filterSensitiveLog: (obj: DescribeRxNormInferenceJobRequest) => any;
449
- }
450
372
  export interface DescribeRxNormInferenceJobResponse {
451
373
  /**
452
374
  * <p>An object that contains the properties associated with a detection job.</p>
453
375
  */
454
376
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
455
377
  }
456
- export declare namespace DescribeRxNormInferenceJobResponse {
457
- /**
458
- * @internal
459
- */
460
- const filterSensitiveLog: (obj: DescribeRxNormInferenceJobResponse) => any;
461
- }
462
378
  export interface DescribeSNOMEDCTInferenceJobRequest {
463
379
  /**
464
380
  * <p>
@@ -467,24 +383,12 @@ export interface DescribeSNOMEDCTInferenceJobRequest {
467
383
  */
468
384
  JobId: string | undefined;
469
385
  }
470
- export declare namespace DescribeSNOMEDCTInferenceJobRequest {
471
- /**
472
- * @internal
473
- */
474
- const filterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobRequest) => any;
475
- }
476
386
  export interface DescribeSNOMEDCTInferenceJobResponse {
477
387
  /**
478
388
  * <p>Provides information about a detection job.</p>
479
389
  */
480
390
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
481
391
  }
482
- export declare namespace DescribeSNOMEDCTInferenceJobResponse {
483
- /**
484
- * @internal
485
- */
486
- const filterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobResponse) => any;
487
- }
488
392
  export interface DetectEntitiesRequest {
489
393
  /**
490
394
  * <p> A UTF-8 text string containing the clinical content being examined for entities. Each
@@ -492,12 +396,6 @@ export interface DetectEntitiesRequest {
492
396
  */
493
397
  Text: string | undefined;
494
398
  }
495
- export declare namespace DetectEntitiesRequest {
496
- /**
497
- * @internal
498
- */
499
- const filterSensitiveLog: (obj: DetectEntitiesRequest) => any;
500
- }
501
399
  /**
502
400
  * <p> Provides information about an extracted medical entity.</p>
503
401
  */
@@ -542,12 +440,6 @@ export interface Entity {
542
440
  */
543
441
  Attributes?: Attribute[];
544
442
  }
545
- export declare namespace Entity {
546
- /**
547
- * @internal
548
- */
549
- const filterSensitiveLog: (obj: Entity) => any;
550
- }
551
443
  /**
552
444
  * <p> An attribute that was extracted, but Comprehend Medical; was unable to relate to an entity. </p>
553
445
  */
@@ -563,12 +455,6 @@ export interface UnmappedAttribute {
563
455
  */
564
456
  Attribute?: Attribute;
565
457
  }
566
- export declare namespace UnmappedAttribute {
567
- /**
568
- * @internal
569
- */
570
- const filterSensitiveLog: (obj: UnmappedAttribute) => any;
571
- }
572
458
  export interface DetectEntitiesResponse {
573
459
  /**
574
460
  * <p> The collection of medical entities extracted from the input text and their associated
@@ -594,12 +480,6 @@ export interface DetectEntitiesResponse {
594
480
  */
595
481
  ModelVersion: string | undefined;
596
482
  }
597
- export declare namespace DetectEntitiesResponse {
598
- /**
599
- * @internal
600
- */
601
- const filterSensitiveLog: (obj: DetectEntitiesResponse) => any;
602
- }
603
483
  /**
604
484
  * <p> The input text was not in valid UTF-8 character encoding. Check your text then retry your
605
485
  * request.</p>
@@ -646,12 +526,6 @@ export interface DetectEntitiesV2Request {
646
526
  */
647
527
  Text: string | undefined;
648
528
  }
649
- export declare namespace DetectEntitiesV2Request {
650
- /**
651
- * @internal
652
- */
653
- const filterSensitiveLog: (obj: DetectEntitiesV2Request) => any;
654
- }
655
529
  export interface DetectEntitiesV2Response {
656
530
  /**
657
531
  * <p>The collection of medical entities extracted from the input text and their associated
@@ -676,12 +550,6 @@ export interface DetectEntitiesV2Response {
676
550
  */
677
551
  ModelVersion: string | undefined;
678
552
  }
679
- export declare namespace DetectEntitiesV2Response {
680
- /**
681
- * @internal
682
- */
683
- const filterSensitiveLog: (obj: DetectEntitiesV2Response) => any;
684
- }
685
553
  export interface DetectPHIRequest {
686
554
  /**
687
555
  * <p> A UTF-8 text string containing the clinical content being examined for PHI entities. Each
@@ -689,12 +557,6 @@ export interface DetectPHIRequest {
689
557
  */
690
558
  Text: string | undefined;
691
559
  }
692
- export declare namespace DetectPHIRequest {
693
- /**
694
- * @internal
695
- */
696
- const filterSensitiveLog: (obj: DetectPHIRequest) => any;
697
- }
698
560
  export interface DetectPHIResponse {
699
561
  /**
700
562
  * <p> The collection of PHI entities extracted from the input text and their associated
@@ -715,12 +577,6 @@ export interface DetectPHIResponse {
715
577
  */
716
578
  ModelVersion: string | undefined;
717
579
  }
718
- export declare namespace DetectPHIResponse {
719
- /**
720
- * @internal
721
- */
722
- const filterSensitiveLog: (obj: DetectPHIResponse) => any;
723
- }
724
580
  export interface InferICD10CMRequest {
725
581
  /**
726
582
  * <p>The input text used for analysis. The input for InferICD10CM is a string from 1 to 10000
@@ -728,12 +584,6 @@ export interface InferICD10CMRequest {
728
584
  */
729
585
  Text: string | undefined;
730
586
  }
731
- export declare namespace InferICD10CMRequest {
732
- /**
733
- * @internal
734
- */
735
- const filterSensitiveLog: (obj: InferICD10CMRequest) => any;
736
- }
737
587
  export declare enum ICD10CMEntityType {
738
588
  DX_NAME = "DX_NAME",
739
589
  TIME_EXPRESSION = "TIME_EXPRESSION"
@@ -764,12 +614,6 @@ export interface ICD10CMTrait {
764
614
  */
765
615
  Score?: number;
766
616
  }
767
- export declare namespace ICD10CMTrait {
768
- /**
769
- * @internal
770
- */
771
- const filterSensitiveLog: (obj: ICD10CMTrait) => any;
772
- }
773
617
  export declare enum ICD10CMAttributeType {
774
618
  ACUITY = "ACUITY",
775
619
  DIRECTION = "DIRECTION",
@@ -836,12 +680,6 @@ export interface ICD10CMAttribute {
836
680
  */
837
681
  RelationshipType?: ICD10CMRelationshipType | string;
838
682
  }
839
- export declare namespace ICD10CMAttribute {
840
- /**
841
- * @internal
842
- */
843
- const filterSensitiveLog: (obj: ICD10CMAttribute) => any;
844
- }
845
683
  export declare enum ICD10CMEntityCategory {
846
684
  MEDICAL_CONDITION = "MEDICAL_CONDITION"
847
685
  }
@@ -865,12 +703,6 @@ export interface ICD10CMConcept {
865
703
  */
866
704
  Score?: number;
867
705
  }
868
- export declare namespace ICD10CMConcept {
869
- /**
870
- * @internal
871
- */
872
- const filterSensitiveLog: (obj: ICD10CMConcept) => any;
873
- }
874
706
  /**
875
707
  * <p>The collection of medical entities extracted from the input text and their associated
876
708
  * information. For each entity, the response provides the entity text, the entity category,
@@ -932,12 +764,6 @@ export interface ICD10CMEntity {
932
764
  */
933
765
  ICD10CMConcepts?: ICD10CMConcept[];
934
766
  }
935
- export declare namespace ICD10CMEntity {
936
- /**
937
- * @internal
938
- */
939
- const filterSensitiveLog: (obj: ICD10CMEntity) => any;
940
- }
941
767
  export interface InferICD10CMResponse {
942
768
  /**
943
769
  * <p>The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is
@@ -957,12 +783,6 @@ export interface InferICD10CMResponse {
957
783
  */
958
784
  ModelVersion?: string;
959
785
  }
960
- export declare namespace InferICD10CMResponse {
961
- /**
962
- * @internal
963
- */
964
- const filterSensitiveLog: (obj: InferICD10CMResponse) => any;
965
- }
966
786
  export interface InferRxNormRequest {
967
787
  /**
968
788
  * <p>The input text used for analysis. The input for InferRxNorm is a string from 1 to 10000
@@ -970,12 +790,6 @@ export interface InferRxNormRequest {
970
790
  */
971
791
  Text: string | undefined;
972
792
  }
973
- export declare namespace InferRxNormRequest {
974
- /**
975
- * @internal
976
- */
977
- const filterSensitiveLog: (obj: InferRxNormRequest) => any;
978
- }
979
793
  export declare enum RxNormTraitName {
980
794
  NEGATION = "NEGATION"
981
795
  }
@@ -995,12 +809,6 @@ export interface RxNormTrait {
995
809
  */
996
810
  Score?: number;
997
811
  }
998
- export declare namespace RxNormTrait {
999
- /**
1000
- * @internal
1001
- */
1002
- const filterSensitiveLog: (obj: RxNormTrait) => any;
1003
- }
1004
812
  export declare enum RxNormAttributeType {
1005
813
  DOSAGE = "DOSAGE",
1006
814
  DURATION = "DURATION",
@@ -1057,12 +865,6 @@ export interface RxNormAttribute {
1057
865
  */
1058
866
  Traits?: RxNormTrait[];
1059
867
  }
1060
- export declare namespace RxNormAttribute {
1061
- /**
1062
- * @internal
1063
- */
1064
- const filterSensitiveLog: (obj: RxNormAttribute) => any;
1065
- }
1066
868
  export declare enum RxNormEntityCategory {
1067
869
  MEDICATION = "MEDICATION"
1068
870
  }
@@ -1085,12 +887,6 @@ export interface RxNormConcept {
1085
887
  */
1086
888
  Score?: number;
1087
889
  }
1088
- export declare namespace RxNormConcept {
1089
- /**
1090
- * @internal
1091
- */
1092
- const filterSensitiveLog: (obj: RxNormConcept) => any;
1093
- }
1094
890
  export declare enum RxNormEntityType {
1095
891
  BRAND_NAME = "BRAND_NAME",
1096
892
  GENERIC_NAME = "GENERIC_NAME"
@@ -1154,12 +950,6 @@ export interface RxNormEntity {
1154
950
  */
1155
951
  RxNormConcepts?: RxNormConcept[];
1156
952
  }
1157
- export declare namespace RxNormEntity {
1158
- /**
1159
- * @internal
1160
- */
1161
- const filterSensitiveLog: (obj: RxNormEntity) => any;
1162
- }
1163
953
  export interface InferRxNormResponse {
1164
954
  /**
1165
955
  * <p>The medication entities detected in the text linked to RxNorm concepts. If the action is
@@ -1179,12 +969,6 @@ export interface InferRxNormResponse {
1179
969
  */
1180
970
  ModelVersion?: string;
1181
971
  }
1182
- export declare namespace InferRxNormResponse {
1183
- /**
1184
- * @internal
1185
- */
1186
- const filterSensitiveLog: (obj: InferRxNormResponse) => any;
1187
- }
1188
972
  export interface InferSNOMEDCTRequest {
1189
973
  /**
1190
974
  * <p>
@@ -1193,12 +977,6 @@ export interface InferSNOMEDCTRequest {
1193
977
  */
1194
978
  Text: string | undefined;
1195
979
  }
1196
- export declare namespace InferSNOMEDCTRequest {
1197
- /**
1198
- * @internal
1199
- */
1200
- const filterSensitiveLog: (obj: InferSNOMEDCTRequest) => any;
1201
- }
1202
980
  export declare enum SNOMEDCTEntityCategory {
1203
981
  ANATOMY = "ANATOMY",
1204
982
  MEDICAL_CONDITION = "MEDICAL_CONDITION",
@@ -1237,12 +1015,6 @@ export interface SNOMEDCTConcept {
1237
1015
  */
1238
1016
  Score?: number;
1239
1017
  }
1240
- export declare namespace SNOMEDCTConcept {
1241
- /**
1242
- * @internal
1243
- */
1244
- const filterSensitiveLog: (obj: SNOMEDCTConcept) => any;
1245
- }
1246
1018
  export declare enum SNOMEDCTTraitName {
1247
1019
  DIAGNOSIS = "DIAGNOSIS",
1248
1020
  NEGATION = "NEGATION",
@@ -1268,12 +1040,6 @@ export interface SNOMEDCTTrait {
1268
1040
  */
1269
1041
  Score?: number;
1270
1042
  }
1271
- export declare namespace SNOMEDCTTrait {
1272
- /**
1273
- * @internal
1274
- */
1275
- const filterSensitiveLog: (obj: SNOMEDCTTrait) => any;
1276
- }
1277
1043
  export declare enum SNOMEDCTAttributeType {
1278
1044
  ACUITY = "ACUITY",
1279
1045
  DIRECTION = "DIRECTION",
@@ -1355,12 +1121,6 @@ export interface SNOMEDCTAttribute {
1355
1121
  */
1356
1122
  SNOMEDCTConcepts?: SNOMEDCTConcept[];
1357
1123
  }
1358
- export declare namespace SNOMEDCTAttribute {
1359
- /**
1360
- * @internal
1361
- */
1362
- const filterSensitiveLog: (obj: SNOMEDCTAttribute) => any;
1363
- }
1364
1124
  export declare enum SNOMEDCTEntityType {
1365
1125
  DX_NAME = "DX_NAME",
1366
1126
  PROCEDURE_NAME = "PROCEDURE_NAME",
@@ -1434,12 +1194,6 @@ export interface SNOMEDCTEntity {
1434
1194
  */
1435
1195
  SNOMEDCTConcepts?: SNOMEDCTConcept[];
1436
1196
  }
1437
- export declare namespace SNOMEDCTEntity {
1438
- /**
1439
- * @internal
1440
- */
1441
- const filterSensitiveLog: (obj: SNOMEDCTEntity) => any;
1442
- }
1443
1197
  /**
1444
1198
  * <p>
1445
1199
  * The information about the revision of the SNOMED-CT ontology in the response. Specifically, the details include the SNOMED-CT edition, language, and version date.
@@ -1465,12 +1219,6 @@ export interface SNOMEDCTDetails {
1465
1219
  */
1466
1220
  VersionDate?: string;
1467
1221
  }
1468
- export declare namespace SNOMEDCTDetails {
1469
- /**
1470
- * @internal
1471
- */
1472
- const filterSensitiveLog: (obj: SNOMEDCTDetails) => any;
1473
- }
1474
1222
  export interface InferSNOMEDCTResponse {
1475
1223
  /**
1476
1224
  * <p>
@@ -1503,12 +1251,6 @@ export interface InferSNOMEDCTResponse {
1503
1251
  */
1504
1252
  Characters?: Characters;
1505
1253
  }
1506
- export declare namespace InferSNOMEDCTResponse {
1507
- /**
1508
- * @internal
1509
- */
1510
- const filterSensitiveLog: (obj: InferSNOMEDCTResponse) => any;
1511
- }
1512
1254
  /**
1513
1255
  * <p>Provides information for filtering a list of detection jobs.</p>
1514
1256
  */
@@ -1535,12 +1277,6 @@ export interface ComprehendMedicalAsyncJobFilter {
1535
1277
  */
1536
1278
  SubmitTimeAfter?: Date;
1537
1279
  }
1538
- export declare namespace ComprehendMedicalAsyncJobFilter {
1539
- /**
1540
- * @internal
1541
- */
1542
- const filterSensitiveLog: (obj: ComprehendMedicalAsyncJobFilter) => any;
1543
- }
1544
1280
  export interface ListEntitiesDetectionV2JobsRequest {
1545
1281
  /**
1546
1282
  * <p>Filters the jobs that are returned. You can filter jobs based on their names, status, or
@@ -1556,12 +1292,6 @@ export interface ListEntitiesDetectionV2JobsRequest {
1556
1292
  */
1557
1293
  MaxResults?: number;
1558
1294
  }
1559
- export declare namespace ListEntitiesDetectionV2JobsRequest {
1560
- /**
1561
- * @internal
1562
- */
1563
- const filterSensitiveLog: (obj: ListEntitiesDetectionV2JobsRequest) => any;
1564
- }
1565
1295
  export interface ListEntitiesDetectionV2JobsResponse {
1566
1296
  /**
1567
1297
  * <p>A list containing the properties of each job returned.</p>
@@ -1572,12 +1302,6 @@ export interface ListEntitiesDetectionV2JobsResponse {
1572
1302
  */
1573
1303
  NextToken?: string;
1574
1304
  }
1575
- export declare namespace ListEntitiesDetectionV2JobsResponse {
1576
- /**
1577
- * @internal
1578
- */
1579
- const filterSensitiveLog: (obj: ListEntitiesDetectionV2JobsResponse) => any;
1580
- }
1581
1305
  /**
1582
1306
  * <p>The filter that you specified for the operation is invalid. Check the filter values that
1583
1307
  * you entered and try your request again.</p>
@@ -1606,12 +1330,6 @@ export interface ListICD10CMInferenceJobsRequest {
1606
1330
  */
1607
1331
  MaxResults?: number;
1608
1332
  }
1609
- export declare namespace ListICD10CMInferenceJobsRequest {
1610
- /**
1611
- * @internal
1612
- */
1613
- const filterSensitiveLog: (obj: ListICD10CMInferenceJobsRequest) => any;
1614
- }
1615
1333
  export interface ListICD10CMInferenceJobsResponse {
1616
1334
  /**
1617
1335
  * <p>A list containing the properties of each job that is returned.</p>
@@ -1622,12 +1340,6 @@ export interface ListICD10CMInferenceJobsResponse {
1622
1340
  */
1623
1341
  NextToken?: string;
1624
1342
  }
1625
- export declare namespace ListICD10CMInferenceJobsResponse {
1626
- /**
1627
- * @internal
1628
- */
1629
- const filterSensitiveLog: (obj: ListICD10CMInferenceJobsResponse) => any;
1630
- }
1631
1343
  export interface ListPHIDetectionJobsRequest {
1632
1344
  /**
1633
1345
  * <p>Filters the jobs that are returned. You can filter jobs based on their names, status, or
@@ -1643,12 +1355,6 @@ export interface ListPHIDetectionJobsRequest {
1643
1355
  */
1644
1356
  MaxResults?: number;
1645
1357
  }
1646
- export declare namespace ListPHIDetectionJobsRequest {
1647
- /**
1648
- * @internal
1649
- */
1650
- const filterSensitiveLog: (obj: ListPHIDetectionJobsRequest) => any;
1651
- }
1652
1358
  export interface ListPHIDetectionJobsResponse {
1653
1359
  /**
1654
1360
  * <p>A list containing the properties of each job returned.</p>
@@ -1659,12 +1365,6 @@ export interface ListPHIDetectionJobsResponse {
1659
1365
  */
1660
1366
  NextToken?: string;
1661
1367
  }
1662
- export declare namespace ListPHIDetectionJobsResponse {
1663
- /**
1664
- * @internal
1665
- */
1666
- const filterSensitiveLog: (obj: ListPHIDetectionJobsResponse) => any;
1667
- }
1668
1368
  export interface ListRxNormInferenceJobsRequest {
1669
1369
  /**
1670
1370
  * <p>Filters the jobs that are returned. You can filter jobs based on their names, status, or
@@ -1680,12 +1380,6 @@ export interface ListRxNormInferenceJobsRequest {
1680
1380
  */
1681
1381
  MaxResults?: number;
1682
1382
  }
1683
- export declare namespace ListRxNormInferenceJobsRequest {
1684
- /**
1685
- * @internal
1686
- */
1687
- const filterSensitiveLog: (obj: ListRxNormInferenceJobsRequest) => any;
1688
- }
1689
1383
  export interface ListRxNormInferenceJobsResponse {
1690
1384
  /**
1691
1385
  * <p>The maximum number of results to return in each page. The default is 100.</p>
@@ -1696,12 +1390,6 @@ export interface ListRxNormInferenceJobsResponse {
1696
1390
  */
1697
1391
  NextToken?: string;
1698
1392
  }
1699
- export declare namespace ListRxNormInferenceJobsResponse {
1700
- /**
1701
- * @internal
1702
- */
1703
- const filterSensitiveLog: (obj: ListRxNormInferenceJobsResponse) => any;
1704
- }
1705
1393
  export interface ListSNOMEDCTInferenceJobsRequest {
1706
1394
  /**
1707
1395
  * <p>Provides information for filtering a list of detection jobs.</p>
@@ -1720,12 +1408,6 @@ export interface ListSNOMEDCTInferenceJobsRequest {
1720
1408
  */
1721
1409
  MaxResults?: number;
1722
1410
  }
1723
- export declare namespace ListSNOMEDCTInferenceJobsRequest {
1724
- /**
1725
- * @internal
1726
- */
1727
- const filterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsRequest) => any;
1728
- }
1729
1411
  export interface ListSNOMEDCTInferenceJobsResponse {
1730
1412
  /**
1731
1413
  * <p>
@@ -1740,12 +1422,6 @@ export interface ListSNOMEDCTInferenceJobsResponse {
1740
1422
  */
1741
1423
  NextToken?: string;
1742
1424
  }
1743
- export declare namespace ListSNOMEDCTInferenceJobsResponse {
1744
- /**
1745
- * @internal
1746
- */
1747
- const filterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsResponse) => any;
1748
- }
1749
1425
  export interface StartEntitiesDetectionV2JobRequest {
1750
1426
  /**
1751
1427
  * <p>The input configuration that specifies the format and location of the input data for the job.</p>
@@ -1779,12 +1455,6 @@ export interface StartEntitiesDetectionV2JobRequest {
1779
1455
  */
1780
1456
  LanguageCode: LanguageCode | string | undefined;
1781
1457
  }
1782
- export declare namespace StartEntitiesDetectionV2JobRequest {
1783
- /**
1784
- * @internal
1785
- */
1786
- const filterSensitiveLog: (obj: StartEntitiesDetectionV2JobRequest) => any;
1787
- }
1788
1458
  export interface StartEntitiesDetectionV2JobResponse {
1789
1459
  /**
1790
1460
  * <p>The identifier generated for the job. To get the status of a job, use this identifier with
@@ -1792,12 +1462,6 @@ export interface StartEntitiesDetectionV2JobResponse {
1792
1462
  */
1793
1463
  JobId?: string;
1794
1464
  }
1795
- export declare namespace StartEntitiesDetectionV2JobResponse {
1796
- /**
1797
- * @internal
1798
- */
1799
- const filterSensitiveLog: (obj: StartEntitiesDetectionV2JobResponse) => any;
1800
- }
1801
1465
  export interface StartICD10CMInferenceJobRequest {
1802
1466
  /**
1803
1467
  * <p>Specifies the format and location of the input data for the job.</p>
@@ -1831,12 +1495,6 @@ export interface StartICD10CMInferenceJobRequest {
1831
1495
  */
1832
1496
  LanguageCode: LanguageCode | string | undefined;
1833
1497
  }
1834
- export declare namespace StartICD10CMInferenceJobRequest {
1835
- /**
1836
- * @internal
1837
- */
1838
- const filterSensitiveLog: (obj: StartICD10CMInferenceJobRequest) => any;
1839
- }
1840
1498
  export interface StartICD10CMInferenceJobResponse {
1841
1499
  /**
1842
1500
  * <p>The identifier generated for the job. To get the status of a job, use this identifier with
@@ -1844,12 +1502,6 @@ export interface StartICD10CMInferenceJobResponse {
1844
1502
  */
1845
1503
  JobId?: string;
1846
1504
  }
1847
- export declare namespace StartICD10CMInferenceJobResponse {
1848
- /**
1849
- * @internal
1850
- */
1851
- const filterSensitiveLog: (obj: StartICD10CMInferenceJobResponse) => any;
1852
- }
1853
1505
  export interface StartPHIDetectionJobRequest {
1854
1506
  /**
1855
1507
  * <p>Specifies the format and location of the input data for the job.</p>
@@ -1883,12 +1535,6 @@ export interface StartPHIDetectionJobRequest {
1883
1535
  */
1884
1536
  LanguageCode: LanguageCode | string | undefined;
1885
1537
  }
1886
- export declare namespace StartPHIDetectionJobRequest {
1887
- /**
1888
- * @internal
1889
- */
1890
- const filterSensitiveLog: (obj: StartPHIDetectionJobRequest) => any;
1891
- }
1892
1538
  export interface StartPHIDetectionJobResponse {
1893
1539
  /**
1894
1540
  * <p>The identifier generated for the job. To get the status of a job, use this identifier with
@@ -1896,12 +1542,6 @@ export interface StartPHIDetectionJobResponse {
1896
1542
  */
1897
1543
  JobId?: string;
1898
1544
  }
1899
- export declare namespace StartPHIDetectionJobResponse {
1900
- /**
1901
- * @internal
1902
- */
1903
- const filterSensitiveLog: (obj: StartPHIDetectionJobResponse) => any;
1904
- }
1905
1545
  export interface StartRxNormInferenceJobRequest {
1906
1546
  /**
1907
1547
  * <p>Specifies the format and location of the input data for the job.</p>
@@ -1935,24 +1575,12 @@ export interface StartRxNormInferenceJobRequest {
1935
1575
  */
1936
1576
  LanguageCode: LanguageCode | string | undefined;
1937
1577
  }
1938
- export declare namespace StartRxNormInferenceJobRequest {
1939
- /**
1940
- * @internal
1941
- */
1942
- const filterSensitiveLog: (obj: StartRxNormInferenceJobRequest) => any;
1943
- }
1944
1578
  export interface StartRxNormInferenceJobResponse {
1945
1579
  /**
1946
1580
  * <p>The identifier of the job.</p>
1947
1581
  */
1948
1582
  JobId?: string;
1949
1583
  }
1950
- export declare namespace StartRxNormInferenceJobResponse {
1951
- /**
1952
- * @internal
1953
- */
1954
- const filterSensitiveLog: (obj: StartRxNormInferenceJobResponse) => any;
1955
- }
1956
1584
  export interface StartSNOMEDCTInferenceJobRequest {
1957
1585
  /**
1958
1586
  * <p>The input properties for an entities detection job. This includes the name of the S3
@@ -1994,12 +1622,6 @@ export interface StartSNOMEDCTInferenceJobRequest {
1994
1622
  */
1995
1623
  LanguageCode: LanguageCode | string | undefined;
1996
1624
  }
1997
- export declare namespace StartSNOMEDCTInferenceJobRequest {
1998
- /**
1999
- * @internal
2000
- */
2001
- const filterSensitiveLog: (obj: StartSNOMEDCTInferenceJobRequest) => any;
2002
- }
2003
1625
  export interface StartSNOMEDCTInferenceJobResponse {
2004
1626
  /**
2005
1627
  * <p>
@@ -2008,48 +1630,24 @@ export interface StartSNOMEDCTInferenceJobResponse {
2008
1630
  */
2009
1631
  JobId?: string;
2010
1632
  }
2011
- export declare namespace StartSNOMEDCTInferenceJobResponse {
2012
- /**
2013
- * @internal
2014
- */
2015
- const filterSensitiveLog: (obj: StartSNOMEDCTInferenceJobResponse) => any;
2016
- }
2017
1633
  export interface StopEntitiesDetectionV2JobRequest {
2018
1634
  /**
2019
1635
  * <p>The identifier of the medical entities job to stop.</p>
2020
1636
  */
2021
1637
  JobId: string | undefined;
2022
1638
  }
2023
- export declare namespace StopEntitiesDetectionV2JobRequest {
2024
- /**
2025
- * @internal
2026
- */
2027
- const filterSensitiveLog: (obj: StopEntitiesDetectionV2JobRequest) => any;
2028
- }
2029
1639
  export interface StopEntitiesDetectionV2JobResponse {
2030
1640
  /**
2031
1641
  * <p>The identifier of the medical entities detection job that was stopped.</p>
2032
1642
  */
2033
1643
  JobId?: string;
2034
1644
  }
2035
- export declare namespace StopEntitiesDetectionV2JobResponse {
2036
- /**
2037
- * @internal
2038
- */
2039
- const filterSensitiveLog: (obj: StopEntitiesDetectionV2JobResponse) => any;
2040
- }
2041
1645
  export interface StopICD10CMInferenceJobRequest {
2042
1646
  /**
2043
1647
  * <p>The identifier of the job.</p>
2044
1648
  */
2045
1649
  JobId: string | undefined;
2046
1650
  }
2047
- export declare namespace StopICD10CMInferenceJobRequest {
2048
- /**
2049
- * @internal
2050
- */
2051
- const filterSensitiveLog: (obj: StopICD10CMInferenceJobRequest) => any;
2052
- }
2053
1651
  export interface StopICD10CMInferenceJobResponse {
2054
1652
  /**
2055
1653
  * <p>The identifier generated for the job. To get the status of job, use this identifier with
@@ -2057,48 +1655,24 @@ export interface StopICD10CMInferenceJobResponse {
2057
1655
  */
2058
1656
  JobId?: string;
2059
1657
  }
2060
- export declare namespace StopICD10CMInferenceJobResponse {
2061
- /**
2062
- * @internal
2063
- */
2064
- const filterSensitiveLog: (obj: StopICD10CMInferenceJobResponse) => any;
2065
- }
2066
1658
  export interface StopPHIDetectionJobRequest {
2067
1659
  /**
2068
1660
  * <p>The identifier of the PHI detection job to stop.</p>
2069
1661
  */
2070
1662
  JobId: string | undefined;
2071
1663
  }
2072
- export declare namespace StopPHIDetectionJobRequest {
2073
- /**
2074
- * @internal
2075
- */
2076
- const filterSensitiveLog: (obj: StopPHIDetectionJobRequest) => any;
2077
- }
2078
1664
  export interface StopPHIDetectionJobResponse {
2079
1665
  /**
2080
1666
  * <p>The identifier of the PHI detection job that was stopped.</p>
2081
1667
  */
2082
1668
  JobId?: string;
2083
1669
  }
2084
- export declare namespace StopPHIDetectionJobResponse {
2085
- /**
2086
- * @internal
2087
- */
2088
- const filterSensitiveLog: (obj: StopPHIDetectionJobResponse) => any;
2089
- }
2090
1670
  export interface StopRxNormInferenceJobRequest {
2091
1671
  /**
2092
1672
  * <p>The identifier of the job.</p>
2093
1673
  */
2094
1674
  JobId: string | undefined;
2095
1675
  }
2096
- export declare namespace StopRxNormInferenceJobRequest {
2097
- /**
2098
- * @internal
2099
- */
2100
- const filterSensitiveLog: (obj: StopRxNormInferenceJobRequest) => any;
2101
- }
2102
1676
  export interface StopRxNormInferenceJobResponse {
2103
1677
  /**
2104
1678
  * <p>The identifier generated for the job. To get the status of job, use this identifier with
@@ -2106,12 +1680,6 @@ export interface StopRxNormInferenceJobResponse {
2106
1680
  */
2107
1681
  JobId?: string;
2108
1682
  }
2109
- export declare namespace StopRxNormInferenceJobResponse {
2110
- /**
2111
- * @internal
2112
- */
2113
- const filterSensitiveLog: (obj: StopRxNormInferenceJobResponse) => any;
2114
- }
2115
1683
  export interface StopSNOMEDCTInferenceJobRequest {
2116
1684
  /**
2117
1685
  * <p>
@@ -2120,12 +1688,6 @@ export interface StopSNOMEDCTInferenceJobRequest {
2120
1688
  */
2121
1689
  JobId: string | undefined;
2122
1690
  }
2123
- export declare namespace StopSNOMEDCTInferenceJobRequest {
2124
- /**
2125
- * @internal
2126
- */
2127
- const filterSensitiveLog: (obj: StopSNOMEDCTInferenceJobRequest) => any;
2128
- }
2129
1691
  export interface StopSNOMEDCTInferenceJobResponse {
2130
1692
  /**
2131
1693
  * <p>
@@ -2134,9 +1696,299 @@ export interface StopSNOMEDCTInferenceJobResponse {
2134
1696
  */
2135
1697
  JobId?: string;
2136
1698
  }
2137
- export declare namespace StopSNOMEDCTInferenceJobResponse {
2138
- /**
2139
- * @internal
2140
- */
2141
- const filterSensitiveLog: (obj: StopSNOMEDCTInferenceJobResponse) => any;
2142
- }
1699
+ /**
1700
+ * @internal
1701
+ */
1702
+ export declare const TraitFilterSensitiveLog: (obj: Trait) => any;
1703
+ /**
1704
+ * @internal
1705
+ */
1706
+ export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
1707
+ /**
1708
+ * @internal
1709
+ */
1710
+ export declare const CharactersFilterSensitiveLog: (obj: Characters) => any;
1711
+ /**
1712
+ * @internal
1713
+ */
1714
+ export declare const DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobRequest) => any;
1715
+ /**
1716
+ * @internal
1717
+ */
1718
+ export declare const InputDataConfigFilterSensitiveLog: (obj: InputDataConfig) => any;
1719
+ /**
1720
+ * @internal
1721
+ */
1722
+ export declare const OutputDataConfigFilterSensitiveLog: (obj: OutputDataConfig) => any;
1723
+ /**
1724
+ * @internal
1725
+ */
1726
+ export declare const ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog: (obj: ComprehendMedicalAsyncJobProperties) => any;
1727
+ /**
1728
+ * @internal
1729
+ */
1730
+ export declare const DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: DescribeEntitiesDetectionV2JobResponse) => any;
1731
+ /**
1732
+ * @internal
1733
+ */
1734
+ export declare const DescribeICD10CMInferenceJobRequestFilterSensitiveLog: (obj: DescribeICD10CMInferenceJobRequest) => any;
1735
+ /**
1736
+ * @internal
1737
+ */
1738
+ export declare const DescribeICD10CMInferenceJobResponseFilterSensitiveLog: (obj: DescribeICD10CMInferenceJobResponse) => any;
1739
+ /**
1740
+ * @internal
1741
+ */
1742
+ export declare const DescribePHIDetectionJobRequestFilterSensitiveLog: (obj: DescribePHIDetectionJobRequest) => any;
1743
+ /**
1744
+ * @internal
1745
+ */
1746
+ export declare const DescribePHIDetectionJobResponseFilterSensitiveLog: (obj: DescribePHIDetectionJobResponse) => any;
1747
+ /**
1748
+ * @internal
1749
+ */
1750
+ export declare const DescribeRxNormInferenceJobRequestFilterSensitiveLog: (obj: DescribeRxNormInferenceJobRequest) => any;
1751
+ /**
1752
+ * @internal
1753
+ */
1754
+ export declare const DescribeRxNormInferenceJobResponseFilterSensitiveLog: (obj: DescribeRxNormInferenceJobResponse) => any;
1755
+ /**
1756
+ * @internal
1757
+ */
1758
+ export declare const DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobRequest) => any;
1759
+ /**
1760
+ * @internal
1761
+ */
1762
+ export declare const DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: DescribeSNOMEDCTInferenceJobResponse) => any;
1763
+ /**
1764
+ * @internal
1765
+ */
1766
+ export declare const DetectEntitiesRequestFilterSensitiveLog: (obj: DetectEntitiesRequest) => any;
1767
+ /**
1768
+ * @internal
1769
+ */
1770
+ export declare const EntityFilterSensitiveLog: (obj: Entity) => any;
1771
+ /**
1772
+ * @internal
1773
+ */
1774
+ export declare const UnmappedAttributeFilterSensitiveLog: (obj: UnmappedAttribute) => any;
1775
+ /**
1776
+ * @internal
1777
+ */
1778
+ export declare const DetectEntitiesResponseFilterSensitiveLog: (obj: DetectEntitiesResponse) => any;
1779
+ /**
1780
+ * @internal
1781
+ */
1782
+ export declare const DetectEntitiesV2RequestFilterSensitiveLog: (obj: DetectEntitiesV2Request) => any;
1783
+ /**
1784
+ * @internal
1785
+ */
1786
+ export declare const DetectEntitiesV2ResponseFilterSensitiveLog: (obj: DetectEntitiesV2Response) => any;
1787
+ /**
1788
+ * @internal
1789
+ */
1790
+ export declare const DetectPHIRequestFilterSensitiveLog: (obj: DetectPHIRequest) => any;
1791
+ /**
1792
+ * @internal
1793
+ */
1794
+ export declare const DetectPHIResponseFilterSensitiveLog: (obj: DetectPHIResponse) => any;
1795
+ /**
1796
+ * @internal
1797
+ */
1798
+ export declare const InferICD10CMRequestFilterSensitiveLog: (obj: InferICD10CMRequest) => any;
1799
+ /**
1800
+ * @internal
1801
+ */
1802
+ export declare const ICD10CMTraitFilterSensitiveLog: (obj: ICD10CMTrait) => any;
1803
+ /**
1804
+ * @internal
1805
+ */
1806
+ export declare const ICD10CMAttributeFilterSensitiveLog: (obj: ICD10CMAttribute) => any;
1807
+ /**
1808
+ * @internal
1809
+ */
1810
+ export declare const ICD10CMConceptFilterSensitiveLog: (obj: ICD10CMConcept) => any;
1811
+ /**
1812
+ * @internal
1813
+ */
1814
+ export declare const ICD10CMEntityFilterSensitiveLog: (obj: ICD10CMEntity) => any;
1815
+ /**
1816
+ * @internal
1817
+ */
1818
+ export declare const InferICD10CMResponseFilterSensitiveLog: (obj: InferICD10CMResponse) => any;
1819
+ /**
1820
+ * @internal
1821
+ */
1822
+ export declare const InferRxNormRequestFilterSensitiveLog: (obj: InferRxNormRequest) => any;
1823
+ /**
1824
+ * @internal
1825
+ */
1826
+ export declare const RxNormTraitFilterSensitiveLog: (obj: RxNormTrait) => any;
1827
+ /**
1828
+ * @internal
1829
+ */
1830
+ export declare const RxNormAttributeFilterSensitiveLog: (obj: RxNormAttribute) => any;
1831
+ /**
1832
+ * @internal
1833
+ */
1834
+ export declare const RxNormConceptFilterSensitiveLog: (obj: RxNormConcept) => any;
1835
+ /**
1836
+ * @internal
1837
+ */
1838
+ export declare const RxNormEntityFilterSensitiveLog: (obj: RxNormEntity) => any;
1839
+ /**
1840
+ * @internal
1841
+ */
1842
+ export declare const InferRxNormResponseFilterSensitiveLog: (obj: InferRxNormResponse) => any;
1843
+ /**
1844
+ * @internal
1845
+ */
1846
+ export declare const InferSNOMEDCTRequestFilterSensitiveLog: (obj: InferSNOMEDCTRequest) => any;
1847
+ /**
1848
+ * @internal
1849
+ */
1850
+ export declare const SNOMEDCTConceptFilterSensitiveLog: (obj: SNOMEDCTConcept) => any;
1851
+ /**
1852
+ * @internal
1853
+ */
1854
+ export declare const SNOMEDCTTraitFilterSensitiveLog: (obj: SNOMEDCTTrait) => any;
1855
+ /**
1856
+ * @internal
1857
+ */
1858
+ export declare const SNOMEDCTAttributeFilterSensitiveLog: (obj: SNOMEDCTAttribute) => any;
1859
+ /**
1860
+ * @internal
1861
+ */
1862
+ export declare const SNOMEDCTEntityFilterSensitiveLog: (obj: SNOMEDCTEntity) => any;
1863
+ /**
1864
+ * @internal
1865
+ */
1866
+ export declare const SNOMEDCTDetailsFilterSensitiveLog: (obj: SNOMEDCTDetails) => any;
1867
+ /**
1868
+ * @internal
1869
+ */
1870
+ export declare const InferSNOMEDCTResponseFilterSensitiveLog: (obj: InferSNOMEDCTResponse) => any;
1871
+ /**
1872
+ * @internal
1873
+ */
1874
+ export declare const ComprehendMedicalAsyncJobFilterFilterSensitiveLog: (obj: ComprehendMedicalAsyncJobFilter) => any;
1875
+ /**
1876
+ * @internal
1877
+ */
1878
+ export declare const ListEntitiesDetectionV2JobsRequestFilterSensitiveLog: (obj: ListEntitiesDetectionV2JobsRequest) => any;
1879
+ /**
1880
+ * @internal
1881
+ */
1882
+ export declare const ListEntitiesDetectionV2JobsResponseFilterSensitiveLog: (obj: ListEntitiesDetectionV2JobsResponse) => any;
1883
+ /**
1884
+ * @internal
1885
+ */
1886
+ export declare const ListICD10CMInferenceJobsRequestFilterSensitiveLog: (obj: ListICD10CMInferenceJobsRequest) => any;
1887
+ /**
1888
+ * @internal
1889
+ */
1890
+ export declare const ListICD10CMInferenceJobsResponseFilterSensitiveLog: (obj: ListICD10CMInferenceJobsResponse) => any;
1891
+ /**
1892
+ * @internal
1893
+ */
1894
+ export declare const ListPHIDetectionJobsRequestFilterSensitiveLog: (obj: ListPHIDetectionJobsRequest) => any;
1895
+ /**
1896
+ * @internal
1897
+ */
1898
+ export declare const ListPHIDetectionJobsResponseFilterSensitiveLog: (obj: ListPHIDetectionJobsResponse) => any;
1899
+ /**
1900
+ * @internal
1901
+ */
1902
+ export declare const ListRxNormInferenceJobsRequestFilterSensitiveLog: (obj: ListRxNormInferenceJobsRequest) => any;
1903
+ /**
1904
+ * @internal
1905
+ */
1906
+ export declare const ListRxNormInferenceJobsResponseFilterSensitiveLog: (obj: ListRxNormInferenceJobsResponse) => any;
1907
+ /**
1908
+ * @internal
1909
+ */
1910
+ export declare const ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsRequest) => any;
1911
+ /**
1912
+ * @internal
1913
+ */
1914
+ export declare const ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog: (obj: ListSNOMEDCTInferenceJobsResponse) => any;
1915
+ /**
1916
+ * @internal
1917
+ */
1918
+ export declare const StartEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: StartEntitiesDetectionV2JobRequest) => any;
1919
+ /**
1920
+ * @internal
1921
+ */
1922
+ export declare const StartEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: StartEntitiesDetectionV2JobResponse) => any;
1923
+ /**
1924
+ * @internal
1925
+ */
1926
+ export declare const StartICD10CMInferenceJobRequestFilterSensitiveLog: (obj: StartICD10CMInferenceJobRequest) => any;
1927
+ /**
1928
+ * @internal
1929
+ */
1930
+ export declare const StartICD10CMInferenceJobResponseFilterSensitiveLog: (obj: StartICD10CMInferenceJobResponse) => any;
1931
+ /**
1932
+ * @internal
1933
+ */
1934
+ export declare const StartPHIDetectionJobRequestFilterSensitiveLog: (obj: StartPHIDetectionJobRequest) => any;
1935
+ /**
1936
+ * @internal
1937
+ */
1938
+ export declare const StartPHIDetectionJobResponseFilterSensitiveLog: (obj: StartPHIDetectionJobResponse) => any;
1939
+ /**
1940
+ * @internal
1941
+ */
1942
+ export declare const StartRxNormInferenceJobRequestFilterSensitiveLog: (obj: StartRxNormInferenceJobRequest) => any;
1943
+ /**
1944
+ * @internal
1945
+ */
1946
+ export declare const StartRxNormInferenceJobResponseFilterSensitiveLog: (obj: StartRxNormInferenceJobResponse) => any;
1947
+ /**
1948
+ * @internal
1949
+ */
1950
+ export declare const StartSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: StartSNOMEDCTInferenceJobRequest) => any;
1951
+ /**
1952
+ * @internal
1953
+ */
1954
+ export declare const StartSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: StartSNOMEDCTInferenceJobResponse) => any;
1955
+ /**
1956
+ * @internal
1957
+ */
1958
+ export declare const StopEntitiesDetectionV2JobRequestFilterSensitiveLog: (obj: StopEntitiesDetectionV2JobRequest) => any;
1959
+ /**
1960
+ * @internal
1961
+ */
1962
+ export declare const StopEntitiesDetectionV2JobResponseFilterSensitiveLog: (obj: StopEntitiesDetectionV2JobResponse) => any;
1963
+ /**
1964
+ * @internal
1965
+ */
1966
+ export declare const StopICD10CMInferenceJobRequestFilterSensitiveLog: (obj: StopICD10CMInferenceJobRequest) => any;
1967
+ /**
1968
+ * @internal
1969
+ */
1970
+ export declare const StopICD10CMInferenceJobResponseFilterSensitiveLog: (obj: StopICD10CMInferenceJobResponse) => any;
1971
+ /**
1972
+ * @internal
1973
+ */
1974
+ export declare const StopPHIDetectionJobRequestFilterSensitiveLog: (obj: StopPHIDetectionJobRequest) => any;
1975
+ /**
1976
+ * @internal
1977
+ */
1978
+ export declare const StopPHIDetectionJobResponseFilterSensitiveLog: (obj: StopPHIDetectionJobResponse) => any;
1979
+ /**
1980
+ * @internal
1981
+ */
1982
+ export declare const StopRxNormInferenceJobRequestFilterSensitiveLog: (obj: StopRxNormInferenceJobRequest) => any;
1983
+ /**
1984
+ * @internal
1985
+ */
1986
+ export declare const StopRxNormInferenceJobResponseFilterSensitiveLog: (obj: StopRxNormInferenceJobResponse) => any;
1987
+ /**
1988
+ * @internal
1989
+ */
1990
+ export declare const StopSNOMEDCTInferenceJobRequestFilterSensitiveLog: (obj: StopSNOMEDCTInferenceJobRequest) => any;
1991
+ /**
1992
+ * @internal
1993
+ */
1994
+ export declare const StopSNOMEDCTInferenceJobResponseFilterSensitiveLog: (obj: StopSNOMEDCTInferenceJobResponse) => any;