@aws-sdk/client-comprehendmedical 3.183.0 → 3.186.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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ComprehendMedical.js +113 -106
- package/dist-es/ComprehendMedicalClient.js +28 -22
- package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +28 -21
- package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +28 -21
- package/dist-es/commands/DescribePHIDetectionJobCommand.js +28 -21
- package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +28 -21
- package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +28 -21
- package/dist-es/commands/DetectEntitiesCommand.js +28 -21
- package/dist-es/commands/DetectEntitiesV2Command.js +28 -21
- package/dist-es/commands/DetectPHICommand.js +28 -21
- package/dist-es/commands/InferICD10CMCommand.js +28 -21
- package/dist-es/commands/InferRxNormCommand.js +28 -21
- package/dist-es/commands/InferSNOMEDCTCommand.js +28 -21
- package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +28 -21
- package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +28 -21
- package/dist-es/commands/ListPHIDetectionJobsCommand.js +28 -21
- package/dist-es/commands/ListRxNormInferenceJobsCommand.js +28 -21
- package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +28 -21
- package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +28 -21
- package/dist-es/commands/StartICD10CMInferenceJobCommand.js +28 -21
- package/dist-es/commands/StartPHIDetectionJobCommand.js +28 -21
- package/dist-es/commands/StartRxNormInferenceJobCommand.js +28 -21
- package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +28 -21
- package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +28 -21
- package/dist-es/commands/StopICD10CMInferenceJobCommand.js +28 -21
- package/dist-es/commands/StopPHIDetectionJobCommand.js +28 -21
- package/dist-es/commands/StopRxNormInferenceJobCommand.js +28 -21
- package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ComprehendMedicalServiceException.js +10 -5
- package/dist-es/models/models_0.js +171 -318
- package/dist-es/protocols/Aws_json1_1.js +2299 -1767
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ComprehendMedicalServiceException as __BaseException } from "./ComprehendMedicalServiceException";
|
|
2
3
|
export var EntityType;
|
|
3
4
|
(function (EntityType) {
|
|
@@ -92,97 +93,97 @@ export var LanguageCode;
|
|
|
92
93
|
(function (LanguageCode) {
|
|
93
94
|
LanguageCode["EN"] = "en";
|
|
94
95
|
})(LanguageCode || (LanguageCode = {}));
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
105
|
-
this.Message = opts.Message;
|
|
96
|
+
var InternalServerException = (function (_super) {
|
|
97
|
+
__extends(InternalServerException, _super);
|
|
98
|
+
function InternalServerException(opts) {
|
|
99
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
100
|
+
_this.name = "InternalServerException";
|
|
101
|
+
_this.$fault = "server";
|
|
102
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
103
|
+
_this.Message = opts.Message;
|
|
104
|
+
return _this;
|
|
106
105
|
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
106
|
+
return InternalServerException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { InternalServerException };
|
|
109
|
+
var InvalidRequestException = (function (_super) {
|
|
110
|
+
__extends(InvalidRequestException, _super);
|
|
111
|
+
function InvalidRequestException(opts) {
|
|
112
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
113
|
+
_this.name = "InvalidRequestException";
|
|
114
|
+
_this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
116
|
+
_this.Message = opts.Message;
|
|
117
|
+
return _this;
|
|
119
118
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
119
|
+
return InvalidRequestException;
|
|
120
|
+
}(__BaseException));
|
|
121
|
+
export { InvalidRequestException };
|
|
122
|
+
var ResourceNotFoundException = (function (_super) {
|
|
123
|
+
__extends(ResourceNotFoundException, _super);
|
|
124
|
+
function ResourceNotFoundException(opts) {
|
|
125
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
126
|
+
_this.name = "ResourceNotFoundException";
|
|
127
|
+
_this.$fault = "client";
|
|
128
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
129
|
+
_this.Message = opts.Message;
|
|
130
|
+
return _this;
|
|
132
131
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
132
|
+
return ResourceNotFoundException;
|
|
133
|
+
}(__BaseException));
|
|
134
|
+
export { ResourceNotFoundException };
|
|
135
|
+
var TooManyRequestsException = (function (_super) {
|
|
136
|
+
__extends(TooManyRequestsException, _super);
|
|
137
|
+
function TooManyRequestsException(opts) {
|
|
138
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
139
|
+
_this.name = "TooManyRequestsException";
|
|
140
|
+
_this.$fault = "client";
|
|
141
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
142
|
+
_this.Message = opts.Message;
|
|
143
|
+
return _this;
|
|
145
144
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
145
|
+
return TooManyRequestsException;
|
|
146
|
+
}(__BaseException));
|
|
147
|
+
export { TooManyRequestsException };
|
|
148
|
+
var InvalidEncodingException = (function (_super) {
|
|
149
|
+
__extends(InvalidEncodingException, _super);
|
|
150
|
+
function InvalidEncodingException(opts) {
|
|
151
|
+
var _this = _super.call(this, __assign({ name: "InvalidEncodingException", $fault: "client" }, opts)) || this;
|
|
152
|
+
_this.name = "InvalidEncodingException";
|
|
153
|
+
_this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(_this, InvalidEncodingException.prototype);
|
|
155
|
+
_this.Message = opts.Message;
|
|
156
|
+
return _this;
|
|
158
157
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
158
|
+
return InvalidEncodingException;
|
|
159
|
+
}(__BaseException));
|
|
160
|
+
export { InvalidEncodingException };
|
|
161
|
+
var ServiceUnavailableException = (function (_super) {
|
|
162
|
+
__extends(ServiceUnavailableException, _super);
|
|
163
|
+
function ServiceUnavailableException(opts) {
|
|
164
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
165
|
+
_this.name = "ServiceUnavailableException";
|
|
166
|
+
_this.$fault = "server";
|
|
167
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
168
|
+
_this.Message = opts.Message;
|
|
169
|
+
return _this;
|
|
171
170
|
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
171
|
+
return ServiceUnavailableException;
|
|
172
|
+
}(__BaseException));
|
|
173
|
+
export { ServiceUnavailableException };
|
|
174
|
+
var TextSizeLimitExceededException = (function (_super) {
|
|
175
|
+
__extends(TextSizeLimitExceededException, _super);
|
|
176
|
+
function TextSizeLimitExceededException(opts) {
|
|
177
|
+
var _this = _super.call(this, __assign({ name: "TextSizeLimitExceededException", $fault: "client" }, opts)) || this;
|
|
178
|
+
_this.name = "TextSizeLimitExceededException";
|
|
179
|
+
_this.$fault = "client";
|
|
180
|
+
Object.setPrototypeOf(_this, TextSizeLimitExceededException.prototype);
|
|
181
|
+
_this.Message = opts.Message;
|
|
182
|
+
return _this;
|
|
184
183
|
}
|
|
185
|
-
|
|
184
|
+
return TextSizeLimitExceededException;
|
|
185
|
+
}(__BaseException));
|
|
186
|
+
export { TextSizeLimitExceededException };
|
|
186
187
|
export var ICD10CMEntityType;
|
|
187
188
|
(function (ICD10CMEntityType) {
|
|
188
189
|
ICD10CMEntityType["DX_NAME"] = "DX_NAME";
|
|
@@ -275,238 +276,90 @@ export var SNOMEDCTEntityType;
|
|
|
275
276
|
SNOMEDCTEntityType["TEST_NAME"] = "TEST_NAME";
|
|
276
277
|
SNOMEDCTEntityType["TREATMENT_NAME"] = "TREATMENT_NAME";
|
|
277
278
|
})(SNOMEDCTEntityType || (SNOMEDCTEntityType = {}));
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
288
|
-
this.Message = opts.Message;
|
|
279
|
+
var ValidationException = (function (_super) {
|
|
280
|
+
__extends(ValidationException, _super);
|
|
281
|
+
function ValidationException(opts) {
|
|
282
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
283
|
+
_this.name = "ValidationException";
|
|
284
|
+
_this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
286
|
+
_this.Message = opts.Message;
|
|
287
|
+
return _this;
|
|
289
288
|
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
});
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
});
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
});
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
});
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
});
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
});
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
});
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
});
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
});
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
});
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
});
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
});
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
});
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
});
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
});
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
});
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
});
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
});
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
});
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
});
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
});
|
|
366
|
-
export
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const ICD10CMAttributeFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const ICD10CMConceptFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const ICD10CMEntityFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const InferICD10CMResponseFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const InferRxNormRequestFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const RxNormTraitFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const RxNormAttributeFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const RxNormConceptFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const RxNormEntityFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const InferRxNormResponseFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const InferSNOMEDCTRequestFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const SNOMEDCTConceptFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const SNOMEDCTTraitFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const SNOMEDCTAttributeFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const SNOMEDCTEntityFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const SNOMEDCTDetailsFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const InferSNOMEDCTResponseFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const ComprehendMedicalAsyncJobFilterFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const ListEntitiesDetectionV2JobsRequestFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const ListEntitiesDetectionV2JobsResponseFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const ListICD10CMInferenceJobsRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const ListICD10CMInferenceJobsResponseFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const ListPHIDetectionJobsRequestFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const ListPHIDetectionJobsResponseFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const ListRxNormInferenceJobsRequestFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const ListRxNormInferenceJobsResponseFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
447
|
-
export const ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
});
|
|
450
|
-
export const ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
});
|
|
453
|
-
export const StartEntitiesDetectionV2JobRequestFilterSensitiveLog = (obj) => ({
|
|
454
|
-
...obj,
|
|
455
|
-
});
|
|
456
|
-
export const StartEntitiesDetectionV2JobResponseFilterSensitiveLog = (obj) => ({
|
|
457
|
-
...obj,
|
|
458
|
-
});
|
|
459
|
-
export const StartICD10CMInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
460
|
-
...obj,
|
|
461
|
-
});
|
|
462
|
-
export const StartICD10CMInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
463
|
-
...obj,
|
|
464
|
-
});
|
|
465
|
-
export const StartPHIDetectionJobRequestFilterSensitiveLog = (obj) => ({
|
|
466
|
-
...obj,
|
|
467
|
-
});
|
|
468
|
-
export const StartPHIDetectionJobResponseFilterSensitiveLog = (obj) => ({
|
|
469
|
-
...obj,
|
|
470
|
-
});
|
|
471
|
-
export const StartRxNormInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
472
|
-
...obj,
|
|
473
|
-
});
|
|
474
|
-
export const StartRxNormInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
475
|
-
...obj,
|
|
476
|
-
});
|
|
477
|
-
export const StartSNOMEDCTInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
});
|
|
480
|
-
export const StartSNOMEDCTInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
481
|
-
...obj,
|
|
482
|
-
});
|
|
483
|
-
export const StopEntitiesDetectionV2JobRequestFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
});
|
|
486
|
-
export const StopEntitiesDetectionV2JobResponseFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
});
|
|
489
|
-
export const StopICD10CMInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
490
|
-
...obj,
|
|
491
|
-
});
|
|
492
|
-
export const StopICD10CMInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
493
|
-
...obj,
|
|
494
|
-
});
|
|
495
|
-
export const StopPHIDetectionJobRequestFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
});
|
|
498
|
-
export const StopPHIDetectionJobResponseFilterSensitiveLog = (obj) => ({
|
|
499
|
-
...obj,
|
|
500
|
-
});
|
|
501
|
-
export const StopRxNormInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
502
|
-
...obj,
|
|
503
|
-
});
|
|
504
|
-
export const StopRxNormInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
505
|
-
...obj,
|
|
506
|
-
});
|
|
507
|
-
export const StopSNOMEDCTInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
508
|
-
...obj,
|
|
509
|
-
});
|
|
510
|
-
export const StopSNOMEDCTInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
511
|
-
...obj,
|
|
512
|
-
});
|
|
289
|
+
return ValidationException;
|
|
290
|
+
}(__BaseException));
|
|
291
|
+
export { ValidationException };
|
|
292
|
+
export var TraitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var AttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var CharactersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var InputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var OutputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var DescribeICD10CMInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var DescribeICD10CMInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var DescribePHIDetectionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var DescribePHIDetectionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var DescribeRxNormInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var DescribeRxNormInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var DetectEntitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var EntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var UnmappedAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var DetectEntitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var DetectEntitiesV2RequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var DetectEntitiesV2ResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var DetectPHIRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var DetectPHIResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var InferICD10CMRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var ICD10CMTraitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var ICD10CMAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var ICD10CMConceptFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var ICD10CMEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var InferICD10CMResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var InferRxNormRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var RxNormTraitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var RxNormAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var RxNormConceptFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var RxNormEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var InferRxNormResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var InferSNOMEDCTRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var SNOMEDCTConceptFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var SNOMEDCTTraitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var SNOMEDCTAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var SNOMEDCTEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var SNOMEDCTDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var InferSNOMEDCTResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var ComprehendMedicalAsyncJobFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var ListEntitiesDetectionV2JobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var ListEntitiesDetectionV2JobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var ListICD10CMInferenceJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var ListICD10CMInferenceJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var ListPHIDetectionJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var ListPHIDetectionJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var ListRxNormInferenceJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var ListRxNormInferenceJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var ListSNOMEDCTInferenceJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var ListSNOMEDCTInferenceJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var StartEntitiesDetectionV2JobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var StartEntitiesDetectionV2JobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var StartICD10CMInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var StartICD10CMInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var StartPHIDetectionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var StartPHIDetectionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var StartRxNormInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var StartRxNormInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var StartSNOMEDCTInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var StartSNOMEDCTInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var StopEntitiesDetectionV2JobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var StopEntitiesDetectionV2JobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var StopICD10CMInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var StopICD10CMInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var StopPHIDetectionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var StopPHIDetectionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var StopRxNormInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var StopRxNormInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var StopSNOMEDCTInferenceJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var StopSNOMEDCTInferenceJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|