@aws-sdk/client-comprehendmedical 3.687.0 → 3.692.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/models/models_0.d.ts +197 -197
- package/dist-types/ts3.4/models/models_0.d.ts +217 -197
- package/package.json +35 -35
|
@@ -49,8 +49,8 @@ export declare const AttributeName: {
|
|
|
49
49
|
};
|
|
50
50
|
export type AttributeName = (typeof AttributeName)[keyof typeof AttributeName];
|
|
51
51
|
export interface Trait {
|
|
52
|
-
Name?: AttributeName;
|
|
53
|
-
Score?: number;
|
|
52
|
+
Name?: AttributeName | undefined;
|
|
53
|
+
Score?: number | undefined;
|
|
54
54
|
}
|
|
55
55
|
export declare const EntitySubType: {
|
|
56
56
|
readonly ACUITY: "ACUITY";
|
|
@@ -101,26 +101,26 @@ export declare const EntitySubType: {
|
|
|
101
101
|
};
|
|
102
102
|
export type EntitySubType = (typeof EntitySubType)[keyof typeof EntitySubType];
|
|
103
103
|
export interface Attribute {
|
|
104
|
-
Type?: EntitySubType;
|
|
105
|
-
Score?: number;
|
|
106
|
-
RelationshipScore?: number;
|
|
107
|
-
RelationshipType?: RelationshipType;
|
|
108
|
-
Id?: number;
|
|
109
|
-
BeginOffset?: number;
|
|
110
|
-
EndOffset?: number;
|
|
111
|
-
Text?: string;
|
|
112
|
-
Category?: EntityType;
|
|
113
|
-
Traits?: Trait[];
|
|
104
|
+
Type?: EntitySubType | undefined;
|
|
105
|
+
Score?: number | undefined;
|
|
106
|
+
RelationshipScore?: number | undefined;
|
|
107
|
+
RelationshipType?: RelationshipType | undefined;
|
|
108
|
+
Id?: number | undefined;
|
|
109
|
+
BeginOffset?: number | undefined;
|
|
110
|
+
EndOffset?: number | undefined;
|
|
111
|
+
Text?: string | undefined;
|
|
112
|
+
Category?: EntityType | undefined;
|
|
113
|
+
Traits?: Trait[] | undefined;
|
|
114
114
|
}
|
|
115
115
|
export interface Characters {
|
|
116
|
-
OriginalTextCharacters?: number;
|
|
116
|
+
OriginalTextCharacters?: number | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface DescribeEntitiesDetectionV2JobRequest {
|
|
119
119
|
JobId: string | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface InputDataConfig {
|
|
122
122
|
S3Bucket: string | undefined;
|
|
123
|
-
S3Key?: string;
|
|
123
|
+
S3Key?: string | undefined;
|
|
124
124
|
}
|
|
125
125
|
export declare const JobStatus: {
|
|
126
126
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -138,31 +138,33 @@ export declare const LanguageCode: {
|
|
|
138
138
|
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
139
139
|
export interface OutputDataConfig {
|
|
140
140
|
S3Bucket: string | undefined;
|
|
141
|
-
S3Key?: string;
|
|
141
|
+
S3Key?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
export interface ComprehendMedicalAsyncJobProperties {
|
|
144
|
-
JobId?: string;
|
|
145
|
-
JobName?: string;
|
|
146
|
-
JobStatus?: JobStatus;
|
|
147
|
-
Message?: string;
|
|
148
|
-
SubmitTime?: Date;
|
|
149
|
-
EndTime?: Date;
|
|
150
|
-
ExpirationTime?: Date;
|
|
151
|
-
InputDataConfig?: InputDataConfig;
|
|
152
|
-
OutputDataConfig?: OutputDataConfig;
|
|
153
|
-
LanguageCode?: LanguageCode;
|
|
154
|
-
DataAccessRoleArn?: string;
|
|
155
|
-
ManifestFilePath?: string;
|
|
156
|
-
KMSKey?: string;
|
|
157
|
-
ModelVersion?: string;
|
|
144
|
+
JobId?: string | undefined;
|
|
145
|
+
JobName?: string | undefined;
|
|
146
|
+
JobStatus?: JobStatus | undefined;
|
|
147
|
+
Message?: string | undefined;
|
|
148
|
+
SubmitTime?: Date | undefined;
|
|
149
|
+
EndTime?: Date | undefined;
|
|
150
|
+
ExpirationTime?: Date | undefined;
|
|
151
|
+
InputDataConfig?: InputDataConfig | undefined;
|
|
152
|
+
OutputDataConfig?: OutputDataConfig | undefined;
|
|
153
|
+
LanguageCode?: LanguageCode | undefined;
|
|
154
|
+
DataAccessRoleArn?: string | undefined;
|
|
155
|
+
ManifestFilePath?: string | undefined;
|
|
156
|
+
KMSKey?: string | undefined;
|
|
157
|
+
ModelVersion?: string | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface DescribeEntitiesDetectionV2JobResponse {
|
|
160
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
160
|
+
ComprehendMedicalAsyncJobProperties?:
|
|
161
|
+
| ComprehendMedicalAsyncJobProperties
|
|
162
|
+
| undefined;
|
|
161
163
|
}
|
|
162
164
|
export declare class InternalServerException extends __BaseException {
|
|
163
165
|
readonly name: "InternalServerException";
|
|
164
166
|
readonly $fault: "server";
|
|
165
|
-
Message?: string;
|
|
167
|
+
Message?: string | undefined;
|
|
166
168
|
constructor(
|
|
167
169
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
168
170
|
);
|
|
@@ -170,7 +172,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
170
172
|
export declare class InvalidRequestException extends __BaseException {
|
|
171
173
|
readonly name: "InvalidRequestException";
|
|
172
174
|
readonly $fault: "client";
|
|
173
|
-
Message?: string;
|
|
175
|
+
Message?: string | undefined;
|
|
174
176
|
constructor(
|
|
175
177
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
176
178
|
);
|
|
@@ -178,7 +180,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
178
180
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
179
181
|
readonly name: "ResourceNotFoundException";
|
|
180
182
|
readonly $fault: "client";
|
|
181
|
-
Message?: string;
|
|
183
|
+
Message?: string | undefined;
|
|
182
184
|
constructor(
|
|
183
185
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
184
186
|
);
|
|
@@ -186,7 +188,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
186
188
|
export declare class TooManyRequestsException extends __BaseException {
|
|
187
189
|
readonly name: "TooManyRequestsException";
|
|
188
190
|
readonly $fault: "client";
|
|
189
|
-
Message?: string;
|
|
191
|
+
Message?: string | undefined;
|
|
190
192
|
constructor(
|
|
191
193
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
192
194
|
);
|
|
@@ -195,54 +197,62 @@ export interface DescribeICD10CMInferenceJobRequest {
|
|
|
195
197
|
JobId: string | undefined;
|
|
196
198
|
}
|
|
197
199
|
export interface DescribeICD10CMInferenceJobResponse {
|
|
198
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
200
|
+
ComprehendMedicalAsyncJobProperties?:
|
|
201
|
+
| ComprehendMedicalAsyncJobProperties
|
|
202
|
+
| undefined;
|
|
199
203
|
}
|
|
200
204
|
export interface DescribePHIDetectionJobRequest {
|
|
201
205
|
JobId: string | undefined;
|
|
202
206
|
}
|
|
203
207
|
export interface DescribePHIDetectionJobResponse {
|
|
204
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
208
|
+
ComprehendMedicalAsyncJobProperties?:
|
|
209
|
+
| ComprehendMedicalAsyncJobProperties
|
|
210
|
+
| undefined;
|
|
205
211
|
}
|
|
206
212
|
export interface DescribeRxNormInferenceJobRequest {
|
|
207
213
|
JobId: string | undefined;
|
|
208
214
|
}
|
|
209
215
|
export interface DescribeRxNormInferenceJobResponse {
|
|
210
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
216
|
+
ComprehendMedicalAsyncJobProperties?:
|
|
217
|
+
| ComprehendMedicalAsyncJobProperties
|
|
218
|
+
| undefined;
|
|
211
219
|
}
|
|
212
220
|
export interface DescribeSNOMEDCTInferenceJobRequest {
|
|
213
221
|
JobId: string | undefined;
|
|
214
222
|
}
|
|
215
223
|
export interface DescribeSNOMEDCTInferenceJobResponse {
|
|
216
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
224
|
+
ComprehendMedicalAsyncJobProperties?:
|
|
225
|
+
| ComprehendMedicalAsyncJobProperties
|
|
226
|
+
| undefined;
|
|
217
227
|
}
|
|
218
228
|
export interface DetectEntitiesRequest {
|
|
219
229
|
Text: string | undefined;
|
|
220
230
|
}
|
|
221
231
|
export interface Entity {
|
|
222
|
-
Id?: number;
|
|
223
|
-
BeginOffset?: number;
|
|
224
|
-
EndOffset?: number;
|
|
225
|
-
Score?: number;
|
|
226
|
-
Text?: string;
|
|
227
|
-
Category?: EntityType;
|
|
228
|
-
Type?: EntitySubType;
|
|
229
|
-
Traits?: Trait[];
|
|
230
|
-
Attributes?: Attribute[];
|
|
232
|
+
Id?: number | undefined;
|
|
233
|
+
BeginOffset?: number | undefined;
|
|
234
|
+
EndOffset?: number | undefined;
|
|
235
|
+
Score?: number | undefined;
|
|
236
|
+
Text?: string | undefined;
|
|
237
|
+
Category?: EntityType | undefined;
|
|
238
|
+
Type?: EntitySubType | undefined;
|
|
239
|
+
Traits?: Trait[] | undefined;
|
|
240
|
+
Attributes?: Attribute[] | undefined;
|
|
231
241
|
}
|
|
232
242
|
export interface UnmappedAttribute {
|
|
233
|
-
Type?: EntityType;
|
|
234
|
-
Attribute?: Attribute;
|
|
243
|
+
Type?: EntityType | undefined;
|
|
244
|
+
Attribute?: Attribute | undefined;
|
|
235
245
|
}
|
|
236
246
|
export interface DetectEntitiesResponse {
|
|
237
247
|
Entities: Entity[] | undefined;
|
|
238
|
-
UnmappedAttributes?: UnmappedAttribute[];
|
|
239
|
-
PaginationToken?: string;
|
|
248
|
+
UnmappedAttributes?: UnmappedAttribute[] | undefined;
|
|
249
|
+
PaginationToken?: string | undefined;
|
|
240
250
|
ModelVersion: string | undefined;
|
|
241
251
|
}
|
|
242
252
|
export declare class InvalidEncodingException extends __BaseException {
|
|
243
253
|
readonly name: "InvalidEncodingException";
|
|
244
254
|
readonly $fault: "client";
|
|
245
|
-
Message?: string;
|
|
255
|
+
Message?: string | undefined;
|
|
246
256
|
constructor(
|
|
247
257
|
opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>
|
|
248
258
|
);
|
|
@@ -250,7 +260,7 @@ export declare class InvalidEncodingException extends __BaseException {
|
|
|
250
260
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
251
261
|
readonly name: "ServiceUnavailableException";
|
|
252
262
|
readonly $fault: "server";
|
|
253
|
-
Message?: string;
|
|
263
|
+
Message?: string | undefined;
|
|
254
264
|
constructor(
|
|
255
265
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
256
266
|
);
|
|
@@ -258,7 +268,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
258
268
|
export declare class TextSizeLimitExceededException extends __BaseException {
|
|
259
269
|
readonly name: "TextSizeLimitExceededException";
|
|
260
270
|
readonly $fault: "client";
|
|
261
|
-
Message?: string;
|
|
271
|
+
Message?: string | undefined;
|
|
262
272
|
constructor(
|
|
263
273
|
opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
|
|
264
274
|
);
|
|
@@ -268,8 +278,8 @@ export interface DetectEntitiesV2Request {
|
|
|
268
278
|
}
|
|
269
279
|
export interface DetectEntitiesV2Response {
|
|
270
280
|
Entities: Entity[] | undefined;
|
|
271
|
-
UnmappedAttributes?: UnmappedAttribute[];
|
|
272
|
-
PaginationToken?: string;
|
|
281
|
+
UnmappedAttributes?: UnmappedAttribute[] | undefined;
|
|
282
|
+
PaginationToken?: string | undefined;
|
|
273
283
|
ModelVersion: string | undefined;
|
|
274
284
|
}
|
|
275
285
|
export interface DetectPHIRequest {
|
|
@@ -277,7 +287,7 @@ export interface DetectPHIRequest {
|
|
|
277
287
|
}
|
|
278
288
|
export interface DetectPHIResponse {
|
|
279
289
|
Entities: Entity[] | undefined;
|
|
280
|
-
PaginationToken?: string;
|
|
290
|
+
PaginationToken?: string | undefined;
|
|
281
291
|
ModelVersion: string | undefined;
|
|
282
292
|
}
|
|
283
293
|
export interface InferICD10CMRequest {
|
|
@@ -308,8 +318,8 @@ export declare const ICD10CMTraitName: {
|
|
|
308
318
|
export type ICD10CMTraitName =
|
|
309
319
|
(typeof ICD10CMTraitName)[keyof typeof ICD10CMTraitName];
|
|
310
320
|
export interface ICD10CMTrait {
|
|
311
|
-
Name?: ICD10CMTraitName;
|
|
312
|
-
Score?: number;
|
|
321
|
+
Name?: ICD10CMTraitName | undefined;
|
|
322
|
+
Score?: number | undefined;
|
|
313
323
|
}
|
|
314
324
|
export declare const ICD10CMAttributeType: {
|
|
315
325
|
readonly ACUITY: "ACUITY";
|
|
@@ -323,16 +333,16 @@ export declare const ICD10CMAttributeType: {
|
|
|
323
333
|
export type ICD10CMAttributeType =
|
|
324
334
|
(typeof ICD10CMAttributeType)[keyof typeof ICD10CMAttributeType];
|
|
325
335
|
export interface ICD10CMAttribute {
|
|
326
|
-
Type?: ICD10CMAttributeType;
|
|
327
|
-
Score?: number;
|
|
328
|
-
RelationshipScore?: number;
|
|
329
|
-
Id?: number;
|
|
330
|
-
BeginOffset?: number;
|
|
331
|
-
EndOffset?: number;
|
|
332
|
-
Text?: string;
|
|
333
|
-
Traits?: ICD10CMTrait[];
|
|
334
|
-
Category?: ICD10CMEntityType;
|
|
335
|
-
RelationshipType?: ICD10CMRelationshipType;
|
|
336
|
+
Type?: ICD10CMAttributeType | undefined;
|
|
337
|
+
Score?: number | undefined;
|
|
338
|
+
RelationshipScore?: number | undefined;
|
|
339
|
+
Id?: number | undefined;
|
|
340
|
+
BeginOffset?: number | undefined;
|
|
341
|
+
EndOffset?: number | undefined;
|
|
342
|
+
Text?: string | undefined;
|
|
343
|
+
Traits?: ICD10CMTrait[] | undefined;
|
|
344
|
+
Category?: ICD10CMEntityType | undefined;
|
|
345
|
+
RelationshipType?: ICD10CMRelationshipType | undefined;
|
|
336
346
|
}
|
|
337
347
|
export declare const ICD10CMEntityCategory: {
|
|
338
348
|
readonly MEDICAL_CONDITION: "MEDICAL_CONDITION";
|
|
@@ -340,26 +350,26 @@ export declare const ICD10CMEntityCategory: {
|
|
|
340
350
|
export type ICD10CMEntityCategory =
|
|
341
351
|
(typeof ICD10CMEntityCategory)[keyof typeof ICD10CMEntityCategory];
|
|
342
352
|
export interface ICD10CMConcept {
|
|
343
|
-
Description?: string;
|
|
344
|
-
Code?: string;
|
|
345
|
-
Score?: number;
|
|
353
|
+
Description?: string | undefined;
|
|
354
|
+
Code?: string | undefined;
|
|
355
|
+
Score?: number | undefined;
|
|
346
356
|
}
|
|
347
357
|
export interface ICD10CMEntity {
|
|
348
|
-
Id?: number;
|
|
349
|
-
Text?: string;
|
|
350
|
-
Category?: ICD10CMEntityCategory;
|
|
351
|
-
Type?: ICD10CMEntityType;
|
|
352
|
-
Score?: number;
|
|
353
|
-
BeginOffset?: number;
|
|
354
|
-
EndOffset?: number;
|
|
355
|
-
Attributes?: ICD10CMAttribute[];
|
|
356
|
-
Traits?: ICD10CMTrait[];
|
|
357
|
-
ICD10CMConcepts?: ICD10CMConcept[];
|
|
358
|
+
Id?: number | undefined;
|
|
359
|
+
Text?: string | undefined;
|
|
360
|
+
Category?: ICD10CMEntityCategory | undefined;
|
|
361
|
+
Type?: ICD10CMEntityType | undefined;
|
|
362
|
+
Score?: number | undefined;
|
|
363
|
+
BeginOffset?: number | undefined;
|
|
364
|
+
EndOffset?: number | undefined;
|
|
365
|
+
Attributes?: ICD10CMAttribute[] | undefined;
|
|
366
|
+
Traits?: ICD10CMTrait[] | undefined;
|
|
367
|
+
ICD10CMConcepts?: ICD10CMConcept[] | undefined;
|
|
358
368
|
}
|
|
359
369
|
export interface InferICD10CMResponse {
|
|
360
370
|
Entities: ICD10CMEntity[] | undefined;
|
|
361
|
-
PaginationToken?: string;
|
|
362
|
-
ModelVersion?: string;
|
|
371
|
+
PaginationToken?: string | undefined;
|
|
372
|
+
ModelVersion?: string | undefined;
|
|
363
373
|
}
|
|
364
374
|
export interface InferRxNormRequest {
|
|
365
375
|
Text: string | undefined;
|
|
@@ -371,8 +381,8 @@ export declare const RxNormTraitName: {
|
|
|
371
381
|
export type RxNormTraitName =
|
|
372
382
|
(typeof RxNormTraitName)[keyof typeof RxNormTraitName];
|
|
373
383
|
export interface RxNormTrait {
|
|
374
|
-
Name?: RxNormTraitName;
|
|
375
|
-
Score?: number;
|
|
384
|
+
Name?: RxNormTraitName | undefined;
|
|
385
|
+
Score?: number | undefined;
|
|
376
386
|
}
|
|
377
387
|
export declare const RxNormAttributeType: {
|
|
378
388
|
readonly DOSAGE: "DOSAGE";
|
|
@@ -386,14 +396,14 @@ export declare const RxNormAttributeType: {
|
|
|
386
396
|
export type RxNormAttributeType =
|
|
387
397
|
(typeof RxNormAttributeType)[keyof typeof RxNormAttributeType];
|
|
388
398
|
export interface RxNormAttribute {
|
|
389
|
-
Type?: RxNormAttributeType;
|
|
390
|
-
Score?: number;
|
|
391
|
-
RelationshipScore?: number;
|
|
392
|
-
Id?: number;
|
|
393
|
-
BeginOffset?: number;
|
|
394
|
-
EndOffset?: number;
|
|
395
|
-
Text?: string;
|
|
396
|
-
Traits?: RxNormTrait[];
|
|
399
|
+
Type?: RxNormAttributeType | undefined;
|
|
400
|
+
Score?: number | undefined;
|
|
401
|
+
RelationshipScore?: number | undefined;
|
|
402
|
+
Id?: number | undefined;
|
|
403
|
+
BeginOffset?: number | undefined;
|
|
404
|
+
EndOffset?: number | undefined;
|
|
405
|
+
Text?: string | undefined;
|
|
406
|
+
Traits?: RxNormTrait[] | undefined;
|
|
397
407
|
}
|
|
398
408
|
export declare const RxNormEntityCategory: {
|
|
399
409
|
readonly MEDICATION: "MEDICATION";
|
|
@@ -401,9 +411,9 @@ export declare const RxNormEntityCategory: {
|
|
|
401
411
|
export type RxNormEntityCategory =
|
|
402
412
|
(typeof RxNormEntityCategory)[keyof typeof RxNormEntityCategory];
|
|
403
413
|
export interface RxNormConcept {
|
|
404
|
-
Description?: string;
|
|
405
|
-
Code?: string;
|
|
406
|
-
Score?: number;
|
|
414
|
+
Description?: string | undefined;
|
|
415
|
+
Code?: string | undefined;
|
|
416
|
+
Score?: number | undefined;
|
|
407
417
|
}
|
|
408
418
|
export declare const RxNormEntityType: {
|
|
409
419
|
readonly BRAND_NAME: "BRAND_NAME";
|
|
@@ -412,21 +422,21 @@ export declare const RxNormEntityType: {
|
|
|
412
422
|
export type RxNormEntityType =
|
|
413
423
|
(typeof RxNormEntityType)[keyof typeof RxNormEntityType];
|
|
414
424
|
export interface RxNormEntity {
|
|
415
|
-
Id?: number;
|
|
416
|
-
Text?: string;
|
|
417
|
-
Category?: RxNormEntityCategory;
|
|
418
|
-
Type?: RxNormEntityType;
|
|
419
|
-
Score?: number;
|
|
420
|
-
BeginOffset?: number;
|
|
421
|
-
EndOffset?: number;
|
|
422
|
-
Attributes?: RxNormAttribute[];
|
|
423
|
-
Traits?: RxNormTrait[];
|
|
424
|
-
RxNormConcepts?: RxNormConcept[];
|
|
425
|
+
Id?: number | undefined;
|
|
426
|
+
Text?: string | undefined;
|
|
427
|
+
Category?: RxNormEntityCategory | undefined;
|
|
428
|
+
Type?: RxNormEntityType | undefined;
|
|
429
|
+
Score?: number | undefined;
|
|
430
|
+
BeginOffset?: number | undefined;
|
|
431
|
+
EndOffset?: number | undefined;
|
|
432
|
+
Attributes?: RxNormAttribute[] | undefined;
|
|
433
|
+
Traits?: RxNormTrait[] | undefined;
|
|
434
|
+
RxNormConcepts?: RxNormConcept[] | undefined;
|
|
425
435
|
}
|
|
426
436
|
export interface InferRxNormResponse {
|
|
427
437
|
Entities: RxNormEntity[] | undefined;
|
|
428
|
-
PaginationToken?: string;
|
|
429
|
-
ModelVersion?: string;
|
|
438
|
+
PaginationToken?: string | undefined;
|
|
439
|
+
ModelVersion?: string | undefined;
|
|
430
440
|
}
|
|
431
441
|
export interface InferSNOMEDCTRequest {
|
|
432
442
|
Text: string | undefined;
|
|
@@ -450,9 +460,9 @@ export declare const SNOMEDCTRelationshipType: {
|
|
|
450
460
|
export type SNOMEDCTRelationshipType =
|
|
451
461
|
(typeof SNOMEDCTRelationshipType)[keyof typeof SNOMEDCTRelationshipType];
|
|
452
462
|
export interface SNOMEDCTConcept {
|
|
453
|
-
Description?: string;
|
|
454
|
-
Code?: string;
|
|
455
|
-
Score?: number;
|
|
463
|
+
Description?: string | undefined;
|
|
464
|
+
Code?: string | undefined;
|
|
465
|
+
Score?: number | undefined;
|
|
456
466
|
}
|
|
457
467
|
export declare const SNOMEDCTTraitName: {
|
|
458
468
|
readonly DIAGNOSIS: "DIAGNOSIS";
|
|
@@ -468,8 +478,8 @@ export declare const SNOMEDCTTraitName: {
|
|
|
468
478
|
export type SNOMEDCTTraitName =
|
|
469
479
|
(typeof SNOMEDCTTraitName)[keyof typeof SNOMEDCTTraitName];
|
|
470
480
|
export interface SNOMEDCTTrait {
|
|
471
|
-
Name?: SNOMEDCTTraitName;
|
|
472
|
-
Score?: number;
|
|
481
|
+
Name?: SNOMEDCTTraitName | undefined;
|
|
482
|
+
Score?: number | undefined;
|
|
473
483
|
}
|
|
474
484
|
export declare const SNOMEDCTAttributeType: {
|
|
475
485
|
readonly ACUITY: "ACUITY";
|
|
@@ -482,17 +492,17 @@ export declare const SNOMEDCTAttributeType: {
|
|
|
482
492
|
export type SNOMEDCTAttributeType =
|
|
483
493
|
(typeof SNOMEDCTAttributeType)[keyof typeof SNOMEDCTAttributeType];
|
|
484
494
|
export interface SNOMEDCTAttribute {
|
|
485
|
-
Category?: SNOMEDCTEntityCategory;
|
|
486
|
-
Type?: SNOMEDCTAttributeType;
|
|
487
|
-
Score?: number;
|
|
488
|
-
RelationshipScore?: number;
|
|
489
|
-
RelationshipType?: SNOMEDCTRelationshipType;
|
|
490
|
-
Id?: number;
|
|
491
|
-
BeginOffset?: number;
|
|
492
|
-
EndOffset?: number;
|
|
493
|
-
Text?: string;
|
|
494
|
-
Traits?: SNOMEDCTTrait[];
|
|
495
|
-
SNOMEDCTConcepts?: SNOMEDCTConcept[];
|
|
495
|
+
Category?: SNOMEDCTEntityCategory | undefined;
|
|
496
|
+
Type?: SNOMEDCTAttributeType | undefined;
|
|
497
|
+
Score?: number | undefined;
|
|
498
|
+
RelationshipScore?: number | undefined;
|
|
499
|
+
RelationshipType?: SNOMEDCTRelationshipType | undefined;
|
|
500
|
+
Id?: number | undefined;
|
|
501
|
+
BeginOffset?: number | undefined;
|
|
502
|
+
EndOffset?: number | undefined;
|
|
503
|
+
Text?: string | undefined;
|
|
504
|
+
Traits?: SNOMEDCTTrait[] | undefined;
|
|
505
|
+
SNOMEDCTConcepts?: SNOMEDCTConcept[] | undefined;
|
|
496
506
|
}
|
|
497
507
|
export declare const SNOMEDCTEntityType: {
|
|
498
508
|
readonly DX_NAME: "DX_NAME";
|
|
@@ -503,175 +513,185 @@ export declare const SNOMEDCTEntityType: {
|
|
|
503
513
|
export type SNOMEDCTEntityType =
|
|
504
514
|
(typeof SNOMEDCTEntityType)[keyof typeof SNOMEDCTEntityType];
|
|
505
515
|
export interface SNOMEDCTEntity {
|
|
506
|
-
Id?: number;
|
|
507
|
-
Text?: string;
|
|
508
|
-
Category?: SNOMEDCTEntityCategory;
|
|
509
|
-
Type?: SNOMEDCTEntityType;
|
|
510
|
-
Score?: number;
|
|
511
|
-
BeginOffset?: number;
|
|
512
|
-
EndOffset?: number;
|
|
513
|
-
Attributes?: SNOMEDCTAttribute[];
|
|
514
|
-
Traits?: SNOMEDCTTrait[];
|
|
515
|
-
SNOMEDCTConcepts?: SNOMEDCTConcept[];
|
|
516
|
+
Id?: number | undefined;
|
|
517
|
+
Text?: string | undefined;
|
|
518
|
+
Category?: SNOMEDCTEntityCategory | undefined;
|
|
519
|
+
Type?: SNOMEDCTEntityType | undefined;
|
|
520
|
+
Score?: number | undefined;
|
|
521
|
+
BeginOffset?: number | undefined;
|
|
522
|
+
EndOffset?: number | undefined;
|
|
523
|
+
Attributes?: SNOMEDCTAttribute[] | undefined;
|
|
524
|
+
Traits?: SNOMEDCTTrait[] | undefined;
|
|
525
|
+
SNOMEDCTConcepts?: SNOMEDCTConcept[] | undefined;
|
|
516
526
|
}
|
|
517
527
|
export interface SNOMEDCTDetails {
|
|
518
|
-
Edition?: string;
|
|
519
|
-
Language?: string;
|
|
520
|
-
VersionDate?: string;
|
|
528
|
+
Edition?: string | undefined;
|
|
529
|
+
Language?: string | undefined;
|
|
530
|
+
VersionDate?: string | undefined;
|
|
521
531
|
}
|
|
522
532
|
export interface InferSNOMEDCTResponse {
|
|
523
533
|
Entities: SNOMEDCTEntity[] | undefined;
|
|
524
|
-
PaginationToken?: string;
|
|
525
|
-
ModelVersion?: string;
|
|
526
|
-
SNOMEDCTDetails?: SNOMEDCTDetails;
|
|
527
|
-
Characters?: Characters;
|
|
534
|
+
PaginationToken?: string | undefined;
|
|
535
|
+
ModelVersion?: string | undefined;
|
|
536
|
+
SNOMEDCTDetails?: SNOMEDCTDetails | undefined;
|
|
537
|
+
Characters?: Characters | undefined;
|
|
528
538
|
}
|
|
529
539
|
export interface ComprehendMedicalAsyncJobFilter {
|
|
530
|
-
JobName?: string;
|
|
531
|
-
JobStatus?: JobStatus;
|
|
532
|
-
SubmitTimeBefore?: Date;
|
|
533
|
-
SubmitTimeAfter?: Date;
|
|
540
|
+
JobName?: string | undefined;
|
|
541
|
+
JobStatus?: JobStatus | undefined;
|
|
542
|
+
SubmitTimeBefore?: Date | undefined;
|
|
543
|
+
SubmitTimeAfter?: Date | undefined;
|
|
534
544
|
}
|
|
535
545
|
export interface ListEntitiesDetectionV2JobsRequest {
|
|
536
|
-
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
537
|
-
NextToken?: string;
|
|
538
|
-
MaxResults?: number;
|
|
546
|
+
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
547
|
+
NextToken?: string | undefined;
|
|
548
|
+
MaxResults?: number | undefined;
|
|
539
549
|
}
|
|
540
550
|
export interface ListEntitiesDetectionV2JobsResponse {
|
|
541
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
542
|
-
|
|
551
|
+
ComprehendMedicalAsyncJobPropertiesList?:
|
|
552
|
+
| ComprehendMedicalAsyncJobProperties[]
|
|
553
|
+
| undefined;
|
|
554
|
+
NextToken?: string | undefined;
|
|
543
555
|
}
|
|
544
556
|
export declare class ValidationException extends __BaseException {
|
|
545
557
|
readonly name: "ValidationException";
|
|
546
558
|
readonly $fault: "client";
|
|
547
|
-
Message?: string;
|
|
559
|
+
Message?: string | undefined;
|
|
548
560
|
constructor(
|
|
549
561
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
550
562
|
);
|
|
551
563
|
}
|
|
552
564
|
export interface ListICD10CMInferenceJobsRequest {
|
|
553
|
-
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
554
|
-
NextToken?: string;
|
|
555
|
-
MaxResults?: number;
|
|
565
|
+
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
566
|
+
NextToken?: string | undefined;
|
|
567
|
+
MaxResults?: number | undefined;
|
|
556
568
|
}
|
|
557
569
|
export interface ListICD10CMInferenceJobsResponse {
|
|
558
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
559
|
-
|
|
570
|
+
ComprehendMedicalAsyncJobPropertiesList?:
|
|
571
|
+
| ComprehendMedicalAsyncJobProperties[]
|
|
572
|
+
| undefined;
|
|
573
|
+
NextToken?: string | undefined;
|
|
560
574
|
}
|
|
561
575
|
export interface ListPHIDetectionJobsRequest {
|
|
562
|
-
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
563
|
-
NextToken?: string;
|
|
564
|
-
MaxResults?: number;
|
|
576
|
+
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
577
|
+
NextToken?: string | undefined;
|
|
578
|
+
MaxResults?: number | undefined;
|
|
565
579
|
}
|
|
566
580
|
export interface ListPHIDetectionJobsResponse {
|
|
567
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
568
|
-
|
|
581
|
+
ComprehendMedicalAsyncJobPropertiesList?:
|
|
582
|
+
| ComprehendMedicalAsyncJobProperties[]
|
|
583
|
+
| undefined;
|
|
584
|
+
NextToken?: string | undefined;
|
|
569
585
|
}
|
|
570
586
|
export interface ListRxNormInferenceJobsRequest {
|
|
571
|
-
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
572
|
-
NextToken?: string;
|
|
573
|
-
MaxResults?: number;
|
|
587
|
+
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
588
|
+
NextToken?: string | undefined;
|
|
589
|
+
MaxResults?: number | undefined;
|
|
574
590
|
}
|
|
575
591
|
export interface ListRxNormInferenceJobsResponse {
|
|
576
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
577
|
-
|
|
592
|
+
ComprehendMedicalAsyncJobPropertiesList?:
|
|
593
|
+
| ComprehendMedicalAsyncJobProperties[]
|
|
594
|
+
| undefined;
|
|
595
|
+
NextToken?: string | undefined;
|
|
578
596
|
}
|
|
579
597
|
export interface ListSNOMEDCTInferenceJobsRequest {
|
|
580
|
-
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
581
|
-
NextToken?: string;
|
|
582
|
-
MaxResults?: number;
|
|
598
|
+
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
599
|
+
NextToken?: string | undefined;
|
|
600
|
+
MaxResults?: number | undefined;
|
|
583
601
|
}
|
|
584
602
|
export interface ListSNOMEDCTInferenceJobsResponse {
|
|
585
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
586
|
-
|
|
603
|
+
ComprehendMedicalAsyncJobPropertiesList?:
|
|
604
|
+
| ComprehendMedicalAsyncJobProperties[]
|
|
605
|
+
| undefined;
|
|
606
|
+
NextToken?: string | undefined;
|
|
587
607
|
}
|
|
588
608
|
export interface StartEntitiesDetectionV2JobRequest {
|
|
589
609
|
InputDataConfig: InputDataConfig | undefined;
|
|
590
610
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
591
611
|
DataAccessRoleArn: string | undefined;
|
|
592
|
-
JobName?: string;
|
|
593
|
-
ClientRequestToken?: string;
|
|
594
|
-
KMSKey?: string;
|
|
612
|
+
JobName?: string | undefined;
|
|
613
|
+
ClientRequestToken?: string | undefined;
|
|
614
|
+
KMSKey?: string | undefined;
|
|
595
615
|
LanguageCode: LanguageCode | undefined;
|
|
596
616
|
}
|
|
597
617
|
export interface StartEntitiesDetectionV2JobResponse {
|
|
598
|
-
JobId?: string;
|
|
618
|
+
JobId?: string | undefined;
|
|
599
619
|
}
|
|
600
620
|
export interface StartICD10CMInferenceJobRequest {
|
|
601
621
|
InputDataConfig: InputDataConfig | undefined;
|
|
602
622
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
603
623
|
DataAccessRoleArn: string | undefined;
|
|
604
|
-
JobName?: string;
|
|
605
|
-
ClientRequestToken?: string;
|
|
606
|
-
KMSKey?: string;
|
|
624
|
+
JobName?: string | undefined;
|
|
625
|
+
ClientRequestToken?: string | undefined;
|
|
626
|
+
KMSKey?: string | undefined;
|
|
607
627
|
LanguageCode: LanguageCode | undefined;
|
|
608
628
|
}
|
|
609
629
|
export interface StartICD10CMInferenceJobResponse {
|
|
610
|
-
JobId?: string;
|
|
630
|
+
JobId?: string | undefined;
|
|
611
631
|
}
|
|
612
632
|
export interface StartPHIDetectionJobRequest {
|
|
613
633
|
InputDataConfig: InputDataConfig | undefined;
|
|
614
634
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
615
635
|
DataAccessRoleArn: string | undefined;
|
|
616
|
-
JobName?: string;
|
|
617
|
-
ClientRequestToken?: string;
|
|
618
|
-
KMSKey?: string;
|
|
636
|
+
JobName?: string | undefined;
|
|
637
|
+
ClientRequestToken?: string | undefined;
|
|
638
|
+
KMSKey?: string | undefined;
|
|
619
639
|
LanguageCode: LanguageCode | undefined;
|
|
620
640
|
}
|
|
621
641
|
export interface StartPHIDetectionJobResponse {
|
|
622
|
-
JobId?: string;
|
|
642
|
+
JobId?: string | undefined;
|
|
623
643
|
}
|
|
624
644
|
export interface StartRxNormInferenceJobRequest {
|
|
625
645
|
InputDataConfig: InputDataConfig | undefined;
|
|
626
646
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
627
647
|
DataAccessRoleArn: string | undefined;
|
|
628
|
-
JobName?: string;
|
|
629
|
-
ClientRequestToken?: string;
|
|
630
|
-
KMSKey?: string;
|
|
648
|
+
JobName?: string | undefined;
|
|
649
|
+
ClientRequestToken?: string | undefined;
|
|
650
|
+
KMSKey?: string | undefined;
|
|
631
651
|
LanguageCode: LanguageCode | undefined;
|
|
632
652
|
}
|
|
633
653
|
export interface StartRxNormInferenceJobResponse {
|
|
634
|
-
JobId?: string;
|
|
654
|
+
JobId?: string | undefined;
|
|
635
655
|
}
|
|
636
656
|
export interface StartSNOMEDCTInferenceJobRequest {
|
|
637
657
|
InputDataConfig: InputDataConfig | undefined;
|
|
638
658
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
639
659
|
DataAccessRoleArn: string | undefined;
|
|
640
|
-
JobName?: string;
|
|
641
|
-
ClientRequestToken?: string;
|
|
642
|
-
KMSKey?: string;
|
|
660
|
+
JobName?: string | undefined;
|
|
661
|
+
ClientRequestToken?: string | undefined;
|
|
662
|
+
KMSKey?: string | undefined;
|
|
643
663
|
LanguageCode: LanguageCode | undefined;
|
|
644
664
|
}
|
|
645
665
|
export interface StartSNOMEDCTInferenceJobResponse {
|
|
646
|
-
JobId?: string;
|
|
666
|
+
JobId?: string | undefined;
|
|
647
667
|
}
|
|
648
668
|
export interface StopEntitiesDetectionV2JobRequest {
|
|
649
669
|
JobId: string | undefined;
|
|
650
670
|
}
|
|
651
671
|
export interface StopEntitiesDetectionV2JobResponse {
|
|
652
|
-
JobId?: string;
|
|
672
|
+
JobId?: string | undefined;
|
|
653
673
|
}
|
|
654
674
|
export interface StopICD10CMInferenceJobRequest {
|
|
655
675
|
JobId: string | undefined;
|
|
656
676
|
}
|
|
657
677
|
export interface StopICD10CMInferenceJobResponse {
|
|
658
|
-
JobId?: string;
|
|
678
|
+
JobId?: string | undefined;
|
|
659
679
|
}
|
|
660
680
|
export interface StopPHIDetectionJobRequest {
|
|
661
681
|
JobId: string | undefined;
|
|
662
682
|
}
|
|
663
683
|
export interface StopPHIDetectionJobResponse {
|
|
664
|
-
JobId?: string;
|
|
684
|
+
JobId?: string | undefined;
|
|
665
685
|
}
|
|
666
686
|
export interface StopRxNormInferenceJobRequest {
|
|
667
687
|
JobId: string | undefined;
|
|
668
688
|
}
|
|
669
689
|
export interface StopRxNormInferenceJobResponse {
|
|
670
|
-
JobId?: string;
|
|
690
|
+
JobId?: string | undefined;
|
|
671
691
|
}
|
|
672
692
|
export interface StopSNOMEDCTInferenceJobRequest {
|
|
673
693
|
JobId: string | undefined;
|
|
674
694
|
}
|
|
675
695
|
export interface StopSNOMEDCTInferenceJobResponse {
|
|
676
|
-
JobId?: string;
|
|
696
|
+
JobId?: string | undefined;
|
|
677
697
|
}
|