@aws-sdk/client-comprehendmedical 3.181.0 → 3.183.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 +8 -0
- package/dist-es/ComprehendMedical.js +106 -113
- package/dist-es/ComprehendMedicalClient.js +22 -28
- package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +21 -28
- package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +21 -28
- package/dist-es/commands/DescribePHIDetectionJobCommand.js +21 -28
- package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +21 -28
- package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +21 -28
- package/dist-es/commands/DetectEntitiesCommand.js +21 -28
- package/dist-es/commands/DetectEntitiesV2Command.js +21 -28
- package/dist-es/commands/DetectPHICommand.js +21 -28
- package/dist-es/commands/InferICD10CMCommand.js +21 -28
- package/dist-es/commands/InferRxNormCommand.js +21 -28
- package/dist-es/commands/InferSNOMEDCTCommand.js +21 -28
- package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +21 -28
- package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +21 -28
- package/dist-es/commands/ListPHIDetectionJobsCommand.js +21 -28
- package/dist-es/commands/ListRxNormInferenceJobsCommand.js +21 -28
- package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +21 -28
- package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +21 -28
- package/dist-es/commands/StartICD10CMInferenceJobCommand.js +21 -28
- package/dist-es/commands/StartPHIDetectionJobCommand.js +21 -28
- package/dist-es/commands/StartRxNormInferenceJobCommand.js +21 -28
- package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +21 -28
- package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +21 -28
- package/dist-es/commands/StopICD10CMInferenceJobCommand.js +21 -28
- package/dist-es/commands/StopPHIDetectionJobCommand.js +21 -28
- package/dist-es/commands/StopRxNormInferenceJobCommand.js +21 -28
- package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ComprehendMedicalServiceException.js +5 -10
- package/dist-es/models/models_0.js +318 -171
- package/dist-es/protocols/Aws_json1_1.js +1767 -2299
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ComprehendMedicalServiceException as __BaseException } from "./ComprehendMedicalServiceException";
|
|
3
2
|
export var EntityType;
|
|
4
3
|
(function (EntityType) {
|
|
@@ -93,97 +92,97 @@ export var LanguageCode;
|
|
|
93
92
|
(function (LanguageCode) {
|
|
94
93
|
LanguageCode["EN"] = "en";
|
|
95
94
|
})(LanguageCode || (LanguageCode = {}));
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
95
|
+
export class InternalServerException extends __BaseException {
|
|
96
|
+
constructor(opts) {
|
|
97
|
+
super({
|
|
98
|
+
name: "InternalServerException",
|
|
99
|
+
$fault: "server",
|
|
100
|
+
...opts,
|
|
101
|
+
});
|
|
102
|
+
this.name = "InternalServerException";
|
|
103
|
+
this.$fault = "server";
|
|
104
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
105
|
+
this.Message = opts.Message;
|
|
105
106
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
107
|
+
}
|
|
108
|
+
export class InvalidRequestException extends __BaseException {
|
|
109
|
+
constructor(opts) {
|
|
110
|
+
super({
|
|
111
|
+
name: "InvalidRequestException",
|
|
112
|
+
$fault: "client",
|
|
113
|
+
...opts,
|
|
114
|
+
});
|
|
115
|
+
this.name = "InvalidRequestException";
|
|
116
|
+
this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
118
|
+
this.Message = opts.Message;
|
|
118
119
|
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
120
|
+
}
|
|
121
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
122
|
+
constructor(opts) {
|
|
123
|
+
super({
|
|
124
|
+
name: "ResourceNotFoundException",
|
|
125
|
+
$fault: "client",
|
|
126
|
+
...opts,
|
|
127
|
+
});
|
|
128
|
+
this.name = "ResourceNotFoundException";
|
|
129
|
+
this.$fault = "client";
|
|
130
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
131
|
+
this.Message = opts.Message;
|
|
131
132
|
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
133
|
+
}
|
|
134
|
+
export class TooManyRequestsException extends __BaseException {
|
|
135
|
+
constructor(opts) {
|
|
136
|
+
super({
|
|
137
|
+
name: "TooManyRequestsException",
|
|
138
|
+
$fault: "client",
|
|
139
|
+
...opts,
|
|
140
|
+
});
|
|
141
|
+
this.name = "TooManyRequestsException";
|
|
142
|
+
this.$fault = "client";
|
|
143
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
144
|
+
this.Message = opts.Message;
|
|
144
145
|
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
146
|
+
}
|
|
147
|
+
export class InvalidEncodingException extends __BaseException {
|
|
148
|
+
constructor(opts) {
|
|
149
|
+
super({
|
|
150
|
+
name: "InvalidEncodingException",
|
|
151
|
+
$fault: "client",
|
|
152
|
+
...opts,
|
|
153
|
+
});
|
|
154
|
+
this.name = "InvalidEncodingException";
|
|
155
|
+
this.$fault = "client";
|
|
156
|
+
Object.setPrototypeOf(this, InvalidEncodingException.prototype);
|
|
157
|
+
this.Message = opts.Message;
|
|
157
158
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
159
|
+
}
|
|
160
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ServiceUnavailableException",
|
|
164
|
+
$fault: "server",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
this.name = "ServiceUnavailableException";
|
|
168
|
+
this.$fault = "server";
|
|
169
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
170
|
+
this.Message = opts.Message;
|
|
170
171
|
}
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
172
|
+
}
|
|
173
|
+
export class TextSizeLimitExceededException extends __BaseException {
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "TextSizeLimitExceededException",
|
|
177
|
+
$fault: "client",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
this.name = "TextSizeLimitExceededException";
|
|
181
|
+
this.$fault = "client";
|
|
182
|
+
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
183
|
+
this.Message = opts.Message;
|
|
183
184
|
}
|
|
184
|
-
|
|
185
|
-
}(__BaseException));
|
|
186
|
-
export { TextSizeLimitExceededException };
|
|
185
|
+
}
|
|
187
186
|
export var ICD10CMEntityType;
|
|
188
187
|
(function (ICD10CMEntityType) {
|
|
189
188
|
ICD10CMEntityType["DX_NAME"] = "DX_NAME";
|
|
@@ -276,90 +275,238 @@ export var SNOMEDCTEntityType;
|
|
|
276
275
|
SNOMEDCTEntityType["TEST_NAME"] = "TEST_NAME";
|
|
277
276
|
SNOMEDCTEntityType["TREATMENT_NAME"] = "TREATMENT_NAME";
|
|
278
277
|
})(SNOMEDCTEntityType || (SNOMEDCTEntityType = {}));
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
278
|
+
export class ValidationException extends __BaseException {
|
|
279
|
+
constructor(opts) {
|
|
280
|
+
super({
|
|
281
|
+
name: "ValidationException",
|
|
282
|
+
$fault: "client",
|
|
283
|
+
...opts,
|
|
284
|
+
});
|
|
285
|
+
this.name = "ValidationException";
|
|
286
|
+
this.$fault = "client";
|
|
287
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
288
|
+
this.Message = opts.Message;
|
|
288
289
|
}
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
export
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
export
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
export
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
export
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
export
|
|
290
|
+
}
|
|
291
|
+
export const TraitFilterSensitiveLog = (obj) => ({
|
|
292
|
+
...obj,
|
|
293
|
+
});
|
|
294
|
+
export const AttributeFilterSensitiveLog = (obj) => ({
|
|
295
|
+
...obj,
|
|
296
|
+
});
|
|
297
|
+
export const CharactersFilterSensitiveLog = (obj) => ({
|
|
298
|
+
...obj,
|
|
299
|
+
});
|
|
300
|
+
export const DescribeEntitiesDetectionV2JobRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
+
...obj,
|
|
302
|
+
});
|
|
303
|
+
export const InputDataConfigFilterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
});
|
|
306
|
+
export const OutputDataConfigFilterSensitiveLog = (obj) => ({
|
|
307
|
+
...obj,
|
|
308
|
+
});
|
|
309
|
+
export const ComprehendMedicalAsyncJobPropertiesFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
export const DescribeEntitiesDetectionV2JobResponseFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
});
|
|
315
|
+
export const DescribeICD10CMInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
});
|
|
318
|
+
export const DescribeICD10CMInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
320
|
+
});
|
|
321
|
+
export const DescribePHIDetectionJobRequestFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
});
|
|
324
|
+
export const DescribePHIDetectionJobResponseFilterSensitiveLog = (obj) => ({
|
|
325
|
+
...obj,
|
|
326
|
+
});
|
|
327
|
+
export const DescribeRxNormInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
328
|
+
...obj,
|
|
329
|
+
});
|
|
330
|
+
export const DescribeRxNormInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
331
|
+
...obj,
|
|
332
|
+
});
|
|
333
|
+
export const DescribeSNOMEDCTInferenceJobRequestFilterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
});
|
|
336
|
+
export const DescribeSNOMEDCTInferenceJobResponseFilterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
});
|
|
339
|
+
export const DetectEntitiesRequestFilterSensitiveLog = (obj) => ({
|
|
340
|
+
...obj,
|
|
341
|
+
});
|
|
342
|
+
export const EntityFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
});
|
|
345
|
+
export const UnmappedAttributeFilterSensitiveLog = (obj) => ({
|
|
346
|
+
...obj,
|
|
347
|
+
});
|
|
348
|
+
export const DetectEntitiesResponseFilterSensitiveLog = (obj) => ({
|
|
349
|
+
...obj,
|
|
350
|
+
});
|
|
351
|
+
export const DetectEntitiesV2RequestFilterSensitiveLog = (obj) => ({
|
|
352
|
+
...obj,
|
|
353
|
+
});
|
|
354
|
+
export const DetectEntitiesV2ResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
+
...obj,
|
|
356
|
+
});
|
|
357
|
+
export const DetectPHIRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
});
|
|
360
|
+
export const DetectPHIResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
+
...obj,
|
|
362
|
+
});
|
|
363
|
+
export const InferICD10CMRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
+
...obj,
|
|
365
|
+
});
|
|
366
|
+
export const ICD10CMTraitFilterSensitiveLog = (obj) => ({
|
|
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
|
+
});
|