@aws-sdk/client-comprehendmedical 3.296.0 → 3.297.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/dist-types/ComprehendMedical.d.ts +27 -0
- package/dist-types/ComprehendMedicalClient.d.ts +24 -4
- package/dist-types/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/DetectEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/DetectEntitiesV2Command.d.ts +16 -0
- package/dist-types/commands/DetectPHICommand.d.ts +16 -0
- package/dist-types/commands/InferICD10CMCommand.d.ts +16 -0
- package/dist-types/commands/InferRxNormCommand.d.ts +16 -0
- package/dist-types/commands/InferSNOMEDCTCommand.d.ts +16 -0
- package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +16 -0
- package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +16 -0
- package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +16 -0
- package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +16 -0
- package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +16 -0
- package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +16 -0
- package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +16 -0
- package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +16 -0
- package/dist-types/models/ComprehendMedicalServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +246 -0
- package/package.json +3 -3
|
@@ -27,11 +27,13 @@ import { StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput
|
|
|
27
27
|
import { StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput } from "./commands/StopSNOMEDCTInferenceJobCommand";
|
|
28
28
|
import { ComprehendMedicalClient } from "./ComprehendMedicalClient";
|
|
29
29
|
/**
|
|
30
|
+
* @public
|
|
30
31
|
* <p> Comprehend Medical; extracts structured information from unstructured clinical text. Use these actions
|
|
31
32
|
* to gain insight in your documents. </p>
|
|
32
33
|
*/
|
|
33
34
|
export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
34
35
|
/**
|
|
36
|
+
* @public
|
|
35
37
|
* <p>Gets the properties associated with a medical entities detection job. Use this operation
|
|
36
38
|
* to get the status of a detection job.</p>
|
|
37
39
|
*/
|
|
@@ -39,6 +41,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
39
41
|
describeEntitiesDetectionV2Job(args: DescribeEntitiesDetectionV2JobCommandInput, cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
40
42
|
describeEntitiesDetectionV2Job(args: DescribeEntitiesDetectionV2JobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
41
43
|
/**
|
|
44
|
+
* @public
|
|
42
45
|
* <p>Gets the properties associated with an InferICD10CM job. Use this operation to get the
|
|
43
46
|
* status of an inference job.</p>
|
|
44
47
|
*/
|
|
@@ -46,6 +49,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
46
49
|
describeICD10CMInferenceJob(args: DescribeICD10CMInferenceJobCommandInput, cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void): void;
|
|
47
50
|
describeICD10CMInferenceJob(args: DescribeICD10CMInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void): void;
|
|
48
51
|
/**
|
|
52
|
+
* @public
|
|
49
53
|
* <p>Gets the properties associated with a protected health information (PHI) detection job.
|
|
50
54
|
* Use this operation to get the status of a detection job.</p>
|
|
51
55
|
*/
|
|
@@ -53,6 +57,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
53
57
|
describePHIDetectionJob(args: DescribePHIDetectionJobCommandInput, cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void): void;
|
|
54
58
|
describePHIDetectionJob(args: DescribePHIDetectionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void): void;
|
|
55
59
|
/**
|
|
60
|
+
* @public
|
|
56
61
|
* <p>Gets the properties associated with an InferRxNorm job. Use this operation to get the
|
|
57
62
|
* status of an inference job.</p>
|
|
58
63
|
*/
|
|
@@ -60,6 +65,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
60
65
|
describeRxNormInferenceJob(args: DescribeRxNormInferenceJobCommandInput, cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void): void;
|
|
61
66
|
describeRxNormInferenceJob(args: DescribeRxNormInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void): void;
|
|
62
67
|
/**
|
|
68
|
+
* @public
|
|
63
69
|
* <p>
|
|
64
70
|
* Gets the properties associated with an InferSNOMEDCT job. Use this operation to get the status of an inference job.
|
|
65
71
|
* </p>
|
|
@@ -68,6 +74,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
68
74
|
describeSNOMEDCTInferenceJob(args: DescribeSNOMEDCTInferenceJobCommandInput, cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void): void;
|
|
69
75
|
describeSNOMEDCTInferenceJob(args: DescribeSNOMEDCTInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void): void;
|
|
70
76
|
/**
|
|
77
|
+
* @public
|
|
71
78
|
* @deprecated
|
|
72
79
|
*
|
|
73
80
|
* <p>The <code>DetectEntities</code> operation is deprecated. You should use the <a>DetectEntitiesV2</a> operation instead.</p>
|
|
@@ -79,6 +86,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
79
86
|
detectEntities(args: DetectEntitiesCommandInput, cb: (err: any, data?: DetectEntitiesCommandOutput) => void): void;
|
|
80
87
|
detectEntities(args: DetectEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetectEntitiesCommandOutput) => void): void;
|
|
81
88
|
/**
|
|
89
|
+
* @public
|
|
82
90
|
* <p>Inspects the clinical text for a variety of medical entities and returns specific
|
|
83
91
|
* information about them such as entity category, location, and confidence score on that
|
|
84
92
|
* information. Amazon Comprehend Medical only detects medical entities in English language
|
|
@@ -94,6 +102,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
94
102
|
detectEntitiesV2(args: DetectEntitiesV2CommandInput, cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void): void;
|
|
95
103
|
detectEntitiesV2(args: DetectEntitiesV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void): void;
|
|
96
104
|
/**
|
|
105
|
+
* @public
|
|
97
106
|
* <p> Inspects the clinical text for protected health information (PHI) entities and returns
|
|
98
107
|
* the entity category, location, and confidence score for each entity. Amazon Comprehend Medical
|
|
99
108
|
* only detects entities in English language texts.</p>
|
|
@@ -102,6 +111,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
102
111
|
detectPHI(args: DetectPHICommandInput, cb: (err: any, data?: DetectPHICommandOutput) => void): void;
|
|
103
112
|
detectPHI(args: DetectPHICommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetectPHICommandOutput) => void): void;
|
|
104
113
|
/**
|
|
114
|
+
* @public
|
|
105
115
|
* <p>InferICD10CM detects medical conditions as entities listed in a patient record and links
|
|
106
116
|
* those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the
|
|
107
117
|
* Centers for Disease Control. Amazon Comprehend Medical only detects medical entities in
|
|
@@ -111,6 +121,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
111
121
|
inferICD10CM(args: InferICD10CMCommandInput, cb: (err: any, data?: InferICD10CMCommandOutput) => void): void;
|
|
112
122
|
inferICD10CM(args: InferICD10CMCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InferICD10CMCommandOutput) => void): void;
|
|
113
123
|
/**
|
|
124
|
+
* @public
|
|
114
125
|
* <p>InferRxNorm detects medications as entities listed in a patient record and links to the
|
|
115
126
|
* normalized concept identifiers in the RxNorm database from the National Library of Medicine.
|
|
116
127
|
* Amazon Comprehend Medical only detects medical entities in English language texts. </p>
|
|
@@ -119,6 +130,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
119
130
|
inferRxNorm(args: InferRxNormCommandInput, cb: (err: any, data?: InferRxNormCommandOutput) => void): void;
|
|
120
131
|
inferRxNorm(args: InferRxNormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InferRxNormCommandOutput) => void): void;
|
|
121
132
|
/**
|
|
133
|
+
* @public
|
|
122
134
|
* <p>
|
|
123
135
|
* InferSNOMEDCT detects possible medical concepts as entities and links them to codes from the Systematized Nomenclature of Medicine, Clinical Terms (SNOMED-CT) ontology</p>
|
|
124
136
|
*/
|
|
@@ -126,18 +138,21 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
126
138
|
inferSNOMEDCT(args: InferSNOMEDCTCommandInput, cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void): void;
|
|
127
139
|
inferSNOMEDCT(args: InferSNOMEDCTCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void): void;
|
|
128
140
|
/**
|
|
141
|
+
* @public
|
|
129
142
|
* <p>Gets a list of medical entity detection jobs that you have submitted.</p>
|
|
130
143
|
*/
|
|
131
144
|
listEntitiesDetectionV2Jobs(args: ListEntitiesDetectionV2JobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitiesDetectionV2JobsCommandOutput>;
|
|
132
145
|
listEntitiesDetectionV2Jobs(args: ListEntitiesDetectionV2JobsCommandInput, cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void): void;
|
|
133
146
|
listEntitiesDetectionV2Jobs(args: ListEntitiesDetectionV2JobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void): void;
|
|
134
147
|
/**
|
|
148
|
+
* @public
|
|
135
149
|
* <p>Gets a list of InferICD10CM jobs that you have submitted.</p>
|
|
136
150
|
*/
|
|
137
151
|
listICD10CMInferenceJobs(args: ListICD10CMInferenceJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListICD10CMInferenceJobsCommandOutput>;
|
|
138
152
|
listICD10CMInferenceJobs(args: ListICD10CMInferenceJobsCommandInput, cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void): void;
|
|
139
153
|
listICD10CMInferenceJobs(args: ListICD10CMInferenceJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void): void;
|
|
140
154
|
/**
|
|
155
|
+
* @public
|
|
141
156
|
* <p>Gets a list of protected health information (PHI) detection jobs that you have
|
|
142
157
|
* submitted.</p>
|
|
143
158
|
*/
|
|
@@ -145,12 +160,14 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
145
160
|
listPHIDetectionJobs(args: ListPHIDetectionJobsCommandInput, cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void): void;
|
|
146
161
|
listPHIDetectionJobs(args: ListPHIDetectionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void): void;
|
|
147
162
|
/**
|
|
163
|
+
* @public
|
|
148
164
|
* <p>Gets a list of InferRxNorm jobs that you have submitted.</p>
|
|
149
165
|
*/
|
|
150
166
|
listRxNormInferenceJobs(args: ListRxNormInferenceJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListRxNormInferenceJobsCommandOutput>;
|
|
151
167
|
listRxNormInferenceJobs(args: ListRxNormInferenceJobsCommandInput, cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void): void;
|
|
152
168
|
listRxNormInferenceJobs(args: ListRxNormInferenceJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void): void;
|
|
153
169
|
/**
|
|
170
|
+
* @public
|
|
154
171
|
* <p>
|
|
155
172
|
* Gets a list of InferSNOMEDCT jobs a user has submitted.
|
|
156
173
|
* </p>
|
|
@@ -159,6 +176,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
159
176
|
listSNOMEDCTInferenceJobs(args: ListSNOMEDCTInferenceJobsCommandInput, cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void): void;
|
|
160
177
|
listSNOMEDCTInferenceJobs(args: ListSNOMEDCTInferenceJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void): void;
|
|
161
178
|
/**
|
|
179
|
+
* @public
|
|
162
180
|
* <p>Starts an asynchronous medical entity detection job for a collection of documents. Use the
|
|
163
181
|
* <code>DescribeEntitiesDetectionV2Job</code> operation to track the status of a job.</p>
|
|
164
182
|
*/
|
|
@@ -166,6 +184,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
166
184
|
startEntitiesDetectionV2Job(args: StartEntitiesDetectionV2JobCommandInput, cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
167
185
|
startEntitiesDetectionV2Job(args: StartEntitiesDetectionV2JobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
168
186
|
/**
|
|
187
|
+
* @public
|
|
169
188
|
* <p>Starts an asynchronous job to detect medical conditions and link them to the ICD-10-CM
|
|
170
189
|
* ontology. Use the <code>DescribeICD10CMInferenceJob</code> operation to track the status of a
|
|
171
190
|
* job.</p>
|
|
@@ -174,6 +193,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
174
193
|
startICD10CMInferenceJob(args: StartICD10CMInferenceJobCommandInput, cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void): void;
|
|
175
194
|
startICD10CMInferenceJob(args: StartICD10CMInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void): void;
|
|
176
195
|
/**
|
|
196
|
+
* @public
|
|
177
197
|
* <p>Starts an asynchronous job to detect protected health information (PHI). Use the
|
|
178
198
|
* <code>DescribePHIDetectionJob</code> operation to track the status of a job.</p>
|
|
179
199
|
*/
|
|
@@ -181,6 +201,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
181
201
|
startPHIDetectionJob(args: StartPHIDetectionJobCommandInput, cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void): void;
|
|
182
202
|
startPHIDetectionJob(args: StartPHIDetectionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void): void;
|
|
183
203
|
/**
|
|
204
|
+
* @public
|
|
184
205
|
* <p>Starts an asynchronous job to detect medication entities and link them to the RxNorm
|
|
185
206
|
* ontology. Use the <code>DescribeRxNormInferenceJob</code> operation to track the status of a
|
|
186
207
|
* job.</p>
|
|
@@ -189,6 +210,7 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
189
210
|
startRxNormInferenceJob(args: StartRxNormInferenceJobCommandInput, cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void): void;
|
|
190
211
|
startRxNormInferenceJob(args: StartRxNormInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void): void;
|
|
191
212
|
/**
|
|
213
|
+
* @public
|
|
192
214
|
* <p>
|
|
193
215
|
* Starts an asynchronous job to detect medical concepts and link them to the SNOMED-CT ontology. Use the DescribeSNOMEDCTInferenceJob operation to track the status of a job.
|
|
194
216
|
* </p>
|
|
@@ -197,30 +219,35 @@ export declare class ComprehendMedical extends ComprehendMedicalClient {
|
|
|
197
219
|
startSNOMEDCTInferenceJob(args: StartSNOMEDCTInferenceJobCommandInput, cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void): void;
|
|
198
220
|
startSNOMEDCTInferenceJob(args: StartSNOMEDCTInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void): void;
|
|
199
221
|
/**
|
|
222
|
+
* @public
|
|
200
223
|
* <p>Stops a medical entities detection job in progress.</p>
|
|
201
224
|
*/
|
|
202
225
|
stopEntitiesDetectionV2Job(args: StopEntitiesDetectionV2JobCommandInput, options?: __HttpHandlerOptions): Promise<StopEntitiesDetectionV2JobCommandOutput>;
|
|
203
226
|
stopEntitiesDetectionV2Job(args: StopEntitiesDetectionV2JobCommandInput, cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
204
227
|
stopEntitiesDetectionV2Job(args: StopEntitiesDetectionV2JobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void): void;
|
|
205
228
|
/**
|
|
229
|
+
* @public
|
|
206
230
|
* <p>Stops an InferICD10CM inference job in progress.</p>
|
|
207
231
|
*/
|
|
208
232
|
stopICD10CMInferenceJob(args: StopICD10CMInferenceJobCommandInput, options?: __HttpHandlerOptions): Promise<StopICD10CMInferenceJobCommandOutput>;
|
|
209
233
|
stopICD10CMInferenceJob(args: StopICD10CMInferenceJobCommandInput, cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void): void;
|
|
210
234
|
stopICD10CMInferenceJob(args: StopICD10CMInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void): void;
|
|
211
235
|
/**
|
|
236
|
+
* @public
|
|
212
237
|
* <p>Stops a protected health information (PHI) detection job in progress.</p>
|
|
213
238
|
*/
|
|
214
239
|
stopPHIDetectionJob(args: StopPHIDetectionJobCommandInput, options?: __HttpHandlerOptions): Promise<StopPHIDetectionJobCommandOutput>;
|
|
215
240
|
stopPHIDetectionJob(args: StopPHIDetectionJobCommandInput, cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void): void;
|
|
216
241
|
stopPHIDetectionJob(args: StopPHIDetectionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void): void;
|
|
217
242
|
/**
|
|
243
|
+
* @public
|
|
218
244
|
* <p>Stops an InferRxNorm inference job in progress.</p>
|
|
219
245
|
*/
|
|
220
246
|
stopRxNormInferenceJob(args: StopRxNormInferenceJobCommandInput, options?: __HttpHandlerOptions): Promise<StopRxNormInferenceJobCommandOutput>;
|
|
221
247
|
stopRxNormInferenceJob(args: StopRxNormInferenceJobCommandInput, cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void): void;
|
|
222
248
|
stopRxNormInferenceJob(args: StopRxNormInferenceJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void): void;
|
|
223
249
|
/**
|
|
250
|
+
* @public
|
|
224
251
|
* <p>
|
|
225
252
|
* Stops an InferSNOMEDCT inference job in progress.
|
|
226
253
|
* </p>
|
|
@@ -34,15 +34,24 @@ import { StopPHIDetectionJobCommandInput, StopPHIDetectionJobCommandOutput } fro
|
|
|
34
34
|
import { StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput } from "./commands/StopRxNormInferenceJobCommand";
|
|
35
35
|
import { StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput } from "./commands/StopSNOMEDCTInferenceJobCommand";
|
|
36
36
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
37
40
|
export type ServiceInputTypes = DescribeEntitiesDetectionV2JobCommandInput | DescribeICD10CMInferenceJobCommandInput | DescribePHIDetectionJobCommandInput | DescribeRxNormInferenceJobCommandInput | DescribeSNOMEDCTInferenceJobCommandInput | DetectEntitiesCommandInput | DetectEntitiesV2CommandInput | DetectPHICommandInput | InferICD10CMCommandInput | InferRxNormCommandInput | InferSNOMEDCTCommandInput | ListEntitiesDetectionV2JobsCommandInput | ListICD10CMInferenceJobsCommandInput | ListPHIDetectionJobsCommandInput | ListRxNormInferenceJobsCommandInput | ListSNOMEDCTInferenceJobsCommandInput | StartEntitiesDetectionV2JobCommandInput | StartICD10CMInferenceJobCommandInput | StartPHIDetectionJobCommandInput | StartRxNormInferenceJobCommandInput | StartSNOMEDCTInferenceJobCommandInput | StopEntitiesDetectionV2JobCommandInput | StopICD10CMInferenceJobCommandInput | StopPHIDetectionJobCommandInput | StopRxNormInferenceJobCommandInput | StopSNOMEDCTInferenceJobCommandInput;
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
38
44
|
export type ServiceOutputTypes = DescribeEntitiesDetectionV2JobCommandOutput | DescribeICD10CMInferenceJobCommandOutput | DescribePHIDetectionJobCommandOutput | DescribeRxNormInferenceJobCommandOutput | DescribeSNOMEDCTInferenceJobCommandOutput | DetectEntitiesCommandOutput | DetectEntitiesV2CommandOutput | DetectPHICommandOutput | InferICD10CMCommandOutput | InferRxNormCommandOutput | InferSNOMEDCTCommandOutput | ListEntitiesDetectionV2JobsCommandOutput | ListICD10CMInferenceJobsCommandOutput | ListPHIDetectionJobsCommandOutput | ListRxNormInferenceJobsCommandOutput | ListSNOMEDCTInferenceJobsCommandOutput | StartEntitiesDetectionV2JobCommandOutput | StartICD10CMInferenceJobCommandOutput | StartPHIDetectionJobCommandOutput | StartRxNormInferenceJobCommandOutput | StartSNOMEDCTInferenceJobCommandOutput | StopEntitiesDetectionV2JobCommandOutput | StopICD10CMInferenceJobCommandOutput | StopPHIDetectionJobCommandOutput | StopRxNormInferenceJobCommandOutput | StopSNOMEDCTInferenceJobCommandOutput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
39
48
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
40
49
|
/**
|
|
41
50
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
42
51
|
*/
|
|
43
52
|
requestHandler?: __HttpHandler;
|
|
44
53
|
/**
|
|
45
|
-
* A constructor for a class implementing the {@link
|
|
54
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
46
55
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
47
56
|
* @internal
|
|
48
57
|
*/
|
|
@@ -132,23 +141,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
132
141
|
*/
|
|
133
142
|
logger?: __Logger;
|
|
134
143
|
/**
|
|
135
|
-
* The {@link
|
|
144
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
136
145
|
*/
|
|
137
146
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
138
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
139
151
|
type ComprehendMedicalClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
140
152
|
/**
|
|
141
|
-
*
|
|
153
|
+
* @public
|
|
154
|
+
*
|
|
155
|
+
* The configuration interface of ComprehendMedicalClient class constructor that set the region, credentials and other options.
|
|
142
156
|
*/
|
|
143
157
|
export interface ComprehendMedicalClientConfig extends ComprehendMedicalClientConfigType {
|
|
144
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
145
162
|
type ComprehendMedicalClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
146
163
|
/**
|
|
147
|
-
*
|
|
164
|
+
* @public
|
|
165
|
+
*
|
|
166
|
+
* The resolved configuration interface of ComprehendMedicalClient class. This is resolved and normalized from the {@link ComprehendMedicalClientConfig | constructor configuration interface}.
|
|
148
167
|
*/
|
|
149
168
|
export interface ComprehendMedicalClientResolvedConfig extends ComprehendMedicalClientResolvedConfigType {
|
|
150
169
|
}
|
|
151
170
|
/**
|
|
171
|
+
* @public
|
|
152
172
|
* <p> Comprehend Medical; extracts structured information from unstructured clinical text. Use these actions
|
|
153
173
|
* to gain insight in your documents. </p>
|
|
154
174
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DescribeEntitiesDetectionV2JobRequest, DescribeEntitiesDetectionV2JobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEntitiesDetectionV2JobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEntitiesDetectionV2JobCommandInput extends DescribeEntitiesDetectionV2JobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEntitiesDetectionV2JobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEntitiesDetectionV2JobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the properties associated with a medical entities detection job. Use this operation
|
|
18
23
|
* to get the status of a detection job.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEnt
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeEntitiesDetectionV2JobCommandInput - {@link DescribeEntitiesDetectionV2JobCommandInput}
|
|
35
|
+
* @returns {@link DescribeEntitiesDetectionV2JobCommandOutput}
|
|
29
36
|
* @see {@link DescribeEntitiesDetectionV2JobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeEntitiesDetectionV2JobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEnt
|
|
|
51
58
|
export declare class DescribeEntitiesDetectionV2JobCommand extends $Command<DescribeEntitiesDetectionV2JobCommandInput, DescribeEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeEntitiesDetectionV2JobCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeEntitiesDetectionV2JobCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEntitiesDetectionV2JobCommandInput, DescribeEntitiesDetectionV2JobCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DescribeICD10CMInferenceJobRequest, DescribeICD10CMInferenceJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeICD10CMInferenceJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeICD10CMInferenceJobCommandInput extends DescribeICD10CMInferenceJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeICD10CMInferenceJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10CMInferenceJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the properties associated with an InferICD10CM job. Use this operation to get the
|
|
18
23
|
* status of an inference job.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10C
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeICD10CMInferenceJobCommandInput - {@link DescribeICD10CMInferenceJobCommandInput}
|
|
35
|
+
* @returns {@link DescribeICD10CMInferenceJobCommandOutput}
|
|
29
36
|
* @see {@link DescribeICD10CMInferenceJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeICD10CMInferenceJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10C
|
|
|
51
58
|
export declare class DescribeICD10CMInferenceJobCommand extends $Command<DescribeICD10CMInferenceJobCommandInput, DescribeICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeICD10CMInferenceJobCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeICD10CMInferenceJobCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeICD10CMInferenceJobCommandInput, DescribeICD10CMInferenceJobCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DescribePHIDetectionJobRequest, DescribePHIDetectionJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribePHIDetectionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribePHIDetectionJobCommandInput extends DescribePHIDetectionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribePHIDetectionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetectionJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the properties associated with a protected health information (PHI) detection job.
|
|
18
23
|
* Use this operation to get the status of a detection job.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribePHIDetectionJobCommandInput - {@link DescribePHIDetectionJobCommandInput}
|
|
35
|
+
* @returns {@link DescribePHIDetectionJobCommandOutput}
|
|
29
36
|
* @see {@link DescribePHIDetectionJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribePHIDetectionJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti
|
|
|
51
58
|
export declare class DescribePHIDetectionJobCommand extends $Command<DescribePHIDetectionJobCommandInput, DescribePHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribePHIDetectionJobCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribePHIDetectionJobCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePHIDetectionJobCommandInput, DescribePHIDetectionJobCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DescribeRxNormInferenceJobRequest, DescribeRxNormInferenceJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRxNormInferenceJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRxNormInferenceJobCommandInput extends DescribeRxNormInferenceJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRxNormInferenceJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormInferenceJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the properties associated with an InferRxNorm job. Use this operation to get the
|
|
18
23
|
* status of an inference job.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeRxNormInferenceJobCommandInput - {@link DescribeRxNormInferenceJobCommandInput}
|
|
35
|
+
* @returns {@link DescribeRxNormInferenceJobCommandOutput}
|
|
29
36
|
* @see {@link DescribeRxNormInferenceJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeRxNormInferenceJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI
|
|
|
51
58
|
export declare class DescribeRxNormInferenceJobCommand extends $Command<DescribeRxNormInferenceJobCommandInput, DescribeRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeRxNormInferenceJobCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeRxNormInferenceJobCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRxNormInferenceJobCommandInput, DescribeRxNormInferenceJobCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DescribeSNOMEDCTInferenceJobRequest, DescribeSNOMEDCTInferenceJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSNOMEDCTInferenceJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSNOMEDCTInferenceJobCommandInput extends DescribeSNOMEDCTInferenceJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSNOMEDCTInferenceJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOMEDCTInferenceJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Gets the properties associated with an InferSNOMEDCT job. Use this operation to get the status of an inference job.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOME
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeSNOMEDCTInferenceJobCommandInput - {@link DescribeSNOMEDCTInferenceJobCommandInput}
|
|
36
|
+
* @returns {@link DescribeSNOMEDCTInferenceJobCommandOutput}
|
|
30
37
|
* @see {@link DescribeSNOMEDCTInferenceJobCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeSNOMEDCTInferenceJobCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOME
|
|
|
52
59
|
export declare class DescribeSNOMEDCTInferenceJobCommand extends $Command<DescribeSNOMEDCTInferenceJobCommandInput, DescribeSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeSNOMEDCTInferenceJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeSNOMEDCTInferenceJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSNOMEDCTInferenceJobCommandInput, DescribeSNOMEDCTInferenceJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DetectEntitiesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DetectEntitiesCommandInput extends DetectEntitiesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DetectEntitiesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>The <code>DetectEntities</code> operation is deprecated. You should use the <a>DetectEntitiesV2</a> operation instead.</p>
|
|
@@ -30,6 +35,8 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DetectEntitiesCommandInput - {@link DetectEntitiesCommandInput}
|
|
39
|
+
* @returns {@link DetectEntitiesCommandOutput}
|
|
33
40
|
* @see {@link DetectEntitiesCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DetectEntitiesCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M
|
|
|
63
70
|
export declare class DetectEntitiesCommand extends $Command<DetectEntitiesCommandInput, DetectEntitiesCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
64
71
|
readonly input: DetectEntitiesCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DetectEntitiesCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DetectEntitiesCommandInput, DetectEntitiesCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
5
5
|
import { DetectEntitiesV2Request, DetectEntitiesV2Response } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DetectEntitiesV2Command}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DetectEntitiesV2CommandInput extends DetectEntitiesV2Request {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DetectEntitiesV2Command}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Inspects the clinical text for a variety of medical entities and returns specific
|
|
18
23
|
* information about them such as entity category, location, and confidence score on that
|
|
19
24
|
* information. Amazon Comprehend Medical only detects medical entities in English language
|
|
@@ -34,6 +39,8 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response,
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param DetectEntitiesV2CommandInput - {@link DetectEntitiesV2CommandInput}
|
|
43
|
+
* @returns {@link DetectEntitiesV2CommandOutput}
|
|
37
44
|
* @see {@link DetectEntitiesV2CommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link DetectEntitiesV2CommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link ComprehendMedicalClientResolvedConfig | config} for ComprehendMedicalClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response,
|
|
|
67
74
|
export declare class DetectEntitiesV2Command extends $Command<DetectEntitiesV2CommandInput, DetectEntitiesV2CommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
68
75
|
readonly input: DetectEntitiesV2CommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: DetectEntitiesV2CommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DetectEntitiesV2CommandInput, DetectEntitiesV2CommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|