@aws-sdk/client-comprehendmedical 3.40.0 → 3.45.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 +38 -0
- package/README.md +1 -1
- package/dist-cjs/ComprehendMedical.js +75 -0
- package/dist-cjs/commands/DescribeSNOMEDCTInferenceJobCommand.js +36 -0
- package/dist-cjs/commands/InferSNOMEDCTCommand.js +36 -0
- package/dist-cjs/commands/ListSNOMEDCTInferenceJobsCommand.js +36 -0
- package/dist-cjs/commands/StartSNOMEDCTInferenceJobCommand.js +36 -0
- package/dist-cjs/commands/StopSNOMEDCTInferenceJobCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +142 -2
- package/dist-cjs/protocols/Aws_json1_1.js +646 -37
- package/dist-es/ComprehendMedical.js +75 -0
- package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +39 -0
- package/dist-es/commands/InferSNOMEDCTCommand.js +39 -0
- package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +39 -0
- package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +39 -0
- package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +107 -0
- package/dist-es/protocols/Aws_json1_1.js +667 -27
- package/dist-types/ComprehendMedical.d.ts +45 -1
- package/dist-types/ComprehendMedicalClient.d.ts +8 -3
- package/dist-types/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +37 -0
- package/dist-types/commands/DetectEntitiesCommand.d.ts +1 -1
- package/dist-types/commands/DetectEntitiesV2Command.d.ts +1 -1
- package/dist-types/commands/DetectPHICommand.d.ts +1 -1
- package/dist-types/commands/InferICD10CMCommand.d.ts +1 -1
- package/dist-types/commands/InferRxNormCommand.d.ts +1 -1
- package/dist-types/commands/InferSNOMEDCTCommand.d.ts +36 -0
- package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +1 -1
- package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +37 -0
- package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +1 -1
- package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +37 -0
- package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +1 -1
- package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +1 -1
- package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +1 -1
- package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +533 -26
- package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
- package/dist-types/ts3.4/ComprehendMedical.d.ts +25 -0
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +246 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +15 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-comprehendmedical
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-comprehendmedical
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
45
|
|
|
8
46
|
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
AWS SDK for JavaScript ComprehendMedical Client for Node.js, Browser and React Native.
|
|
9
9
|
|
|
10
|
-
<p>
|
|
10
|
+
<p> Comprehend Medical; extracts structured information from unstructured clinical text. Use these actions
|
|
11
11
|
to gain insight in your documents. </p>
|
|
12
12
|
|
|
13
13
|
## Installing
|
|
@@ -5,23 +5,28 @@ const DescribeEntitiesDetectionV2JobCommand_1 = require("./commands/DescribeEnti
|
|
|
5
5
|
const DescribeICD10CMInferenceJobCommand_1 = require("./commands/DescribeICD10CMInferenceJobCommand");
|
|
6
6
|
const DescribePHIDetectionJobCommand_1 = require("./commands/DescribePHIDetectionJobCommand");
|
|
7
7
|
const DescribeRxNormInferenceJobCommand_1 = require("./commands/DescribeRxNormInferenceJobCommand");
|
|
8
|
+
const DescribeSNOMEDCTInferenceJobCommand_1 = require("./commands/DescribeSNOMEDCTInferenceJobCommand");
|
|
8
9
|
const DetectEntitiesCommand_1 = require("./commands/DetectEntitiesCommand");
|
|
9
10
|
const DetectEntitiesV2Command_1 = require("./commands/DetectEntitiesV2Command");
|
|
10
11
|
const DetectPHICommand_1 = require("./commands/DetectPHICommand");
|
|
11
12
|
const InferICD10CMCommand_1 = require("./commands/InferICD10CMCommand");
|
|
12
13
|
const InferRxNormCommand_1 = require("./commands/InferRxNormCommand");
|
|
14
|
+
const InferSNOMEDCTCommand_1 = require("./commands/InferSNOMEDCTCommand");
|
|
13
15
|
const ListEntitiesDetectionV2JobsCommand_1 = require("./commands/ListEntitiesDetectionV2JobsCommand");
|
|
14
16
|
const ListICD10CMInferenceJobsCommand_1 = require("./commands/ListICD10CMInferenceJobsCommand");
|
|
15
17
|
const ListPHIDetectionJobsCommand_1 = require("./commands/ListPHIDetectionJobsCommand");
|
|
16
18
|
const ListRxNormInferenceJobsCommand_1 = require("./commands/ListRxNormInferenceJobsCommand");
|
|
19
|
+
const ListSNOMEDCTInferenceJobsCommand_1 = require("./commands/ListSNOMEDCTInferenceJobsCommand");
|
|
17
20
|
const StartEntitiesDetectionV2JobCommand_1 = require("./commands/StartEntitiesDetectionV2JobCommand");
|
|
18
21
|
const StartICD10CMInferenceJobCommand_1 = require("./commands/StartICD10CMInferenceJobCommand");
|
|
19
22
|
const StartPHIDetectionJobCommand_1 = require("./commands/StartPHIDetectionJobCommand");
|
|
20
23
|
const StartRxNormInferenceJobCommand_1 = require("./commands/StartRxNormInferenceJobCommand");
|
|
24
|
+
const StartSNOMEDCTInferenceJobCommand_1 = require("./commands/StartSNOMEDCTInferenceJobCommand");
|
|
21
25
|
const StopEntitiesDetectionV2JobCommand_1 = require("./commands/StopEntitiesDetectionV2JobCommand");
|
|
22
26
|
const StopICD10CMInferenceJobCommand_1 = require("./commands/StopICD10CMInferenceJobCommand");
|
|
23
27
|
const StopPHIDetectionJobCommand_1 = require("./commands/StopPHIDetectionJobCommand");
|
|
24
28
|
const StopRxNormInferenceJobCommand_1 = require("./commands/StopRxNormInferenceJobCommand");
|
|
29
|
+
const StopSNOMEDCTInferenceJobCommand_1 = require("./commands/StopSNOMEDCTInferenceJobCommand");
|
|
25
30
|
const ComprehendMedicalClient_1 = require("./ComprehendMedicalClient");
|
|
26
31
|
class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClient {
|
|
27
32
|
describeEntitiesDetectionV2Job(args, optionsOrCb, cb) {
|
|
@@ -80,6 +85,20 @@ class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClien
|
|
|
80
85
|
return this.send(command, optionsOrCb);
|
|
81
86
|
}
|
|
82
87
|
}
|
|
88
|
+
describeSNOMEDCTInferenceJob(args, optionsOrCb, cb) {
|
|
89
|
+
const command = new DescribeSNOMEDCTInferenceJobCommand_1.DescribeSNOMEDCTInferenceJobCommand(args);
|
|
90
|
+
if (typeof optionsOrCb === "function") {
|
|
91
|
+
this.send(command, optionsOrCb);
|
|
92
|
+
}
|
|
93
|
+
else if (typeof cb === "function") {
|
|
94
|
+
if (typeof optionsOrCb !== "object")
|
|
95
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
96
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
return this.send(command, optionsOrCb);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
83
102
|
detectEntities(args, optionsOrCb, cb) {
|
|
84
103
|
const command = new DetectEntitiesCommand_1.DetectEntitiesCommand(args);
|
|
85
104
|
if (typeof optionsOrCb === "function") {
|
|
@@ -150,6 +169,20 @@ class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClien
|
|
|
150
169
|
return this.send(command, optionsOrCb);
|
|
151
170
|
}
|
|
152
171
|
}
|
|
172
|
+
inferSNOMEDCT(args, optionsOrCb, cb) {
|
|
173
|
+
const command = new InferSNOMEDCTCommand_1.InferSNOMEDCTCommand(args);
|
|
174
|
+
if (typeof optionsOrCb === "function") {
|
|
175
|
+
this.send(command, optionsOrCb);
|
|
176
|
+
}
|
|
177
|
+
else if (typeof cb === "function") {
|
|
178
|
+
if (typeof optionsOrCb !== "object")
|
|
179
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
180
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
181
|
+
}
|
|
182
|
+
else {
|
|
183
|
+
return this.send(command, optionsOrCb);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
153
186
|
listEntitiesDetectionV2Jobs(args, optionsOrCb, cb) {
|
|
154
187
|
const command = new ListEntitiesDetectionV2JobsCommand_1.ListEntitiesDetectionV2JobsCommand(args);
|
|
155
188
|
if (typeof optionsOrCb === "function") {
|
|
@@ -206,6 +239,20 @@ class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClien
|
|
|
206
239
|
return this.send(command, optionsOrCb);
|
|
207
240
|
}
|
|
208
241
|
}
|
|
242
|
+
listSNOMEDCTInferenceJobs(args, optionsOrCb, cb) {
|
|
243
|
+
const command = new ListSNOMEDCTInferenceJobsCommand_1.ListSNOMEDCTInferenceJobsCommand(args);
|
|
244
|
+
if (typeof optionsOrCb === "function") {
|
|
245
|
+
this.send(command, optionsOrCb);
|
|
246
|
+
}
|
|
247
|
+
else if (typeof cb === "function") {
|
|
248
|
+
if (typeof optionsOrCb !== "object")
|
|
249
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
250
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
251
|
+
}
|
|
252
|
+
else {
|
|
253
|
+
return this.send(command, optionsOrCb);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
209
256
|
startEntitiesDetectionV2Job(args, optionsOrCb, cb) {
|
|
210
257
|
const command = new StartEntitiesDetectionV2JobCommand_1.StartEntitiesDetectionV2JobCommand(args);
|
|
211
258
|
if (typeof optionsOrCb === "function") {
|
|
@@ -262,6 +309,20 @@ class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClien
|
|
|
262
309
|
return this.send(command, optionsOrCb);
|
|
263
310
|
}
|
|
264
311
|
}
|
|
312
|
+
startSNOMEDCTInferenceJob(args, optionsOrCb, cb) {
|
|
313
|
+
const command = new StartSNOMEDCTInferenceJobCommand_1.StartSNOMEDCTInferenceJobCommand(args);
|
|
314
|
+
if (typeof optionsOrCb === "function") {
|
|
315
|
+
this.send(command, optionsOrCb);
|
|
316
|
+
}
|
|
317
|
+
else if (typeof cb === "function") {
|
|
318
|
+
if (typeof optionsOrCb !== "object")
|
|
319
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
320
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
321
|
+
}
|
|
322
|
+
else {
|
|
323
|
+
return this.send(command, optionsOrCb);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
265
326
|
stopEntitiesDetectionV2Job(args, optionsOrCb, cb) {
|
|
266
327
|
const command = new StopEntitiesDetectionV2JobCommand_1.StopEntitiesDetectionV2JobCommand(args);
|
|
267
328
|
if (typeof optionsOrCb === "function") {
|
|
@@ -318,5 +379,19 @@ class ComprehendMedical extends ComprehendMedicalClient_1.ComprehendMedicalClien
|
|
|
318
379
|
return this.send(command, optionsOrCb);
|
|
319
380
|
}
|
|
320
381
|
}
|
|
382
|
+
stopSNOMEDCTInferenceJob(args, optionsOrCb, cb) {
|
|
383
|
+
const command = new StopSNOMEDCTInferenceJobCommand_1.StopSNOMEDCTInferenceJobCommand(args);
|
|
384
|
+
if (typeof optionsOrCb === "function") {
|
|
385
|
+
this.send(command, optionsOrCb);
|
|
386
|
+
}
|
|
387
|
+
else if (typeof cb === "function") {
|
|
388
|
+
if (typeof optionsOrCb !== "object")
|
|
389
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
390
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
391
|
+
}
|
|
392
|
+
else {
|
|
393
|
+
return this.send(command, optionsOrCb);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
321
396
|
}
|
|
322
397
|
exports.ComprehendMedical = ComprehendMedical;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeSNOMEDCTInferenceJobCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DescribeSNOMEDCTInferenceJobCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ComprehendMedicalClient";
|
|
18
|
+
const commandName = "DescribeSNOMEDCTInferenceJobCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeSNOMEDCTInferenceJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeSNOMEDCTInferenceJobResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1DescribeSNOMEDCTInferenceJobCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1DescribeSNOMEDCTInferenceJobCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeSNOMEDCTInferenceJobCommand = DescribeSNOMEDCTInferenceJobCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InferSNOMEDCTCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class InferSNOMEDCTCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ComprehendMedicalClient";
|
|
18
|
+
const commandName = "InferSNOMEDCTCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.InferSNOMEDCTRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.InferSNOMEDCTResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1InferSNOMEDCTCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1InferSNOMEDCTCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.InferSNOMEDCTCommand = InferSNOMEDCTCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListSNOMEDCTInferenceJobsCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class ListSNOMEDCTInferenceJobsCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ComprehendMedicalClient";
|
|
18
|
+
const commandName = "ListSNOMEDCTInferenceJobsCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListSNOMEDCTInferenceJobsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListSNOMEDCTInferenceJobsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1ListSNOMEDCTInferenceJobsCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1ListSNOMEDCTInferenceJobsCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ListSNOMEDCTInferenceJobsCommand = ListSNOMEDCTInferenceJobsCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StartSNOMEDCTInferenceJobCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class StartSNOMEDCTInferenceJobCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ComprehendMedicalClient";
|
|
18
|
+
const commandName = "StartSNOMEDCTInferenceJobCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.StartSNOMEDCTInferenceJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.StartSNOMEDCTInferenceJobResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1StartSNOMEDCTInferenceJobCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1StartSNOMEDCTInferenceJobCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.StartSNOMEDCTInferenceJobCommand = StartSNOMEDCTInferenceJobCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StopSNOMEDCTInferenceJobCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class StopSNOMEDCTInferenceJobCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ComprehendMedicalClient";
|
|
18
|
+
const commandName = "StopSNOMEDCTInferenceJobCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.StopSNOMEDCTInferenceJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.StopSNOMEDCTInferenceJobResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1StopSNOMEDCTInferenceJobCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1StopSNOMEDCTInferenceJobCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.StopSNOMEDCTInferenceJobCommand = StopSNOMEDCTInferenceJobCommand;
|
|
@@ -5,20 +5,25 @@ tslib_1.__exportStar(require("./DescribeEntitiesDetectionV2JobCommand"), exports
|
|
|
5
5
|
tslib_1.__exportStar(require("./DescribeICD10CMInferenceJobCommand"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./DescribePHIDetectionJobCommand"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./DescribeRxNormInferenceJobCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./DescribeSNOMEDCTInferenceJobCommand"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./DetectEntitiesCommand"), exports);
|
|
9
10
|
tslib_1.__exportStar(require("./DetectEntitiesV2Command"), exports);
|
|
10
11
|
tslib_1.__exportStar(require("./DetectPHICommand"), exports);
|
|
11
12
|
tslib_1.__exportStar(require("./InferICD10CMCommand"), exports);
|
|
12
13
|
tslib_1.__exportStar(require("./InferRxNormCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./InferSNOMEDCTCommand"), exports);
|
|
13
15
|
tslib_1.__exportStar(require("./ListEntitiesDetectionV2JobsCommand"), exports);
|
|
14
16
|
tslib_1.__exportStar(require("./ListICD10CMInferenceJobsCommand"), exports);
|
|
15
17
|
tslib_1.__exportStar(require("./ListPHIDetectionJobsCommand"), exports);
|
|
16
18
|
tslib_1.__exportStar(require("./ListRxNormInferenceJobsCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./ListSNOMEDCTInferenceJobsCommand"), exports);
|
|
17
20
|
tslib_1.__exportStar(require("./StartEntitiesDetectionV2JobCommand"), exports);
|
|
18
21
|
tslib_1.__exportStar(require("./StartICD10CMInferenceJobCommand"), exports);
|
|
19
22
|
tslib_1.__exportStar(require("./StartPHIDetectionJobCommand"), exports);
|
|
20
23
|
tslib_1.__exportStar(require("./StartRxNormInferenceJobCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./StartSNOMEDCTInferenceJobCommand"), exports);
|
|
21
25
|
tslib_1.__exportStar(require("./StopEntitiesDetectionV2JobCommand"), exports);
|
|
22
26
|
tslib_1.__exportStar(require("./StopICD10CMInferenceJobCommand"), exports);
|
|
23
27
|
tslib_1.__exportStar(require("./StopPHIDetectionJobCommand"), exports);
|
|
24
28
|
tslib_1.__exportStar(require("./StopRxNormInferenceJobCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./StopSNOMEDCTInferenceJobCommand"), exports);
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -63,6 +63,7 @@ const partitionHash = {
|
|
|
63
63
|
"ap-south-1",
|
|
64
64
|
"ap-southeast-1",
|
|
65
65
|
"ap-southeast-2",
|
|
66
|
+
"ap-southeast-3",
|
|
66
67
|
"ca-central-1",
|
|
67
68
|
"eu-central-1",
|
|
68
69
|
"eu-north-1",
|
|
@@ -130,6 +131,10 @@ const partitionHash = {
|
|
|
130
131
|
hostname: "comprehendmedical.{region}.c2s.ic.gov",
|
|
131
132
|
tags: [],
|
|
132
133
|
},
|
|
134
|
+
{
|
|
135
|
+
hostname: "comprehendmedical-fips.{region}.c2s.ic.gov",
|
|
136
|
+
tags: ["fips"],
|
|
137
|
+
},
|
|
133
138
|
],
|
|
134
139
|
},
|
|
135
140
|
"aws-iso-b": {
|
|
@@ -140,6 +145,10 @@ const partitionHash = {
|
|
|
140
145
|
hostname: "comprehendmedical.{region}.sc2s.sgov.gov",
|
|
141
146
|
tags: [],
|
|
142
147
|
},
|
|
148
|
+
{
|
|
149
|
+
hostname: "comprehendmedical-fips.{region}.sc2s.sgov.gov",
|
|
150
|
+
tags: ["fips"],
|
|
151
|
+
},
|
|
143
152
|
],
|
|
144
153
|
},
|
|
145
154
|
"aws-us-gov": {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.StopRxNormInferenceJobResponse = exports.StopRxNormInferenceJobRequest = exports.StopPHIDetectionJobResponse = exports.StopPHIDetectionJobRequest = exports.StopICD10CMInferenceJobResponse = exports.StopICD10CMInferenceJobRequest = exports.StopEntitiesDetectionV2JobResponse = exports.StopEntitiesDetectionV2JobRequest = exports.StartRxNormInferenceJobResponse = exports.StartRxNormInferenceJobRequest = exports.StartPHIDetectionJobResponse = exports.StartPHIDetectionJobRequest = exports.StartICD10CMInferenceJobResponse = exports.StartICD10CMInferenceJobRequest = exports.StartEntitiesDetectionV2JobResponse = exports.StartEntitiesDetectionV2JobRequest = exports.ListRxNormInferenceJobsResponse = exports.ListRxNormInferenceJobsRequest = exports.ListPHIDetectionJobsResponse = exports.ListPHIDetectionJobsRequest = exports.ListICD10CMInferenceJobsResponse = exports.ListICD10CMInferenceJobsRequest = exports.ValidationException = exports.ListEntitiesDetectionV2JobsResponse = exports.ListEntitiesDetectionV2JobsRequest = exports.ComprehendMedicalAsyncJobFilter = exports.InferRxNormResponse = exports.RxNormEntity = exports.RxNormEntityType = exports.RxNormConcept = exports.RxNormEntityCategory = void 0;
|
|
3
|
+
exports.RxNormTraitName = exports.InferRxNormRequest = exports.InferICD10CMResponse = exports.ICD10CMEntity = exports.ICD10CMConcept = exports.ICD10CMEntityCategory = exports.ICD10CMAttribute = exports.ICD10CMAttributeType = exports.ICD10CMTrait = exports.ICD10CMTraitName = exports.ICD10CMRelationshipType = exports.ICD10CMEntityType = exports.InferICD10CMRequest = exports.DetectPHIResponse = exports.DetectPHIRequest = exports.DetectEntitiesV2Response = exports.DetectEntitiesV2Request = exports.TextSizeLimitExceededException = exports.ServiceUnavailableException = exports.InvalidEncodingException = exports.DetectEntitiesResponse = exports.UnmappedAttribute = exports.Entity = exports.DetectEntitiesRequest = exports.DescribeSNOMEDCTInferenceJobResponse = exports.DescribeSNOMEDCTInferenceJobRequest = exports.DescribeRxNormInferenceJobResponse = exports.DescribeRxNormInferenceJobRequest = exports.DescribePHIDetectionJobResponse = exports.DescribePHIDetectionJobRequest = exports.DescribeICD10CMInferenceJobResponse = exports.DescribeICD10CMInferenceJobRequest = exports.TooManyRequestsException = exports.ResourceNotFoundException = exports.InvalidRequestException = exports.InternalServerException = exports.DescribeEntitiesDetectionV2JobResponse = exports.ComprehendMedicalAsyncJobProperties = exports.OutputDataConfig = exports.LanguageCode = exports.JobStatus = exports.InputDataConfig = exports.DescribeEntitiesDetectionV2JobRequest = exports.Characters = exports.Attribute = exports.EntitySubType = exports.Trait = exports.AttributeName = exports.RelationshipType = exports.EntityType = void 0;
|
|
4
|
+
exports.StopRxNormInferenceJobResponse = exports.StopRxNormInferenceJobRequest = exports.StopPHIDetectionJobResponse = exports.StopPHIDetectionJobRequest = exports.StopICD10CMInferenceJobResponse = exports.StopICD10CMInferenceJobRequest = exports.StopEntitiesDetectionV2JobResponse = exports.StopEntitiesDetectionV2JobRequest = exports.StartSNOMEDCTInferenceJobResponse = exports.StartSNOMEDCTInferenceJobRequest = exports.StartRxNormInferenceJobResponse = exports.StartRxNormInferenceJobRequest = exports.StartPHIDetectionJobResponse = exports.StartPHIDetectionJobRequest = exports.StartICD10CMInferenceJobResponse = exports.StartICD10CMInferenceJobRequest = exports.StartEntitiesDetectionV2JobResponse = exports.StartEntitiesDetectionV2JobRequest = exports.ListSNOMEDCTInferenceJobsResponse = exports.ListSNOMEDCTInferenceJobsRequest = exports.ListRxNormInferenceJobsResponse = exports.ListRxNormInferenceJobsRequest = exports.ListPHIDetectionJobsResponse = exports.ListPHIDetectionJobsRequest = exports.ListICD10CMInferenceJobsResponse = exports.ListICD10CMInferenceJobsRequest = exports.ValidationException = exports.ListEntitiesDetectionV2JobsResponse = exports.ListEntitiesDetectionV2JobsRequest = exports.ComprehendMedicalAsyncJobFilter = exports.InferSNOMEDCTResponse = exports.SNOMEDCTDetails = exports.SNOMEDCTEntity = exports.SNOMEDCTEntityType = exports.SNOMEDCTAttribute = exports.SNOMEDCTAttributeType = exports.SNOMEDCTTrait = exports.SNOMEDCTTraitName = exports.SNOMEDCTConcept = exports.SNOMEDCTRelationshipType = exports.SNOMEDCTEntityCategory = exports.InferSNOMEDCTRequest = exports.InferRxNormResponse = exports.RxNormEntity = exports.RxNormEntityType = exports.RxNormConcept = exports.RxNormEntityCategory = exports.RxNormAttribute = exports.RxNormAttributeType = exports.RxNormTrait = void 0;
|
|
5
|
+
exports.StopSNOMEDCTInferenceJobResponse = exports.StopSNOMEDCTInferenceJobRequest = void 0;
|
|
5
6
|
var EntityType;
|
|
6
7
|
(function (EntityType) {
|
|
7
8
|
EntityType["ANATOMY"] = "ANATOMY";
|
|
@@ -28,6 +29,7 @@ var RelationshipType;
|
|
|
28
29
|
RelationshipType["ROUTE_OR_MODE"] = "ROUTE_OR_MODE";
|
|
29
30
|
RelationshipType["STRENGTH"] = "STRENGTH";
|
|
30
31
|
RelationshipType["SYSTEM_ORGAN_SITE"] = "SYSTEM_ORGAN_SITE";
|
|
32
|
+
RelationshipType["TEST_UNIT"] = "TEST_UNIT";
|
|
31
33
|
RelationshipType["TEST_UNITS"] = "TEST_UNITS";
|
|
32
34
|
RelationshipType["TEST_VALUE"] = "TEST_VALUE";
|
|
33
35
|
RelationshipType["WITH_DOSAGE"] = "WITH_DOSAGE";
|
|
@@ -56,12 +58,15 @@ var EntitySubType;
|
|
|
56
58
|
EntitySubType["DIRECTION"] = "DIRECTION";
|
|
57
59
|
EntitySubType["DOSAGE"] = "DOSAGE";
|
|
58
60
|
EntitySubType["DURATION"] = "DURATION";
|
|
61
|
+
EntitySubType["DX_NAME"] = "DX_NAME";
|
|
59
62
|
EntitySubType["EMAIL"] = "EMAIL";
|
|
60
63
|
EntitySubType["FORM"] = "FORM";
|
|
61
64
|
EntitySubType["FREQUENCY"] = "FREQUENCY";
|
|
62
65
|
EntitySubType["GENERIC_NAME"] = "GENERIC_NAME";
|
|
66
|
+
EntitySubType["ID"] = "ID";
|
|
63
67
|
EntitySubType["IDENTIFIER"] = "IDENTIFIER";
|
|
64
68
|
EntitySubType["NAME"] = "NAME";
|
|
69
|
+
EntitySubType["PHONE_OR_FAX"] = "PHONE_OR_FAX";
|
|
65
70
|
EntitySubType["PROCEDURE_NAME"] = "PROCEDURE_NAME";
|
|
66
71
|
EntitySubType["PROFESSION"] = "PROFESSION";
|
|
67
72
|
EntitySubType["QUALITY"] = "QUALITY";
|
|
@@ -71,6 +76,7 @@ var EntitySubType;
|
|
|
71
76
|
EntitySubType["STRENGTH"] = "STRENGTH";
|
|
72
77
|
EntitySubType["SYSTEM_ORGAN_SITE"] = "SYSTEM_ORGAN_SITE";
|
|
73
78
|
EntitySubType["TEST_NAME"] = "TEST_NAME";
|
|
79
|
+
EntitySubType["TEST_UNIT"] = "TEST_UNIT";
|
|
74
80
|
EntitySubType["TEST_UNITS"] = "TEST_UNITS";
|
|
75
81
|
EntitySubType["TEST_VALUE"] = "TEST_VALUE";
|
|
76
82
|
EntitySubType["TIME_EXPRESSION"] = "TIME_EXPRESSION";
|
|
@@ -88,6 +94,12 @@ var Attribute;
|
|
|
88
94
|
...obj,
|
|
89
95
|
});
|
|
90
96
|
})(Attribute = exports.Attribute || (exports.Attribute = {}));
|
|
97
|
+
var Characters;
|
|
98
|
+
(function (Characters) {
|
|
99
|
+
Characters.filterSensitiveLog = (obj) => ({
|
|
100
|
+
...obj,
|
|
101
|
+
});
|
|
102
|
+
})(Characters = exports.Characters || (exports.Characters = {}));
|
|
91
103
|
var DescribeEntitiesDetectionV2JobRequest;
|
|
92
104
|
(function (DescribeEntitiesDetectionV2JobRequest) {
|
|
93
105
|
DescribeEntitiesDetectionV2JobRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -192,6 +204,18 @@ var DescribeRxNormInferenceJobResponse;
|
|
|
192
204
|
...obj,
|
|
193
205
|
});
|
|
194
206
|
})(DescribeRxNormInferenceJobResponse = exports.DescribeRxNormInferenceJobResponse || (exports.DescribeRxNormInferenceJobResponse = {}));
|
|
207
|
+
var DescribeSNOMEDCTInferenceJobRequest;
|
|
208
|
+
(function (DescribeSNOMEDCTInferenceJobRequest) {
|
|
209
|
+
DescribeSNOMEDCTInferenceJobRequest.filterSensitiveLog = (obj) => ({
|
|
210
|
+
...obj,
|
|
211
|
+
});
|
|
212
|
+
})(DescribeSNOMEDCTInferenceJobRequest = exports.DescribeSNOMEDCTInferenceJobRequest || (exports.DescribeSNOMEDCTInferenceJobRequest = {}));
|
|
213
|
+
var DescribeSNOMEDCTInferenceJobResponse;
|
|
214
|
+
(function (DescribeSNOMEDCTInferenceJobResponse) {
|
|
215
|
+
DescribeSNOMEDCTInferenceJobResponse.filterSensitiveLog = (obj) => ({
|
|
216
|
+
...obj,
|
|
217
|
+
});
|
|
218
|
+
})(DescribeSNOMEDCTInferenceJobResponse = exports.DescribeSNOMEDCTInferenceJobResponse || (exports.DescribeSNOMEDCTInferenceJobResponse = {}));
|
|
195
219
|
var DetectEntitiesRequest;
|
|
196
220
|
(function (DetectEntitiesRequest) {
|
|
197
221
|
DetectEntitiesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -384,6 +408,86 @@ var InferRxNormResponse;
|
|
|
384
408
|
...obj,
|
|
385
409
|
});
|
|
386
410
|
})(InferRxNormResponse = exports.InferRxNormResponse || (exports.InferRxNormResponse = {}));
|
|
411
|
+
var InferSNOMEDCTRequest;
|
|
412
|
+
(function (InferSNOMEDCTRequest) {
|
|
413
|
+
InferSNOMEDCTRequest.filterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
})(InferSNOMEDCTRequest = exports.InferSNOMEDCTRequest || (exports.InferSNOMEDCTRequest = {}));
|
|
417
|
+
var SNOMEDCTEntityCategory;
|
|
418
|
+
(function (SNOMEDCTEntityCategory) {
|
|
419
|
+
SNOMEDCTEntityCategory["ANATOMY"] = "ANATOMY";
|
|
420
|
+
SNOMEDCTEntityCategory["MEDICAL_CONDITION"] = "MEDICAL_CONDITION";
|
|
421
|
+
SNOMEDCTEntityCategory["TEST_TREATMENT_PROCEDURE"] = "TEST_TREATMENT_PROCEDURE";
|
|
422
|
+
})(SNOMEDCTEntityCategory = exports.SNOMEDCTEntityCategory || (exports.SNOMEDCTEntityCategory = {}));
|
|
423
|
+
var SNOMEDCTRelationshipType;
|
|
424
|
+
(function (SNOMEDCTRelationshipType) {
|
|
425
|
+
SNOMEDCTRelationshipType["ACUITY"] = "ACUITY";
|
|
426
|
+
SNOMEDCTRelationshipType["DIRECTION"] = "DIRECTION";
|
|
427
|
+
SNOMEDCTRelationshipType["QUALITY"] = "QUALITY";
|
|
428
|
+
SNOMEDCTRelationshipType["SYSTEM_ORGAN_SITE"] = "SYSTEM_ORGAN_SITE";
|
|
429
|
+
SNOMEDCTRelationshipType["TEST_UNITS"] = "TEST_UNITS";
|
|
430
|
+
SNOMEDCTRelationshipType["TEST_VALUE"] = "TEST_VALUE";
|
|
431
|
+
})(SNOMEDCTRelationshipType = exports.SNOMEDCTRelationshipType || (exports.SNOMEDCTRelationshipType = {}));
|
|
432
|
+
var SNOMEDCTConcept;
|
|
433
|
+
(function (SNOMEDCTConcept) {
|
|
434
|
+
SNOMEDCTConcept.filterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
});
|
|
437
|
+
})(SNOMEDCTConcept = exports.SNOMEDCTConcept || (exports.SNOMEDCTConcept = {}));
|
|
438
|
+
var SNOMEDCTTraitName;
|
|
439
|
+
(function (SNOMEDCTTraitName) {
|
|
440
|
+
SNOMEDCTTraitName["DIAGNOSIS"] = "DIAGNOSIS";
|
|
441
|
+
SNOMEDCTTraitName["NEGATION"] = "NEGATION";
|
|
442
|
+
SNOMEDCTTraitName["SIGN"] = "SIGN";
|
|
443
|
+
SNOMEDCTTraitName["SYMPTOM"] = "SYMPTOM";
|
|
444
|
+
})(SNOMEDCTTraitName = exports.SNOMEDCTTraitName || (exports.SNOMEDCTTraitName = {}));
|
|
445
|
+
var SNOMEDCTTrait;
|
|
446
|
+
(function (SNOMEDCTTrait) {
|
|
447
|
+
SNOMEDCTTrait.filterSensitiveLog = (obj) => ({
|
|
448
|
+
...obj,
|
|
449
|
+
});
|
|
450
|
+
})(SNOMEDCTTrait = exports.SNOMEDCTTrait || (exports.SNOMEDCTTrait = {}));
|
|
451
|
+
var SNOMEDCTAttributeType;
|
|
452
|
+
(function (SNOMEDCTAttributeType) {
|
|
453
|
+
SNOMEDCTAttributeType["ACUITY"] = "ACUITY";
|
|
454
|
+
SNOMEDCTAttributeType["DIRECTION"] = "DIRECTION";
|
|
455
|
+
SNOMEDCTAttributeType["QUALITY"] = "QUALITY";
|
|
456
|
+
SNOMEDCTAttributeType["SYSTEM_ORGAN_SITE"] = "SYSTEM_ORGAN_SITE";
|
|
457
|
+
SNOMEDCTAttributeType["TEST_UNIT"] = "TEST_UNIT";
|
|
458
|
+
SNOMEDCTAttributeType["TEST_VALUE"] = "TEST_VALUE";
|
|
459
|
+
})(SNOMEDCTAttributeType = exports.SNOMEDCTAttributeType || (exports.SNOMEDCTAttributeType = {}));
|
|
460
|
+
var SNOMEDCTAttribute;
|
|
461
|
+
(function (SNOMEDCTAttribute) {
|
|
462
|
+
SNOMEDCTAttribute.filterSensitiveLog = (obj) => ({
|
|
463
|
+
...obj,
|
|
464
|
+
});
|
|
465
|
+
})(SNOMEDCTAttribute = exports.SNOMEDCTAttribute || (exports.SNOMEDCTAttribute = {}));
|
|
466
|
+
var SNOMEDCTEntityType;
|
|
467
|
+
(function (SNOMEDCTEntityType) {
|
|
468
|
+
SNOMEDCTEntityType["DX_NAME"] = "DX_NAME";
|
|
469
|
+
SNOMEDCTEntityType["PROCEDURE_NAME"] = "PROCEDURE_NAME";
|
|
470
|
+
SNOMEDCTEntityType["TEST_NAME"] = "TEST_NAME";
|
|
471
|
+
SNOMEDCTEntityType["TREATMENT_NAME"] = "TREATMENT_NAME";
|
|
472
|
+
})(SNOMEDCTEntityType = exports.SNOMEDCTEntityType || (exports.SNOMEDCTEntityType = {}));
|
|
473
|
+
var SNOMEDCTEntity;
|
|
474
|
+
(function (SNOMEDCTEntity) {
|
|
475
|
+
SNOMEDCTEntity.filterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
});
|
|
478
|
+
})(SNOMEDCTEntity = exports.SNOMEDCTEntity || (exports.SNOMEDCTEntity = {}));
|
|
479
|
+
var SNOMEDCTDetails;
|
|
480
|
+
(function (SNOMEDCTDetails) {
|
|
481
|
+
SNOMEDCTDetails.filterSensitiveLog = (obj) => ({
|
|
482
|
+
...obj,
|
|
483
|
+
});
|
|
484
|
+
})(SNOMEDCTDetails = exports.SNOMEDCTDetails || (exports.SNOMEDCTDetails = {}));
|
|
485
|
+
var InferSNOMEDCTResponse;
|
|
486
|
+
(function (InferSNOMEDCTResponse) {
|
|
487
|
+
InferSNOMEDCTResponse.filterSensitiveLog = (obj) => ({
|
|
488
|
+
...obj,
|
|
489
|
+
});
|
|
490
|
+
})(InferSNOMEDCTResponse = exports.InferSNOMEDCTResponse || (exports.InferSNOMEDCTResponse = {}));
|
|
387
491
|
var ComprehendMedicalAsyncJobFilter;
|
|
388
492
|
(function (ComprehendMedicalAsyncJobFilter) {
|
|
389
493
|
ComprehendMedicalAsyncJobFilter.filterSensitiveLog = (obj) => ({
|
|
@@ -444,6 +548,18 @@ var ListRxNormInferenceJobsResponse;
|
|
|
444
548
|
...obj,
|
|
445
549
|
});
|
|
446
550
|
})(ListRxNormInferenceJobsResponse = exports.ListRxNormInferenceJobsResponse || (exports.ListRxNormInferenceJobsResponse = {}));
|
|
551
|
+
var ListSNOMEDCTInferenceJobsRequest;
|
|
552
|
+
(function (ListSNOMEDCTInferenceJobsRequest) {
|
|
553
|
+
ListSNOMEDCTInferenceJobsRequest.filterSensitiveLog = (obj) => ({
|
|
554
|
+
...obj,
|
|
555
|
+
});
|
|
556
|
+
})(ListSNOMEDCTInferenceJobsRequest = exports.ListSNOMEDCTInferenceJobsRequest || (exports.ListSNOMEDCTInferenceJobsRequest = {}));
|
|
557
|
+
var ListSNOMEDCTInferenceJobsResponse;
|
|
558
|
+
(function (ListSNOMEDCTInferenceJobsResponse) {
|
|
559
|
+
ListSNOMEDCTInferenceJobsResponse.filterSensitiveLog = (obj) => ({
|
|
560
|
+
...obj,
|
|
561
|
+
});
|
|
562
|
+
})(ListSNOMEDCTInferenceJobsResponse = exports.ListSNOMEDCTInferenceJobsResponse || (exports.ListSNOMEDCTInferenceJobsResponse = {}));
|
|
447
563
|
var StartEntitiesDetectionV2JobRequest;
|
|
448
564
|
(function (StartEntitiesDetectionV2JobRequest) {
|
|
449
565
|
StartEntitiesDetectionV2JobRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -492,6 +608,18 @@ var StartRxNormInferenceJobResponse;
|
|
|
492
608
|
...obj,
|
|
493
609
|
});
|
|
494
610
|
})(StartRxNormInferenceJobResponse = exports.StartRxNormInferenceJobResponse || (exports.StartRxNormInferenceJobResponse = {}));
|
|
611
|
+
var StartSNOMEDCTInferenceJobRequest;
|
|
612
|
+
(function (StartSNOMEDCTInferenceJobRequest) {
|
|
613
|
+
StartSNOMEDCTInferenceJobRequest.filterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
});
|
|
616
|
+
})(StartSNOMEDCTInferenceJobRequest = exports.StartSNOMEDCTInferenceJobRequest || (exports.StartSNOMEDCTInferenceJobRequest = {}));
|
|
617
|
+
var StartSNOMEDCTInferenceJobResponse;
|
|
618
|
+
(function (StartSNOMEDCTInferenceJobResponse) {
|
|
619
|
+
StartSNOMEDCTInferenceJobResponse.filterSensitiveLog = (obj) => ({
|
|
620
|
+
...obj,
|
|
621
|
+
});
|
|
622
|
+
})(StartSNOMEDCTInferenceJobResponse = exports.StartSNOMEDCTInferenceJobResponse || (exports.StartSNOMEDCTInferenceJobResponse = {}));
|
|
495
623
|
var StopEntitiesDetectionV2JobRequest;
|
|
496
624
|
(function (StopEntitiesDetectionV2JobRequest) {
|
|
497
625
|
StopEntitiesDetectionV2JobRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -540,3 +668,15 @@ var StopRxNormInferenceJobResponse;
|
|
|
540
668
|
...obj,
|
|
541
669
|
});
|
|
542
670
|
})(StopRxNormInferenceJobResponse = exports.StopRxNormInferenceJobResponse || (exports.StopRxNormInferenceJobResponse = {}));
|
|
671
|
+
var StopSNOMEDCTInferenceJobRequest;
|
|
672
|
+
(function (StopSNOMEDCTInferenceJobRequest) {
|
|
673
|
+
StopSNOMEDCTInferenceJobRequest.filterSensitiveLog = (obj) => ({
|
|
674
|
+
...obj,
|
|
675
|
+
});
|
|
676
|
+
})(StopSNOMEDCTInferenceJobRequest = exports.StopSNOMEDCTInferenceJobRequest || (exports.StopSNOMEDCTInferenceJobRequest = {}));
|
|
677
|
+
var StopSNOMEDCTInferenceJobResponse;
|
|
678
|
+
(function (StopSNOMEDCTInferenceJobResponse) {
|
|
679
|
+
StopSNOMEDCTInferenceJobResponse.filterSensitiveLog = (obj) => ({
|
|
680
|
+
...obj,
|
|
681
|
+
});
|
|
682
|
+
})(StopSNOMEDCTInferenceJobResponse = exports.StopSNOMEDCTInferenceJobResponse || (exports.StopSNOMEDCTInferenceJobResponse = {}));
|