@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.
Files changed (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ComprehendMedical.js +106 -113
  3. package/dist-es/ComprehendMedicalClient.js +22 -28
  4. package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +21 -28
  5. package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +21 -28
  6. package/dist-es/commands/DescribePHIDetectionJobCommand.js +21 -28
  7. package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +21 -28
  8. package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +21 -28
  9. package/dist-es/commands/DetectEntitiesCommand.js +21 -28
  10. package/dist-es/commands/DetectEntitiesV2Command.js +21 -28
  11. package/dist-es/commands/DetectPHICommand.js +21 -28
  12. package/dist-es/commands/InferICD10CMCommand.js +21 -28
  13. package/dist-es/commands/InferRxNormCommand.js +21 -28
  14. package/dist-es/commands/InferSNOMEDCTCommand.js +21 -28
  15. package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +21 -28
  16. package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +21 -28
  17. package/dist-es/commands/ListPHIDetectionJobsCommand.js +21 -28
  18. package/dist-es/commands/ListRxNormInferenceJobsCommand.js +21 -28
  19. package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +21 -28
  20. package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +21 -28
  21. package/dist-es/commands/StartICD10CMInferenceJobCommand.js +21 -28
  22. package/dist-es/commands/StartPHIDetectionJobCommand.js +21 -28
  23. package/dist-es/commands/StartRxNormInferenceJobCommand.js +21 -28
  24. package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +21 -28
  25. package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +21 -28
  26. package/dist-es/commands/StopICD10CMInferenceJobCommand.js +21 -28
  27. package/dist-es/commands/StopPHIDetectionJobCommand.js +21 -28
  28. package/dist-es/commands/StopRxNormInferenceJobCommand.js +21 -28
  29. package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +21 -28
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/ComprehendMedicalServiceException.js +5 -10
  32. package/dist-es/models/models_0.js +318 -171
  33. package/dist-es/protocols/Aws_json1_1.js +1767 -2299
  34. package/dist-es/runtimeConfig.browser.js +26 -12
  35. package/dist-es/runtimeConfig.js +30 -12
  36. package/dist-es/runtimeConfig.native.js +8 -5
  37. package/dist-es/runtimeConfig.shared.js +8 -11
  38. 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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- return TextSizeLimitExceededException;
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
- 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;
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
- 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)); };
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
+ });