@aws-sdk/client-comprehendmedical 3.1087.0 → 3.1089.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 (45) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/ComprehendMedical.d.ts +80 -86
  3. package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +7 -23
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +4 -6
  10. package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +4 -6
  12. package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +7 -5
  15. package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +3 -5
  16. package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +3 -5
  17. package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +3 -5
  19. package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +3 -5
  22. package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +3 -5
  23. package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +5 -10
  26. package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +4 -6
  27. package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +4 -6
  28. package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +4 -6
  29. package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +5 -10
  31. package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +5 -10
  32. package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +4 -6
  33. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  34. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  35. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +10 -20
  37. package/dist-types/ts3.4/models/errors.d.ts +8 -24
  38. package/dist-types/ts3.4/models/models_0.d.ts +10 -30
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
  43. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  45. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1088.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -27,18 +27,12 @@ import {
27
27
  DetectEntitiesV2CommandInput,
28
28
  DetectEntitiesV2CommandOutput,
29
29
  } from "./commands/DetectEntitiesV2Command";
30
- import {
31
- DetectPHICommandInput,
32
- DetectPHICommandOutput,
33
- } from "./commands/DetectPHICommand";
30
+ import { DetectPHICommandInput, DetectPHICommandOutput } from "./commands/DetectPHICommand";
34
31
  import {
35
32
  InferICD10CMCommandInput,
36
33
  InferICD10CMCommandOutput,
37
34
  } from "./commands/InferICD10CMCommand";
38
- import {
39
- InferRxNormCommandInput,
40
- InferRxNormCommandOutput,
41
- } from "./commands/InferRxNormCommand";
35
+ import { InferRxNormCommandInput, InferRxNormCommandOutput } from "./commands/InferRxNormCommand";
42
36
  import {
43
37
  InferSNOMEDCTCommandInput,
44
38
  InferSNOMEDCTCommandOutput,
@@ -107,346 +101,346 @@ import { ComprehendMedicalClient } from "./ComprehendMedicalClient";
107
101
  export interface ComprehendMedical {
108
102
  describeEntitiesDetectionV2Job(
109
103
  args: DescribeEntitiesDetectionV2JobCommandInput,
110
- options?: __HttpHandlerOptions
104
+ options?: __HttpHandlerOptions,
111
105
  ): Promise<DescribeEntitiesDetectionV2JobCommandOutput>;
112
106
  describeEntitiesDetectionV2Job(
113
107
  args: DescribeEntitiesDetectionV2JobCommandInput,
114
- cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void
108
+ cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void,
115
109
  ): void;
116
110
  describeEntitiesDetectionV2Job(
117
111
  args: DescribeEntitiesDetectionV2JobCommandInput,
118
112
  options: __HttpHandlerOptions,
119
- cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void
113
+ cb: (err: any, data?: DescribeEntitiesDetectionV2JobCommandOutput) => void,
120
114
  ): void;
121
115
  describeICD10CMInferenceJob(
122
116
  args: DescribeICD10CMInferenceJobCommandInput,
123
- options?: __HttpHandlerOptions
117
+ options?: __HttpHandlerOptions,
124
118
  ): Promise<DescribeICD10CMInferenceJobCommandOutput>;
125
119
  describeICD10CMInferenceJob(
126
120
  args: DescribeICD10CMInferenceJobCommandInput,
127
- cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void
121
+ cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void,
128
122
  ): void;
129
123
  describeICD10CMInferenceJob(
130
124
  args: DescribeICD10CMInferenceJobCommandInput,
131
125
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void
126
+ cb: (err: any, data?: DescribeICD10CMInferenceJobCommandOutput) => void,
133
127
  ): void;
134
128
  describePHIDetectionJob(
135
129
  args: DescribePHIDetectionJobCommandInput,
136
- options?: __HttpHandlerOptions
130
+ options?: __HttpHandlerOptions,
137
131
  ): Promise<DescribePHIDetectionJobCommandOutput>;
138
132
  describePHIDetectionJob(
139
133
  args: DescribePHIDetectionJobCommandInput,
140
- cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void
134
+ cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void,
141
135
  ): void;
142
136
  describePHIDetectionJob(
143
137
  args: DescribePHIDetectionJobCommandInput,
144
138
  options: __HttpHandlerOptions,
145
- cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void
139
+ cb: (err: any, data?: DescribePHIDetectionJobCommandOutput) => void,
146
140
  ): void;
147
141
  describeRxNormInferenceJob(
148
142
  args: DescribeRxNormInferenceJobCommandInput,
149
- options?: __HttpHandlerOptions
143
+ options?: __HttpHandlerOptions,
150
144
  ): Promise<DescribeRxNormInferenceJobCommandOutput>;
151
145
  describeRxNormInferenceJob(
152
146
  args: DescribeRxNormInferenceJobCommandInput,
153
- cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void
147
+ cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void,
154
148
  ): void;
155
149
  describeRxNormInferenceJob(
156
150
  args: DescribeRxNormInferenceJobCommandInput,
157
151
  options: __HttpHandlerOptions,
158
- cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void
152
+ cb: (err: any, data?: DescribeRxNormInferenceJobCommandOutput) => void,
159
153
  ): void;
160
154
  describeSNOMEDCTInferenceJob(
161
155
  args: DescribeSNOMEDCTInferenceJobCommandInput,
162
- options?: __HttpHandlerOptions
156
+ options?: __HttpHandlerOptions,
163
157
  ): Promise<DescribeSNOMEDCTInferenceJobCommandOutput>;
164
158
  describeSNOMEDCTInferenceJob(
165
159
  args: DescribeSNOMEDCTInferenceJobCommandInput,
166
- cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void
160
+ cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void,
167
161
  ): void;
168
162
  describeSNOMEDCTInferenceJob(
169
163
  args: DescribeSNOMEDCTInferenceJobCommandInput,
170
164
  options: __HttpHandlerOptions,
171
- cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void
165
+ cb: (err: any, data?: DescribeSNOMEDCTInferenceJobCommandOutput) => void,
172
166
  ): void;
173
167
  detectEntities(
174
168
  args: DetectEntitiesCommandInput,
175
- options?: __HttpHandlerOptions
169
+ options?: __HttpHandlerOptions,
176
170
  ): Promise<DetectEntitiesCommandOutput>;
177
171
  detectEntities(
178
172
  args: DetectEntitiesCommandInput,
179
- cb: (err: any, data?: DetectEntitiesCommandOutput) => void
173
+ cb: (err: any, data?: DetectEntitiesCommandOutput) => void,
180
174
  ): void;
181
175
  detectEntities(
182
176
  args: DetectEntitiesCommandInput,
183
177
  options: __HttpHandlerOptions,
184
- cb: (err: any, data?: DetectEntitiesCommandOutput) => void
178
+ cb: (err: any, data?: DetectEntitiesCommandOutput) => void,
185
179
  ): void;
186
180
  detectEntitiesV2(
187
181
  args: DetectEntitiesV2CommandInput,
188
- options?: __HttpHandlerOptions
182
+ options?: __HttpHandlerOptions,
189
183
  ): Promise<DetectEntitiesV2CommandOutput>;
190
184
  detectEntitiesV2(
191
185
  args: DetectEntitiesV2CommandInput,
192
- cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void
186
+ cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void,
193
187
  ): void;
194
188
  detectEntitiesV2(
195
189
  args: DetectEntitiesV2CommandInput,
196
190
  options: __HttpHandlerOptions,
197
- cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void
191
+ cb: (err: any, data?: DetectEntitiesV2CommandOutput) => void,
198
192
  ): void;
199
193
  detectPHI(
200
194
  args: DetectPHICommandInput,
201
- options?: __HttpHandlerOptions
195
+ options?: __HttpHandlerOptions,
202
196
  ): Promise<DetectPHICommandOutput>;
203
197
  detectPHI(
204
198
  args: DetectPHICommandInput,
205
- cb: (err: any, data?: DetectPHICommandOutput) => void
199
+ cb: (err: any, data?: DetectPHICommandOutput) => void,
206
200
  ): void;
207
201
  detectPHI(
208
202
  args: DetectPHICommandInput,
209
203
  options: __HttpHandlerOptions,
210
- cb: (err: any, data?: DetectPHICommandOutput) => void
204
+ cb: (err: any, data?: DetectPHICommandOutput) => void,
211
205
  ): void;
212
206
  inferICD10CM(
213
207
  args: InferICD10CMCommandInput,
214
- options?: __HttpHandlerOptions
208
+ options?: __HttpHandlerOptions,
215
209
  ): Promise<InferICD10CMCommandOutput>;
216
210
  inferICD10CM(
217
211
  args: InferICD10CMCommandInput,
218
- cb: (err: any, data?: InferICD10CMCommandOutput) => void
212
+ cb: (err: any, data?: InferICD10CMCommandOutput) => void,
219
213
  ): void;
220
214
  inferICD10CM(
221
215
  args: InferICD10CMCommandInput,
222
216
  options: __HttpHandlerOptions,
223
- cb: (err: any, data?: InferICD10CMCommandOutput) => void
217
+ cb: (err: any, data?: InferICD10CMCommandOutput) => void,
224
218
  ): void;
225
219
  inferRxNorm(
226
220
  args: InferRxNormCommandInput,
227
- options?: __HttpHandlerOptions
221
+ options?: __HttpHandlerOptions,
228
222
  ): Promise<InferRxNormCommandOutput>;
229
223
  inferRxNorm(
230
224
  args: InferRxNormCommandInput,
231
- cb: (err: any, data?: InferRxNormCommandOutput) => void
225
+ cb: (err: any, data?: InferRxNormCommandOutput) => void,
232
226
  ): void;
233
227
  inferRxNorm(
234
228
  args: InferRxNormCommandInput,
235
229
  options: __HttpHandlerOptions,
236
- cb: (err: any, data?: InferRxNormCommandOutput) => void
230
+ cb: (err: any, data?: InferRxNormCommandOutput) => void,
237
231
  ): void;
238
232
  inferSNOMEDCT(
239
233
  args: InferSNOMEDCTCommandInput,
240
- options?: __HttpHandlerOptions
234
+ options?: __HttpHandlerOptions,
241
235
  ): Promise<InferSNOMEDCTCommandOutput>;
242
236
  inferSNOMEDCT(
243
237
  args: InferSNOMEDCTCommandInput,
244
- cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void
238
+ cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void,
245
239
  ): void;
246
240
  inferSNOMEDCT(
247
241
  args: InferSNOMEDCTCommandInput,
248
242
  options: __HttpHandlerOptions,
249
- cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void
243
+ cb: (err: any, data?: InferSNOMEDCTCommandOutput) => void,
250
244
  ): void;
251
245
  listEntitiesDetectionV2Jobs(): Promise<ListEntitiesDetectionV2JobsCommandOutput>;
252
246
  listEntitiesDetectionV2Jobs(
253
247
  args: ListEntitiesDetectionV2JobsCommandInput,
254
- options?: __HttpHandlerOptions
248
+ options?: __HttpHandlerOptions,
255
249
  ): Promise<ListEntitiesDetectionV2JobsCommandOutput>;
256
250
  listEntitiesDetectionV2Jobs(
257
251
  args: ListEntitiesDetectionV2JobsCommandInput,
258
- cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void
252
+ cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void,
259
253
  ): void;
260
254
  listEntitiesDetectionV2Jobs(
261
255
  args: ListEntitiesDetectionV2JobsCommandInput,
262
256
  options: __HttpHandlerOptions,
263
- cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void
257
+ cb: (err: any, data?: ListEntitiesDetectionV2JobsCommandOutput) => void,
264
258
  ): void;
265
259
  listICD10CMInferenceJobs(): Promise<ListICD10CMInferenceJobsCommandOutput>;
266
260
  listICD10CMInferenceJobs(
267
261
  args: ListICD10CMInferenceJobsCommandInput,
268
- options?: __HttpHandlerOptions
262
+ options?: __HttpHandlerOptions,
269
263
  ): Promise<ListICD10CMInferenceJobsCommandOutput>;
270
264
  listICD10CMInferenceJobs(
271
265
  args: ListICD10CMInferenceJobsCommandInput,
272
- cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void
266
+ cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void,
273
267
  ): void;
274
268
  listICD10CMInferenceJobs(
275
269
  args: ListICD10CMInferenceJobsCommandInput,
276
270
  options: __HttpHandlerOptions,
277
- cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void
271
+ cb: (err: any, data?: ListICD10CMInferenceJobsCommandOutput) => void,
278
272
  ): void;
279
273
  listPHIDetectionJobs(): Promise<ListPHIDetectionJobsCommandOutput>;
280
274
  listPHIDetectionJobs(
281
275
  args: ListPHIDetectionJobsCommandInput,
282
- options?: __HttpHandlerOptions
276
+ options?: __HttpHandlerOptions,
283
277
  ): Promise<ListPHIDetectionJobsCommandOutput>;
284
278
  listPHIDetectionJobs(
285
279
  args: ListPHIDetectionJobsCommandInput,
286
- cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void
280
+ cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void,
287
281
  ): void;
288
282
  listPHIDetectionJobs(
289
283
  args: ListPHIDetectionJobsCommandInput,
290
284
  options: __HttpHandlerOptions,
291
- cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void
285
+ cb: (err: any, data?: ListPHIDetectionJobsCommandOutput) => void,
292
286
  ): void;
293
287
  listRxNormInferenceJobs(): Promise<ListRxNormInferenceJobsCommandOutput>;
294
288
  listRxNormInferenceJobs(
295
289
  args: ListRxNormInferenceJobsCommandInput,
296
- options?: __HttpHandlerOptions
290
+ options?: __HttpHandlerOptions,
297
291
  ): Promise<ListRxNormInferenceJobsCommandOutput>;
298
292
  listRxNormInferenceJobs(
299
293
  args: ListRxNormInferenceJobsCommandInput,
300
- cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void
294
+ cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void,
301
295
  ): void;
302
296
  listRxNormInferenceJobs(
303
297
  args: ListRxNormInferenceJobsCommandInput,
304
298
  options: __HttpHandlerOptions,
305
- cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void
299
+ cb: (err: any, data?: ListRxNormInferenceJobsCommandOutput) => void,
306
300
  ): void;
307
301
  listSNOMEDCTInferenceJobs(): Promise<ListSNOMEDCTInferenceJobsCommandOutput>;
308
302
  listSNOMEDCTInferenceJobs(
309
303
  args: ListSNOMEDCTInferenceJobsCommandInput,
310
- options?: __HttpHandlerOptions
304
+ options?: __HttpHandlerOptions,
311
305
  ): Promise<ListSNOMEDCTInferenceJobsCommandOutput>;
312
306
  listSNOMEDCTInferenceJobs(
313
307
  args: ListSNOMEDCTInferenceJobsCommandInput,
314
- cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void
308
+ cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void,
315
309
  ): void;
316
310
  listSNOMEDCTInferenceJobs(
317
311
  args: ListSNOMEDCTInferenceJobsCommandInput,
318
312
  options: __HttpHandlerOptions,
319
- cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void
313
+ cb: (err: any, data?: ListSNOMEDCTInferenceJobsCommandOutput) => void,
320
314
  ): void;
321
315
  startEntitiesDetectionV2Job(
322
316
  args: StartEntitiesDetectionV2JobCommandInput,
323
- options?: __HttpHandlerOptions
317
+ options?: __HttpHandlerOptions,
324
318
  ): Promise<StartEntitiesDetectionV2JobCommandOutput>;
325
319
  startEntitiesDetectionV2Job(
326
320
  args: StartEntitiesDetectionV2JobCommandInput,
327
- cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void
321
+ cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void,
328
322
  ): void;
329
323
  startEntitiesDetectionV2Job(
330
324
  args: StartEntitiesDetectionV2JobCommandInput,
331
325
  options: __HttpHandlerOptions,
332
- cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void
326
+ cb: (err: any, data?: StartEntitiesDetectionV2JobCommandOutput) => void,
333
327
  ): void;
334
328
  startICD10CMInferenceJob(
335
329
  args: StartICD10CMInferenceJobCommandInput,
336
- options?: __HttpHandlerOptions
330
+ options?: __HttpHandlerOptions,
337
331
  ): Promise<StartICD10CMInferenceJobCommandOutput>;
338
332
  startICD10CMInferenceJob(
339
333
  args: StartICD10CMInferenceJobCommandInput,
340
- cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void
334
+ cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void,
341
335
  ): void;
342
336
  startICD10CMInferenceJob(
343
337
  args: StartICD10CMInferenceJobCommandInput,
344
338
  options: __HttpHandlerOptions,
345
- cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void
339
+ cb: (err: any, data?: StartICD10CMInferenceJobCommandOutput) => void,
346
340
  ): void;
347
341
  startPHIDetectionJob(
348
342
  args: StartPHIDetectionJobCommandInput,
349
- options?: __HttpHandlerOptions
343
+ options?: __HttpHandlerOptions,
350
344
  ): Promise<StartPHIDetectionJobCommandOutput>;
351
345
  startPHIDetectionJob(
352
346
  args: StartPHIDetectionJobCommandInput,
353
- cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void
347
+ cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void,
354
348
  ): void;
355
349
  startPHIDetectionJob(
356
350
  args: StartPHIDetectionJobCommandInput,
357
351
  options: __HttpHandlerOptions,
358
- cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void
352
+ cb: (err: any, data?: StartPHIDetectionJobCommandOutput) => void,
359
353
  ): void;
360
354
  startRxNormInferenceJob(
361
355
  args: StartRxNormInferenceJobCommandInput,
362
- options?: __HttpHandlerOptions
356
+ options?: __HttpHandlerOptions,
363
357
  ): Promise<StartRxNormInferenceJobCommandOutput>;
364
358
  startRxNormInferenceJob(
365
359
  args: StartRxNormInferenceJobCommandInput,
366
- cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void
360
+ cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void,
367
361
  ): void;
368
362
  startRxNormInferenceJob(
369
363
  args: StartRxNormInferenceJobCommandInput,
370
364
  options: __HttpHandlerOptions,
371
- cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void
365
+ cb: (err: any, data?: StartRxNormInferenceJobCommandOutput) => void,
372
366
  ): void;
373
367
  startSNOMEDCTInferenceJob(
374
368
  args: StartSNOMEDCTInferenceJobCommandInput,
375
- options?: __HttpHandlerOptions
369
+ options?: __HttpHandlerOptions,
376
370
  ): Promise<StartSNOMEDCTInferenceJobCommandOutput>;
377
371
  startSNOMEDCTInferenceJob(
378
372
  args: StartSNOMEDCTInferenceJobCommandInput,
379
- cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void
373
+ cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void,
380
374
  ): void;
381
375
  startSNOMEDCTInferenceJob(
382
376
  args: StartSNOMEDCTInferenceJobCommandInput,
383
377
  options: __HttpHandlerOptions,
384
- cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void
378
+ cb: (err: any, data?: StartSNOMEDCTInferenceJobCommandOutput) => void,
385
379
  ): void;
386
380
  stopEntitiesDetectionV2Job(
387
381
  args: StopEntitiesDetectionV2JobCommandInput,
388
- options?: __HttpHandlerOptions
382
+ options?: __HttpHandlerOptions,
389
383
  ): Promise<StopEntitiesDetectionV2JobCommandOutput>;
390
384
  stopEntitiesDetectionV2Job(
391
385
  args: StopEntitiesDetectionV2JobCommandInput,
392
- cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void
386
+ cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void,
393
387
  ): void;
394
388
  stopEntitiesDetectionV2Job(
395
389
  args: StopEntitiesDetectionV2JobCommandInput,
396
390
  options: __HttpHandlerOptions,
397
- cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void
391
+ cb: (err: any, data?: StopEntitiesDetectionV2JobCommandOutput) => void,
398
392
  ): void;
399
393
  stopICD10CMInferenceJob(
400
394
  args: StopICD10CMInferenceJobCommandInput,
401
- options?: __HttpHandlerOptions
395
+ options?: __HttpHandlerOptions,
402
396
  ): Promise<StopICD10CMInferenceJobCommandOutput>;
403
397
  stopICD10CMInferenceJob(
404
398
  args: StopICD10CMInferenceJobCommandInput,
405
- cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void
399
+ cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void,
406
400
  ): void;
407
401
  stopICD10CMInferenceJob(
408
402
  args: StopICD10CMInferenceJobCommandInput,
409
403
  options: __HttpHandlerOptions,
410
- cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void
404
+ cb: (err: any, data?: StopICD10CMInferenceJobCommandOutput) => void,
411
405
  ): void;
412
406
  stopPHIDetectionJob(
413
407
  args: StopPHIDetectionJobCommandInput,
414
- options?: __HttpHandlerOptions
408
+ options?: __HttpHandlerOptions,
415
409
  ): Promise<StopPHIDetectionJobCommandOutput>;
416
410
  stopPHIDetectionJob(
417
411
  args: StopPHIDetectionJobCommandInput,
418
- cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void
412
+ cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void,
419
413
  ): void;
420
414
  stopPHIDetectionJob(
421
415
  args: StopPHIDetectionJobCommandInput,
422
416
  options: __HttpHandlerOptions,
423
- cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void
417
+ cb: (err: any, data?: StopPHIDetectionJobCommandOutput) => void,
424
418
  ): void;
425
419
  stopRxNormInferenceJob(
426
420
  args: StopRxNormInferenceJobCommandInput,
427
- options?: __HttpHandlerOptions
421
+ options?: __HttpHandlerOptions,
428
422
  ): Promise<StopRxNormInferenceJobCommandOutput>;
429
423
  stopRxNormInferenceJob(
430
424
  args: StopRxNormInferenceJobCommandInput,
431
- cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void
425
+ cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void,
432
426
  ): void;
433
427
  stopRxNormInferenceJob(
434
428
  args: StopRxNormInferenceJobCommandInput,
435
429
  options: __HttpHandlerOptions,
436
- cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void
430
+ cb: (err: any, data?: StopRxNormInferenceJobCommandOutput) => void,
437
431
  ): void;
438
432
  stopSNOMEDCTInferenceJob(
439
433
  args: StopSNOMEDCTInferenceJobCommandInput,
440
- options?: __HttpHandlerOptions
434
+ options?: __HttpHandlerOptions,
441
435
  ): Promise<StopSNOMEDCTInferenceJobCommandOutput>;
442
436
  stopSNOMEDCTInferenceJob(
443
437
  args: StopSNOMEDCTInferenceJobCommandInput,
444
- cb: (err: any, data?: StopSNOMEDCTInferenceJobCommandOutput) => void
438
+ cb: (err: any, data?: StopSNOMEDCTInferenceJobCommandOutput) => void,
445
439
  ): void;
446
440
  stopSNOMEDCTInferenceJob(
447
441
  args: StopSNOMEDCTInferenceJobCommandInput,
448
442
  options: __HttpHandlerOptions,
449
- cb: (err: any, data?: StopSNOMEDCTInferenceJobCommandOutput) => void
443
+ cb: (err: any, data?: StopSNOMEDCTInferenceJobCommandOutput) => void,
450
444
  ): void;
451
445
  }
452
446
  export declare class ComprehendMedical
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -64,18 +61,12 @@ import {
64
61
  DetectEntitiesV2CommandInput,
65
62
  DetectEntitiesV2CommandOutput,
66
63
  } from "./commands/DetectEntitiesV2Command";
67
- import {
68
- DetectPHICommandInput,
69
- DetectPHICommandOutput,
70
- } from "./commands/DetectPHICommand";
64
+ import { DetectPHICommandInput, DetectPHICommandOutput } from "./commands/DetectPHICommand";
71
65
  import {
72
66
  InferICD10CMCommandInput,
73
67
  InferICD10CMCommandOutput,
74
68
  } from "./commands/InferICD10CMCommand";
75
- import {
76
- InferRxNormCommandInput,
77
- InferRxNormCommandOutput,
78
- } from "./commands/InferRxNormCommand";
69
+ import { InferRxNormCommandInput, InferRxNormCommandOutput } from "./commands/InferRxNormCommand";
79
70
  import {
80
71
  InferSNOMEDCTCommandInput,
81
72
  InferSNOMEDCTCommandOutput,
@@ -201,8 +192,7 @@ export type ServiceOutputTypes =
201
192
  | StopPHIDetectionJobCommandOutput
202
193
  | StopRxNormInferenceJobCommandOutput
203
194
  | StopSNOMEDCTInferenceJobCommandOutput;
204
- export interface ClientDefaults
205
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
195
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
206
196
  requestHandler?: __HttpHandlerUserInput;
207
197
  sha256?: __ChecksumConstructor | __HashConstructor;
208
198
  urlParser?: __UrlParser;
@@ -238,8 +228,7 @@ export type ComprehendMedicalClientConfigType = Partial<
238
228
  EndpointInputConfig<EndpointParameters> &
239
229
  HttpAuthSchemeInputConfig &
240
230
  ClientInputEndpointParameters;
241
- export interface ComprehendMedicalClientConfig
242
- extends ComprehendMedicalClientConfigType {}
231
+ export interface ComprehendMedicalClientConfig extends ComprehendMedicalClientConfigType {}
243
232
  export type ComprehendMedicalClientResolvedConfigType =
244
233
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
245
234
  Required<ClientDefaults> &
@@ -251,8 +240,7 @@ export type ComprehendMedicalClientResolvedConfigType =
251
240
  EndpointResolvedConfig<EndpointParameters> &
252
241
  HttpAuthSchemeResolvedConfig &
253
242
  ClientResolvedEndpointParameters;
254
- export interface ComprehendMedicalClientResolvedConfig
255
- extends ComprehendMedicalClientResolvedConfigType {}
243
+ export interface ComprehendMedicalClientResolvedConfig extends ComprehendMedicalClientResolvedConfigType {}
256
244
  export declare class ComprehendMedicalClient extends __Client<
257
245
  __HttpHandlerOptions,
258
246
  ServiceInputTypes,
@@ -260,10 +248,6 @@ export declare class ComprehendMedicalClient extends __Client<
260
248
  ComprehendMedicalClientResolvedConfig
261
249
  > {
262
250
  readonly config: ComprehendMedicalClientResolvedConfig;
263
- constructor(
264
- ...[
265
- configuration,
266
- ]: __CheckOptionalClientConfig<ComprehendMedicalClientConfig>
267
- );
251
+ constructor(...[configuration]: __CheckOptionalClientConfig<ComprehendMedicalClientConfig>);
268
252
  destroy(): void;
269
253
  }
@@ -7,17 +7,10 @@ import { ComprehendMedicalHttpAuthSchemeProvider } from "./httpAuthSchemeProvide
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: ComprehendMedicalHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: ComprehendMedicalHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): ComprehendMedicalHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { ComprehendMedicalClientResolvedConfig } from "../ComprehendMedicalClient";
15
- export interface ComprehendMedicalHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface ComprehendMedicalHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface ComprehendMedicalHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- ComprehendMedicalClientResolvedConfig,
22
- HandlerExecutionContext,
23
- ComprehendMedicalHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface ComprehendMedicalHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ ComprehendMedicalClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ ComprehendMedicalHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultComprehendMedicalHttpAuthSchemeParametersProvider: (
27
25
  config: ComprehendMedicalClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<ComprehendMedicalHttpAuthSchemeParameters>;
31
- export interface ComprehendMedicalHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<ComprehendMedicalHttpAuthSchemeParameters> {}
29
+ export interface ComprehendMedicalHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ComprehendMedicalHttpAuthSchemeParameters> {}
33
30
  export declare const defaultComprehendMedicalHttpAuthSchemeProvider: ComprehendMedicalHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: ComprehendMedicalHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: ComprehendMedicalHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./ComprehendMedicalClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  ComprehendMedicalClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];