@aws-sdk/client-comprehendmedical 3.325.0 → 3.326.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/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +27 -0
- package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +27 -0
- package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +27 -0
- package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +27 -0
- package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +27 -0
- package/dist-types/commands/DetectEntitiesCommand.d.ts +60 -0
- package/dist-types/commands/DetectEntitiesV2Command.d.ts +60 -0
- package/dist-types/commands/DetectPHICommand.d.ts +43 -0
- package/dist-types/commands/InferICD10CMCommand.d.ts +50 -0
- package/dist-types/commands/InferRxNormCommand.d.ts +48 -0
- package/dist-types/commands/InferSNOMEDCTCommand.d.ts +65 -0
- package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +30 -0
- package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +30 -0
- package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +30 -0
- package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +30 -0
- package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +30 -0
- package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +6 -0
- package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +6 -0
- package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +6 -0
- package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +6 -0
- package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -32,6 +32,31 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEnt
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeEntitiesDetectionV2JobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeEntitiesDetectionV2JobResponse
|
|
36
|
+
* // ComprehendMedicalAsyncJobProperties: { // ComprehendMedicalAsyncJobProperties
|
|
37
|
+
* // JobId: "STRING_VALUE",
|
|
38
|
+
* // JobName: "STRING_VALUE",
|
|
39
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
40
|
+
* // Message: "STRING_VALUE",
|
|
41
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // InputDataConfig: { // InputDataConfig
|
|
45
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
46
|
+
* // S3Key: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
49
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
50
|
+
* // S3Key: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // LanguageCode: "en",
|
|
53
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
54
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
55
|
+
* // KMSKey: "STRING_VALUE",
|
|
56
|
+
* // ModelVersion: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param DescribeEntitiesDetectionV2JobCommandInput - {@link DescribeEntitiesDetectionV2JobCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput extends DescribeEnt
|
|
|
56
81
|
* then try your request again. Contact customer support for more information about a service
|
|
57
82
|
* limit increase. </p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class DescribeEntitiesDetectionV2JobCommand extends $Command<DescribeEntitiesDetectionV2JobCommandInput, DescribeEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -32,6 +32,31 @@ export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10C
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeICD10CMInferenceJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeICD10CMInferenceJobResponse
|
|
36
|
+
* // ComprehendMedicalAsyncJobProperties: { // ComprehendMedicalAsyncJobProperties
|
|
37
|
+
* // JobId: "STRING_VALUE",
|
|
38
|
+
* // JobName: "STRING_VALUE",
|
|
39
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
40
|
+
* // Message: "STRING_VALUE",
|
|
41
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // InputDataConfig: { // InputDataConfig
|
|
45
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
46
|
+
* // S3Key: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
49
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
50
|
+
* // S3Key: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // LanguageCode: "en",
|
|
53
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
54
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
55
|
+
* // KMSKey: "STRING_VALUE",
|
|
56
|
+
* // ModelVersion: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param DescribeICD10CMInferenceJobCommandInput - {@link DescribeICD10CMInferenceJobCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface DescribeICD10CMInferenceJobCommandOutput extends DescribeICD10C
|
|
|
56
81
|
* then try your request again. Contact customer support for more information about a service
|
|
57
82
|
* limit increase. </p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class DescribeICD10CMInferenceJobCommand extends $Command<DescribeICD10CMInferenceJobCommandInput, DescribeICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -32,6 +32,31 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribePHIDetectionJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribePHIDetectionJobResponse
|
|
36
|
+
* // ComprehendMedicalAsyncJobProperties: { // ComprehendMedicalAsyncJobProperties
|
|
37
|
+
* // JobId: "STRING_VALUE",
|
|
38
|
+
* // JobName: "STRING_VALUE",
|
|
39
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
40
|
+
* // Message: "STRING_VALUE",
|
|
41
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // InputDataConfig: { // InputDataConfig
|
|
45
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
46
|
+
* // S3Key: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
49
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
50
|
+
* // S3Key: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // LanguageCode: "en",
|
|
53
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
54
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
55
|
+
* // KMSKey: "STRING_VALUE",
|
|
56
|
+
* // ModelVersion: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param DescribePHIDetectionJobCommandInput - {@link DescribePHIDetectionJobCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti
|
|
|
56
81
|
* then try your request again. Contact customer support for more information about a service
|
|
57
82
|
* limit increase. </p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class DescribePHIDetectionJobCommand extends $Command<DescribePHIDetectionJobCommandInput, DescribePHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -32,6 +32,31 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeRxNormInferenceJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeRxNormInferenceJobResponse
|
|
36
|
+
* // ComprehendMedicalAsyncJobProperties: { // ComprehendMedicalAsyncJobProperties
|
|
37
|
+
* // JobId: "STRING_VALUE",
|
|
38
|
+
* // JobName: "STRING_VALUE",
|
|
39
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
40
|
+
* // Message: "STRING_VALUE",
|
|
41
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // InputDataConfig: { // InputDataConfig
|
|
45
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
46
|
+
* // S3Key: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
49
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
50
|
+
* // S3Key: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // LanguageCode: "en",
|
|
53
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
54
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
55
|
+
* // KMSKey: "STRING_VALUE",
|
|
56
|
+
* // ModelVersion: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param DescribeRxNormInferenceJobCommandInput - {@link DescribeRxNormInferenceJobCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI
|
|
|
56
81
|
* then try your request again. Contact customer support for more information about a service
|
|
57
82
|
* limit increase. </p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class DescribeRxNormInferenceJobCommand extends $Command<DescribeRxNormInferenceJobCommandInput, DescribeRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -33,6 +33,31 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOME
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeSNOMEDCTInferenceJobCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeSNOMEDCTInferenceJobResponse
|
|
37
|
+
* // ComprehendMedicalAsyncJobProperties: { // ComprehendMedicalAsyncJobProperties
|
|
38
|
+
* // JobId: "STRING_VALUE",
|
|
39
|
+
* // JobName: "STRING_VALUE",
|
|
40
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
41
|
+
* // Message: "STRING_VALUE",
|
|
42
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // InputDataConfig: { // InputDataConfig
|
|
46
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
47
|
+
* // S3Key: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
50
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
51
|
+
* // S3Key: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // LanguageCode: "en",
|
|
54
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
55
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
56
|
+
* // KMSKey: "STRING_VALUE",
|
|
57
|
+
* // ModelVersion: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
36
61
|
* ```
|
|
37
62
|
*
|
|
38
63
|
* @param DescribeSNOMEDCTInferenceJobCommandInput - {@link DescribeSNOMEDCTInferenceJobCommandInput}
|
|
@@ -57,6 +82,8 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput extends DescribeSNOME
|
|
|
57
82
|
* then try your request again. Contact customer support for more information about a service
|
|
58
83
|
* limit increase. </p>
|
|
59
84
|
*
|
|
85
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
60
87
|
*
|
|
61
88
|
*/
|
|
62
89
|
export declare class DescribeSNOMEDCTInferenceJobCommand extends $Command<DescribeSNOMEDCTInferenceJobCommandInput, DescribeSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -36,6 +36,64 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DetectEntitiesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DetectEntitiesResponse
|
|
40
|
+
* // Entities: [ // EntityList // required
|
|
41
|
+
* // { // Entity
|
|
42
|
+
* // Id: Number("int"),
|
|
43
|
+
* // BeginOffset: Number("int"),
|
|
44
|
+
* // EndOffset: Number("int"),
|
|
45
|
+
* // Score: Number("float"),
|
|
46
|
+
* // Text: "STRING_VALUE",
|
|
47
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
48
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
49
|
+
* // Traits: [ // TraitList
|
|
50
|
+
* // { // Trait
|
|
51
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
52
|
+
* // Score: Number("float"),
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // Attributes: [ // AttributeList
|
|
56
|
+
* // { // Attribute
|
|
57
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
58
|
+
* // Score: Number("float"),
|
|
59
|
+
* // RelationshipScore: Number("float"),
|
|
60
|
+
* // RelationshipType: "EVERY" || "WITH_DOSAGE" || "ADMINISTERED_VIA" || "FOR" || "NEGATIVE" || "OVERLAP" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "AMOUNT",
|
|
61
|
+
* // Id: Number("int"),
|
|
62
|
+
* // BeginOffset: Number("int"),
|
|
63
|
+
* // EndOffset: Number("int"),
|
|
64
|
+
* // Text: "STRING_VALUE",
|
|
65
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
66
|
+
* // Traits: [
|
|
67
|
+
* // {
|
|
68
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
69
|
+
* // Score: Number("float"),
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // UnmappedAttributes: [ // UnmappedAttributeList
|
|
77
|
+
* // { // UnmappedAttribute
|
|
78
|
+
* // Type: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
79
|
+
* // Attribute: {
|
|
80
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
81
|
+
* // Score: Number("float"),
|
|
82
|
+
* // RelationshipScore: Number("float"),
|
|
83
|
+
* // RelationshipType: "EVERY" || "WITH_DOSAGE" || "ADMINISTERED_VIA" || "FOR" || "NEGATIVE" || "OVERLAP" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "AMOUNT",
|
|
84
|
+
* // Id: Number("int"),
|
|
85
|
+
* // BeginOffset: Number("int"),
|
|
86
|
+
* // EndOffset: Number("int"),
|
|
87
|
+
* // Text: "STRING_VALUE",
|
|
88
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
89
|
+
* // Traits: "<TraitList>",
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // PaginationToken: "STRING_VALUE",
|
|
94
|
+
* // ModelVersion: "STRING_VALUE", // required
|
|
95
|
+
* // };
|
|
96
|
+
*
|
|
39
97
|
* ```
|
|
40
98
|
*
|
|
41
99
|
* @param DetectEntitiesCommandInput - {@link DetectEntitiesCommandInput}
|
|
@@ -68,6 +126,8 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M
|
|
|
68
126
|
* then try your request again. Contact customer support for more information about a service
|
|
69
127
|
* limit increase. </p>
|
|
70
128
|
*
|
|
129
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
71
131
|
*
|
|
72
132
|
*/
|
|
73
133
|
export declare class DetectEntitiesCommand extends $Command<DetectEntitiesCommandInput, DetectEntitiesCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -40,6 +40,64 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response,
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DetectEntitiesV2Command(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DetectEntitiesV2Response
|
|
44
|
+
* // Entities: [ // EntityList // required
|
|
45
|
+
* // { // Entity
|
|
46
|
+
* // Id: Number("int"),
|
|
47
|
+
* // BeginOffset: Number("int"),
|
|
48
|
+
* // EndOffset: Number("int"),
|
|
49
|
+
* // Score: Number("float"),
|
|
50
|
+
* // Text: "STRING_VALUE",
|
|
51
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
52
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
53
|
+
* // Traits: [ // TraitList
|
|
54
|
+
* // { // Trait
|
|
55
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
56
|
+
* // Score: Number("float"),
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // Attributes: [ // AttributeList
|
|
60
|
+
* // { // Attribute
|
|
61
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
62
|
+
* // Score: Number("float"),
|
|
63
|
+
* // RelationshipScore: Number("float"),
|
|
64
|
+
* // RelationshipType: "EVERY" || "WITH_DOSAGE" || "ADMINISTERED_VIA" || "FOR" || "NEGATIVE" || "OVERLAP" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "AMOUNT",
|
|
65
|
+
* // Id: Number("int"),
|
|
66
|
+
* // BeginOffset: Number("int"),
|
|
67
|
+
* // EndOffset: Number("int"),
|
|
68
|
+
* // Text: "STRING_VALUE",
|
|
69
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
70
|
+
* // Traits: [
|
|
71
|
+
* // {
|
|
72
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
73
|
+
* // Score: Number("float"),
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // UnmappedAttributes: [ // UnmappedAttributeList
|
|
81
|
+
* // { // UnmappedAttribute
|
|
82
|
+
* // Type: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
83
|
+
* // Attribute: {
|
|
84
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
85
|
+
* // Score: Number("float"),
|
|
86
|
+
* // RelationshipScore: Number("float"),
|
|
87
|
+
* // RelationshipType: "EVERY" || "WITH_DOSAGE" || "ADMINISTERED_VIA" || "FOR" || "NEGATIVE" || "OVERLAP" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "AMOUNT",
|
|
88
|
+
* // Id: Number("int"),
|
|
89
|
+
* // BeginOffset: Number("int"),
|
|
90
|
+
* // EndOffset: Number("int"),
|
|
91
|
+
* // Text: "STRING_VALUE",
|
|
92
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
93
|
+
* // Traits: "<TraitList>",
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // PaginationToken: "STRING_VALUE",
|
|
98
|
+
* // ModelVersion: "STRING_VALUE", // required
|
|
99
|
+
* // };
|
|
100
|
+
*
|
|
43
101
|
* ```
|
|
44
102
|
*
|
|
45
103
|
* @param DetectEntitiesV2CommandInput - {@link DetectEntitiesV2CommandInput}
|
|
@@ -72,6 +130,8 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response,
|
|
|
72
130
|
* then try your request again. Contact customer support for more information about a service
|
|
73
131
|
* limit increase. </p>
|
|
74
132
|
*
|
|
133
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
75
135
|
*
|
|
76
136
|
*/
|
|
77
137
|
export declare class DetectEntitiesV2Command extends $Command<DetectEntitiesV2CommandInput, DetectEntitiesV2CommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -33,6 +33,47 @@ export interface DetectPHICommandOutput extends DetectPHIResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DetectPHICommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DetectPHIResponse
|
|
37
|
+
* // Entities: [ // EntityList // required
|
|
38
|
+
* // { // Entity
|
|
39
|
+
* // Id: Number("int"),
|
|
40
|
+
* // BeginOffset: Number("int"),
|
|
41
|
+
* // EndOffset: Number("int"),
|
|
42
|
+
* // Score: Number("float"),
|
|
43
|
+
* // Text: "STRING_VALUE",
|
|
44
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
45
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
46
|
+
* // Traits: [ // TraitList
|
|
47
|
+
* // { // Trait
|
|
48
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
49
|
+
* // Score: Number("float"),
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // Attributes: [ // AttributeList
|
|
53
|
+
* // { // Attribute
|
|
54
|
+
* // Type: "NAME" || "DX_NAME" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "GENERIC_NAME" || "BRAND_NAME" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_NAME" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "PROCEDURE_NAME" || "TREATMENT_NAME" || "DATE" || "AGE" || "CONTACT_POINT" || "PHONE_OR_FAX" || "EMAIL" || "IDENTIFIER" || "ID" || "URL" || "ADDRESS" || "PROFESSION" || "SYSTEM_ORGAN_SITE" || "DIRECTION" || "QUALITY" || "QUANTITY" || "TIME_EXPRESSION" || "TIME_TO_MEDICATION_NAME" || "TIME_TO_DX_NAME" || "TIME_TO_TEST_NAME" || "TIME_TO_PROCEDURE_NAME" || "TIME_TO_TREATMENT_NAME" || "AMOUNT" || "GENDER" || "RACE_ETHNICITY" || "ALLERGIES" || "TOBACCO_USE" || "ALCOHOL_CONSUMPTION" || "REC_DRUG_USE",
|
|
55
|
+
* // Score: Number("float"),
|
|
56
|
+
* // RelationshipScore: Number("float"),
|
|
57
|
+
* // RelationshipType: "EVERY" || "WITH_DOSAGE" || "ADMINISTERED_VIA" || "FOR" || "NEGATIVE" || "OVERLAP" || "DOSAGE" || "ROUTE_OR_MODE" || "FORM" || "FREQUENCY" || "DURATION" || "STRENGTH" || "RATE" || "ACUITY" || "TEST_VALUE" || "TEST_UNITS" || "TEST_UNIT" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "AMOUNT",
|
|
58
|
+
* // Id: Number("int"),
|
|
59
|
+
* // BeginOffset: Number("int"),
|
|
60
|
+
* // EndOffset: Number("int"),
|
|
61
|
+
* // Text: "STRING_VALUE",
|
|
62
|
+
* // Category: "MEDICATION" || "MEDICAL_CONDITION" || "PROTECTED_HEALTH_INFORMATION" || "TEST_TREATMENT_PROCEDURE" || "ANATOMY" || "TIME_EXPRESSION" || "BEHAVIORAL_ENVIRONMENTAL_SOCIAL",
|
|
63
|
+
* // Traits: [
|
|
64
|
+
* // {
|
|
65
|
+
* // Name: "SIGN" || "SYMPTOM" || "DIAGNOSIS" || "NEGATION" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
66
|
+
* // Score: Number("float"),
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // PaginationToken: "STRING_VALUE",
|
|
74
|
+
* // ModelVersion: "STRING_VALUE", // required
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
36
77
|
* ```
|
|
37
78
|
*
|
|
38
79
|
* @param DetectPHICommandInput - {@link DetectPHICommandInput}
|
|
@@ -65,6 +106,8 @@ export interface DetectPHICommandOutput extends DetectPHIResponse, __MetadataBea
|
|
|
65
106
|
* then try your request again. Contact customer support for more information about a service
|
|
66
107
|
* limit increase. </p>
|
|
67
108
|
*
|
|
109
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
68
111
|
*
|
|
69
112
|
*/
|
|
70
113
|
export declare class DetectPHICommand extends $Command<DetectPHICommandInput, DetectPHICommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -34,6 +34,54 @@ export interface InferICD10CMCommandOutput extends InferICD10CMResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new InferICD10CMCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // InferICD10CMResponse
|
|
38
|
+
* // Entities: [ // ICD10CMEntityList // required
|
|
39
|
+
* // { // ICD10CMEntity
|
|
40
|
+
* // Id: Number("int"),
|
|
41
|
+
* // Text: "STRING_VALUE",
|
|
42
|
+
* // Category: "MEDICAL_CONDITION",
|
|
43
|
+
* // Type: "DX_NAME" || "TIME_EXPRESSION",
|
|
44
|
+
* // Score: Number("float"),
|
|
45
|
+
* // BeginOffset: Number("int"),
|
|
46
|
+
* // EndOffset: Number("int"),
|
|
47
|
+
* // Attributes: [ // ICD10CMAttributeList
|
|
48
|
+
* // { // ICD10CMAttribute
|
|
49
|
+
* // Type: "ACUITY" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "QUALITY" || "QUANTITY" || "TIME_TO_DX_NAME" || "TIME_EXPRESSION",
|
|
50
|
+
* // Score: Number("float"),
|
|
51
|
+
* // RelationshipScore: Number("float"),
|
|
52
|
+
* // Id: Number("int"),
|
|
53
|
+
* // BeginOffset: Number("int"),
|
|
54
|
+
* // EndOffset: Number("int"),
|
|
55
|
+
* // Text: "STRING_VALUE",
|
|
56
|
+
* // Traits: [ // ICD10CMTraitList
|
|
57
|
+
* // { // ICD10CMTrait
|
|
58
|
+
* // Name: "NEGATION" || "DIAGNOSIS" || "SIGN" || "SYMPTOM" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE",
|
|
59
|
+
* // Score: Number("float"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // Category: "DX_NAME" || "TIME_EXPRESSION",
|
|
63
|
+
* // RelationshipType: "OVERLAP" || "SYSTEM_ORGAN_SITE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // Traits: [
|
|
67
|
+
* // {
|
|
68
|
+
* // Name: "NEGATION" || "DIAGNOSIS" || "SIGN" || "SYMPTOM" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE",
|
|
69
|
+
* // Score: Number("float"),
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // ICD10CMConcepts: [ // ICD10CMConceptList
|
|
73
|
+
* // { // ICD10CMConcept
|
|
74
|
+
* // Description: "STRING_VALUE",
|
|
75
|
+
* // Code: "STRING_VALUE",
|
|
76
|
+
* // Score: Number("float"),
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // PaginationToken: "STRING_VALUE",
|
|
82
|
+
* // ModelVersion: "STRING_VALUE",
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
37
85
|
* ```
|
|
38
86
|
*
|
|
39
87
|
* @param InferICD10CMCommandInput - {@link InferICD10CMCommandInput}
|
|
@@ -66,6 +114,8 @@ export interface InferICD10CMCommandOutput extends InferICD10CMResponse, __Metad
|
|
|
66
114
|
* then try your request again. Contact customer support for more information about a service
|
|
67
115
|
* limit increase. </p>
|
|
68
116
|
*
|
|
117
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
69
119
|
*
|
|
70
120
|
*/
|
|
71
121
|
export declare class InferICD10CMCommand extends $Command<InferICD10CMCommandInput, InferICD10CMCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -33,6 +33,52 @@ export interface InferRxNormCommandOutput extends InferRxNormResponse, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new InferRxNormCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // InferRxNormResponse
|
|
37
|
+
* // Entities: [ // RxNormEntityList // required
|
|
38
|
+
* // { // RxNormEntity
|
|
39
|
+
* // Id: Number("int"),
|
|
40
|
+
* // Text: "STRING_VALUE",
|
|
41
|
+
* // Category: "MEDICATION",
|
|
42
|
+
* // Type: "BRAND_NAME" || "GENERIC_NAME",
|
|
43
|
+
* // Score: Number("float"),
|
|
44
|
+
* // BeginOffset: Number("int"),
|
|
45
|
+
* // EndOffset: Number("int"),
|
|
46
|
+
* // Attributes: [ // RxNormAttributeList
|
|
47
|
+
* // { // RxNormAttribute
|
|
48
|
+
* // Type: "DOSAGE" || "DURATION" || "FORM" || "FREQUENCY" || "RATE" || "ROUTE_OR_MODE" || "STRENGTH",
|
|
49
|
+
* // Score: Number("float"),
|
|
50
|
+
* // RelationshipScore: Number("float"),
|
|
51
|
+
* // Id: Number("int"),
|
|
52
|
+
* // BeginOffset: Number("int"),
|
|
53
|
+
* // EndOffset: Number("int"),
|
|
54
|
+
* // Text: "STRING_VALUE",
|
|
55
|
+
* // Traits: [ // RxNormTraitList
|
|
56
|
+
* // { // RxNormTrait
|
|
57
|
+
* // Name: "NEGATION",
|
|
58
|
+
* // Score: Number("float"),
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // Traits: [
|
|
64
|
+
* // {
|
|
65
|
+
* // Name: "NEGATION",
|
|
66
|
+
* // Score: Number("float"),
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // RxNormConcepts: [ // RxNormConceptList
|
|
70
|
+
* // { // RxNormConcept
|
|
71
|
+
* // Description: "STRING_VALUE",
|
|
72
|
+
* // Code: "STRING_VALUE",
|
|
73
|
+
* // Score: Number("float"),
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // PaginationToken: "STRING_VALUE",
|
|
79
|
+
* // ModelVersion: "STRING_VALUE",
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
36
82
|
* ```
|
|
37
83
|
*
|
|
38
84
|
* @param InferRxNormCommandInput - {@link InferRxNormCommandInput}
|
|
@@ -65,6 +111,8 @@ export interface InferRxNormCommandOutput extends InferRxNormResponse, __Metadat
|
|
|
65
111
|
* then try your request again. Contact customer support for more information about a service
|
|
66
112
|
* limit increase. </p>
|
|
67
113
|
*
|
|
114
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
68
116
|
*
|
|
69
117
|
*/
|
|
70
118
|
export declare class InferRxNormCommand extends $Command<InferRxNormCommandInput, InferRxNormCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -32,6 +32,69 @@ export interface InferSNOMEDCTCommandOutput extends InferSNOMEDCTResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new InferSNOMEDCTCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // InferSNOMEDCTResponse
|
|
36
|
+
* // Entities: [ // SNOMEDCTEntityList // required
|
|
37
|
+
* // { // SNOMEDCTEntity
|
|
38
|
+
* // Id: Number("int"),
|
|
39
|
+
* // Text: "STRING_VALUE",
|
|
40
|
+
* // Category: "MEDICAL_CONDITION" || "ANATOMY" || "TEST_TREATMENT_PROCEDURE",
|
|
41
|
+
* // Type: "DX_NAME" || "TEST_NAME" || "PROCEDURE_NAME" || "TREATMENT_NAME",
|
|
42
|
+
* // Score: Number("float"),
|
|
43
|
+
* // BeginOffset: Number("int"),
|
|
44
|
+
* // EndOffset: Number("int"),
|
|
45
|
+
* // Attributes: [ // SNOMEDCTAttributeList
|
|
46
|
+
* // { // SNOMEDCTAttribute
|
|
47
|
+
* // Category: "MEDICAL_CONDITION" || "ANATOMY" || "TEST_TREATMENT_PROCEDURE",
|
|
48
|
+
* // Type: "ACUITY" || "QUALITY" || "DIRECTION" || "SYSTEM_ORGAN_SITE" || "TEST_VALUE" || "TEST_UNIT",
|
|
49
|
+
* // Score: Number("float"),
|
|
50
|
+
* // RelationshipScore: Number("float"),
|
|
51
|
+
* // RelationshipType: "ACUITY" || "QUALITY" || "TEST_VALUE" || "TEST_UNITS" || "DIRECTION" || "SYSTEM_ORGAN_SITE",
|
|
52
|
+
* // Id: Number("int"),
|
|
53
|
+
* // BeginOffset: Number("int"),
|
|
54
|
+
* // EndOffset: Number("int"),
|
|
55
|
+
* // Text: "STRING_VALUE",
|
|
56
|
+
* // Traits: [ // SNOMEDCTTraitList
|
|
57
|
+
* // { // SNOMEDCTTrait
|
|
58
|
+
* // Name: "NEGATION" || "DIAGNOSIS" || "SIGN" || "SYMPTOM" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
59
|
+
* // Score: Number("float"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // SNOMEDCTConcepts: [ // SNOMEDCTConceptList
|
|
63
|
+
* // { // SNOMEDCTConcept
|
|
64
|
+
* // Description: "STRING_VALUE",
|
|
65
|
+
* // Code: "STRING_VALUE",
|
|
66
|
+
* // Score: Number("float"),
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // Traits: [
|
|
72
|
+
* // {
|
|
73
|
+
* // Name: "NEGATION" || "DIAGNOSIS" || "SIGN" || "SYMPTOM" || "PERTAINS_TO_FAMILY" || "HYPOTHETICAL" || "LOW_CONFIDENCE" || "PAST_HISTORY" || "FUTURE",
|
|
74
|
+
* // Score: Number("float"),
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // SNOMEDCTConcepts: [
|
|
78
|
+
* // {
|
|
79
|
+
* // Description: "STRING_VALUE",
|
|
80
|
+
* // Code: "STRING_VALUE",
|
|
81
|
+
* // Score: Number("float"),
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // PaginationToken: "STRING_VALUE",
|
|
87
|
+
* // ModelVersion: "STRING_VALUE",
|
|
88
|
+
* // SNOMEDCTDetails: { // SNOMEDCTDetails
|
|
89
|
+
* // Edition: "STRING_VALUE",
|
|
90
|
+
* // Language: "STRING_VALUE",
|
|
91
|
+
* // VersionDate: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // Characters: { // Characters
|
|
94
|
+
* // OriginalTextCharacters: Number("int"),
|
|
95
|
+
* // },
|
|
96
|
+
* // };
|
|
97
|
+
*
|
|
35
98
|
* ```
|
|
36
99
|
*
|
|
37
100
|
* @param InferSNOMEDCTCommandInput - {@link InferSNOMEDCTCommandInput}
|
|
@@ -64,6 +127,8 @@ export interface InferSNOMEDCTCommandOutput extends InferSNOMEDCTResponse, __Met
|
|
|
64
127
|
* then try your request again. Contact customer support for more information about a service
|
|
65
128
|
* limit increase. </p>
|
|
66
129
|
*
|
|
130
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
131
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
67
132
|
*
|
|
68
133
|
*/
|
|
69
134
|
export declare class InferSNOMEDCTCommand extends $Command<InferSNOMEDCTCommandInput, InferSNOMEDCTCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -38,6 +38,34 @@ export interface ListEntitiesDetectionV2JobsCommandOutput extends ListEntitiesDe
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListEntitiesDetectionV2JobsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListEntitiesDetectionV2JobsResponse
|
|
42
|
+
* // ComprehendMedicalAsyncJobPropertiesList: [ // ComprehendMedicalAsyncJobPropertiesList
|
|
43
|
+
* // { // ComprehendMedicalAsyncJobProperties
|
|
44
|
+
* // JobId: "STRING_VALUE",
|
|
45
|
+
* // JobName: "STRING_VALUE",
|
|
46
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
47
|
+
* // Message: "STRING_VALUE",
|
|
48
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // InputDataConfig: { // InputDataConfig
|
|
52
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
53
|
+
* // S3Key: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
56
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
57
|
+
* // S3Key: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // LanguageCode: "en",
|
|
60
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
61
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
62
|
+
* // KMSKey: "STRING_VALUE",
|
|
63
|
+
* // ModelVersion: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
41
69
|
* ```
|
|
42
70
|
*
|
|
43
71
|
* @param ListEntitiesDetectionV2JobsCommandInput - {@link ListEntitiesDetectionV2JobsCommandInput}
|
|
@@ -62,6 +90,8 @@ export interface ListEntitiesDetectionV2JobsCommandOutput extends ListEntitiesDe
|
|
|
62
90
|
* <p>The filter that you specified for the operation is invalid. Check the filter values that
|
|
63
91
|
* you entered and try your request again.</p>
|
|
64
92
|
*
|
|
93
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
65
95
|
*
|
|
66
96
|
*/
|
|
67
97
|
export declare class ListEntitiesDetectionV2JobsCommand extends $Command<ListEntitiesDetectionV2JobsCommandInput, ListEntitiesDetectionV2JobsCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -38,6 +38,34 @@ export interface ListICD10CMInferenceJobsCommandOutput extends ListICD10CMInfere
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListICD10CMInferenceJobsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListICD10CMInferenceJobsResponse
|
|
42
|
+
* // ComprehendMedicalAsyncJobPropertiesList: [ // ComprehendMedicalAsyncJobPropertiesList
|
|
43
|
+
* // { // ComprehendMedicalAsyncJobProperties
|
|
44
|
+
* // JobId: "STRING_VALUE",
|
|
45
|
+
* // JobName: "STRING_VALUE",
|
|
46
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
47
|
+
* // Message: "STRING_VALUE",
|
|
48
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // InputDataConfig: { // InputDataConfig
|
|
52
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
53
|
+
* // S3Key: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
56
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
57
|
+
* // S3Key: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // LanguageCode: "en",
|
|
60
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
61
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
62
|
+
* // KMSKey: "STRING_VALUE",
|
|
63
|
+
* // ModelVersion: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
41
69
|
* ```
|
|
42
70
|
*
|
|
43
71
|
* @param ListICD10CMInferenceJobsCommandInput - {@link ListICD10CMInferenceJobsCommandInput}
|
|
@@ -62,6 +90,8 @@ export interface ListICD10CMInferenceJobsCommandOutput extends ListICD10CMInfere
|
|
|
62
90
|
* <p>The filter that you specified for the operation is invalid. Check the filter values that
|
|
63
91
|
* you entered and try your request again.</p>
|
|
64
92
|
*
|
|
93
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
65
95
|
*
|
|
66
96
|
*/
|
|
67
97
|
export declare class ListICD10CMInferenceJobsCommand extends $Command<ListICD10CMInferenceJobsCommandInput, ListICD10CMInferenceJobsCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -39,6 +39,34 @@ export interface ListPHIDetectionJobsCommandOutput extends ListPHIDetectionJobsR
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListPHIDetectionJobsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListPHIDetectionJobsResponse
|
|
43
|
+
* // ComprehendMedicalAsyncJobPropertiesList: [ // ComprehendMedicalAsyncJobPropertiesList
|
|
44
|
+
* // { // ComprehendMedicalAsyncJobProperties
|
|
45
|
+
* // JobId: "STRING_VALUE",
|
|
46
|
+
* // JobName: "STRING_VALUE",
|
|
47
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
48
|
+
* // Message: "STRING_VALUE",
|
|
49
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // InputDataConfig: { // InputDataConfig
|
|
53
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
54
|
+
* // S3Key: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
57
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
58
|
+
* // S3Key: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // LanguageCode: "en",
|
|
61
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
62
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
63
|
+
* // KMSKey: "STRING_VALUE",
|
|
64
|
+
* // ModelVersion: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // NextToken: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
42
70
|
* ```
|
|
43
71
|
*
|
|
44
72
|
* @param ListPHIDetectionJobsCommandInput - {@link ListPHIDetectionJobsCommandInput}
|
|
@@ -63,6 +91,8 @@ export interface ListPHIDetectionJobsCommandOutput extends ListPHIDetectionJobsR
|
|
|
63
91
|
* <p>The filter that you specified for the operation is invalid. Check the filter values that
|
|
64
92
|
* you entered and try your request again.</p>
|
|
65
93
|
*
|
|
94
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
66
96
|
*
|
|
67
97
|
*/
|
|
68
98
|
export declare class ListPHIDetectionJobsCommand extends $Command<ListPHIDetectionJobsCommandInput, ListPHIDetectionJobsCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -38,6 +38,34 @@ export interface ListRxNormInferenceJobsCommandOutput extends ListRxNormInferenc
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListRxNormInferenceJobsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListRxNormInferenceJobsResponse
|
|
42
|
+
* // ComprehendMedicalAsyncJobPropertiesList: [ // ComprehendMedicalAsyncJobPropertiesList
|
|
43
|
+
* // { // ComprehendMedicalAsyncJobProperties
|
|
44
|
+
* // JobId: "STRING_VALUE",
|
|
45
|
+
* // JobName: "STRING_VALUE",
|
|
46
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
47
|
+
* // Message: "STRING_VALUE",
|
|
48
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // InputDataConfig: { // InputDataConfig
|
|
52
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
53
|
+
* // S3Key: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
56
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
57
|
+
* // S3Key: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // LanguageCode: "en",
|
|
60
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
61
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
62
|
+
* // KMSKey: "STRING_VALUE",
|
|
63
|
+
* // ModelVersion: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
41
69
|
* ```
|
|
42
70
|
*
|
|
43
71
|
* @param ListRxNormInferenceJobsCommandInput - {@link ListRxNormInferenceJobsCommandInput}
|
|
@@ -62,6 +90,8 @@ export interface ListRxNormInferenceJobsCommandOutput extends ListRxNormInferenc
|
|
|
62
90
|
* <p>The filter that you specified for the operation is invalid. Check the filter values that
|
|
63
91
|
* you entered and try your request again.</p>
|
|
64
92
|
*
|
|
93
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
65
95
|
*
|
|
66
96
|
*/
|
|
67
97
|
export declare class ListRxNormInferenceJobsCommand extends $Command<ListRxNormInferenceJobsCommandInput, ListRxNormInferenceJobsCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -40,6 +40,34 @@ export interface ListSNOMEDCTInferenceJobsCommandOutput extends ListSNOMEDCTInfe
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListSNOMEDCTInferenceJobsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListSNOMEDCTInferenceJobsResponse
|
|
44
|
+
* // ComprehendMedicalAsyncJobPropertiesList: [ // ComprehendMedicalAsyncJobPropertiesList
|
|
45
|
+
* // { // ComprehendMedicalAsyncJobProperties
|
|
46
|
+
* // JobId: "STRING_VALUE",
|
|
47
|
+
* // JobName: "STRING_VALUE",
|
|
48
|
+
* // JobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "PARTIAL_SUCCESS" || "FAILED" || "STOP_REQUESTED" || "STOPPED",
|
|
49
|
+
* // Message: "STRING_VALUE",
|
|
50
|
+
* // SubmitTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // ExpirationTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // InputDataConfig: { // InputDataConfig
|
|
54
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
55
|
+
* // S3Key: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // OutputDataConfig: { // OutputDataConfig
|
|
58
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
59
|
+
* // S3Key: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // LanguageCode: "en",
|
|
62
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
63
|
+
* // ManifestFilePath: "STRING_VALUE",
|
|
64
|
+
* // KMSKey: "STRING_VALUE",
|
|
65
|
+
* // ModelVersion: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // NextToken: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
43
71
|
* ```
|
|
44
72
|
*
|
|
45
73
|
* @param ListSNOMEDCTInferenceJobsCommandInput - {@link ListSNOMEDCTInferenceJobsCommandInput}
|
|
@@ -64,6 +92,8 @@ export interface ListSNOMEDCTInferenceJobsCommandOutput extends ListSNOMEDCTInfe
|
|
|
64
92
|
* <p>The filter that you specified for the operation is invalid. Check the filter values that
|
|
65
93
|
* you entered and try your request again.</p>
|
|
66
94
|
*
|
|
95
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
67
97
|
*
|
|
68
98
|
*/
|
|
69
99
|
export declare class ListSNOMEDCTInferenceJobsCommand extends $Command<ListSNOMEDCTInferenceJobsCommandInput, ListSNOMEDCTInferenceJobsCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -44,6 +44,10 @@ export interface StartEntitiesDetectionV2JobCommandOutput extends StartEntitiesD
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new StartEntitiesDetectionV2JobCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // StartEntitiesDetectionV2JobResponse
|
|
48
|
+
* // JobId: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
47
51
|
* ```
|
|
48
52
|
*
|
|
49
53
|
* @param StartEntitiesDetectionV2JobCommandInput - {@link StartEntitiesDetectionV2JobCommandInput}
|
|
@@ -68,6 +72,8 @@ export interface StartEntitiesDetectionV2JobCommandOutput extends StartEntitiesD
|
|
|
68
72
|
* then try your request again. Contact customer support for more information about a service
|
|
69
73
|
* limit increase. </p>
|
|
70
74
|
*
|
|
75
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
71
77
|
*
|
|
72
78
|
*/
|
|
73
79
|
export declare class StartEntitiesDetectionV2JobCommand extends $Command<StartEntitiesDetectionV2JobCommandInput, StartEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -45,6 +45,10 @@ export interface StartICD10CMInferenceJobCommandOutput extends StartICD10CMInfer
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new StartICD10CMInferenceJobCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // StartICD10CMInferenceJobResponse
|
|
49
|
+
* // JobId: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
48
52
|
* ```
|
|
49
53
|
*
|
|
50
54
|
* @param StartICD10CMInferenceJobCommandInput - {@link StartICD10CMInferenceJobCommandInput}
|
|
@@ -69,6 +73,8 @@ export interface StartICD10CMInferenceJobCommandOutput extends StartICD10CMInfer
|
|
|
69
73
|
* then try your request again. Contact customer support for more information about a service
|
|
70
74
|
* limit increase. </p>
|
|
71
75
|
*
|
|
76
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
72
78
|
*
|
|
73
79
|
*/
|
|
74
80
|
export declare class StartICD10CMInferenceJobCommand extends $Command<StartICD10CMInferenceJobCommandInput, StartICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -44,6 +44,10 @@ export interface StartPHIDetectionJobCommandOutput extends StartPHIDetectionJobR
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new StartPHIDetectionJobCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // StartPHIDetectionJobResponse
|
|
48
|
+
* // JobId: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
47
51
|
* ```
|
|
48
52
|
*
|
|
49
53
|
* @param StartPHIDetectionJobCommandInput - {@link StartPHIDetectionJobCommandInput}
|
|
@@ -68,6 +72,8 @@ export interface StartPHIDetectionJobCommandOutput extends StartPHIDetectionJobR
|
|
|
68
72
|
* then try your request again. Contact customer support for more information about a service
|
|
69
73
|
* limit increase. </p>
|
|
70
74
|
*
|
|
75
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
71
77
|
*
|
|
72
78
|
*/
|
|
73
79
|
export declare class StartPHIDetectionJobCommand extends $Command<StartPHIDetectionJobCommandInput, StartPHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -45,6 +45,10 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new StartRxNormInferenceJobCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // StartRxNormInferenceJobResponse
|
|
49
|
+
* // JobId: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
48
52
|
* ```
|
|
49
53
|
*
|
|
50
54
|
* @param StartRxNormInferenceJobCommandInput - {@link StartRxNormInferenceJobCommandInput}
|
|
@@ -69,6 +73,8 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
|
|
|
69
73
|
* then try your request again. Contact customer support for more information about a service
|
|
70
74
|
* limit increase. </p>
|
|
71
75
|
*
|
|
76
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
72
78
|
*
|
|
73
79
|
*/
|
|
74
80
|
export declare class StartRxNormInferenceJobCommand extends $Command<StartRxNormInferenceJobCommandInput, StartRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -45,6 +45,10 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new StartSNOMEDCTInferenceJobCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // StartSNOMEDCTInferenceJobResponse
|
|
49
|
+
* // JobId: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
48
52
|
* ```
|
|
49
53
|
*
|
|
50
54
|
* @param StartSNOMEDCTInferenceJobCommandInput - {@link StartSNOMEDCTInferenceJobCommandInput}
|
|
@@ -69,6 +73,8 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
|
|
|
69
73
|
* then try your request again. Contact customer support for more information about a service
|
|
70
74
|
* limit increase. </p>
|
|
71
75
|
*
|
|
76
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
72
78
|
*
|
|
73
79
|
*/
|
|
74
80
|
export declare class StartSNOMEDCTInferenceJobCommand extends $Command<StartSNOMEDCTInferenceJobCommandInput, StartSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopEntitiesDetectionV2JobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopEntitiesDetectionV2JobResponse
|
|
35
|
+
* // JobId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StopEntitiesDetectionV2JobCommandInput - {@link StopEntitiesDetectionV2JobCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
|
|
|
50
54
|
* <p>The resource identified by the specified Amazon Resource Name (ARN) was not found. Check
|
|
51
55
|
* the ARN and try your request again.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class StopEntitiesDetectionV2JobCommand extends $Command<StopEntitiesDetectionV2JobCommandInput, StopEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopICD10CMInferenceJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopICD10CMInferenceJobResponse
|
|
35
|
+
* // JobId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StopICD10CMInferenceJobCommandInput - {@link StopICD10CMInferenceJobCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
|
|
|
50
54
|
* <p>The resource identified by the specified Amazon Resource Name (ARN) was not found. Check
|
|
51
55
|
* the ARN and try your request again.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class StopICD10CMInferenceJobCommand extends $Command<StopICD10CMInferenceJobCommandInput, StopICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopPHIDetectionJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopPHIDetectionJobResponse
|
|
35
|
+
* // JobId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StopPHIDetectionJobCommandInput - {@link StopPHIDetectionJobCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
|
|
|
50
54
|
* <p>The resource identified by the specified Amazon Resource Name (ARN) was not found. Check
|
|
51
55
|
* the ARN and try your request again.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class StopPHIDetectionJobCommand extends $Command<StopPHIDetectionJobCommandInput, StopPHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopRxNormInferenceJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopRxNormInferenceJobResponse
|
|
35
|
+
* // JobId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param StopRxNormInferenceJobCommandInput - {@link StopRxNormInferenceJobCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
|
|
|
50
54
|
* <p>The resource identified by the specified Amazon Resource Name (ARN) was not found. Check
|
|
51
55
|
* the ARN and try your request again.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class StopRxNormInferenceJobCommand extends $Command<StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StopSNOMEDCTInferenceJobCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StopSNOMEDCTInferenceJobResponse
|
|
37
|
+
* // JobId: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param StopSNOMEDCTInferenceJobCommandInput - {@link StopSNOMEDCTInferenceJobCommandInput}
|
|
@@ -57,6 +61,8 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
|
|
|
57
61
|
* then try your request again. Contact customer support for more information about a service
|
|
58
62
|
* limit increase. </p>
|
|
59
63
|
*
|
|
64
|
+
* @throws {@link ComprehendMedicalServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ComprehendMedical service.</p>
|
|
60
66
|
*
|
|
61
67
|
*/
|
|
62
68
|
export declare class StopSNOMEDCTInferenceJobCommand extends $Command<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-comprehendmedical",
|
|
3
3
|
"description": "AWS SDK for JavaScript Comprehendmedical Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|