@aws-sdk/client-comprehendmedical 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ComprehendMedical.d.ts +472 -135
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +286 -99
- package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +37 -17
- package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/ComprehendMedicalServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1097 -1021
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ComprehendMedicalClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ComprehendMedicalClient";
|
|
13
|
+
import {
|
|
14
|
+
StopSNOMEDCTInferenceJobRequest,
|
|
15
|
+
StopSNOMEDCTInferenceJobResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StopSNOMEDCTInferenceJobCommandInput
|
|
18
|
+
extends StopSNOMEDCTInferenceJobRequest {}
|
|
19
|
+
export interface StopSNOMEDCTInferenceJobCommandOutput
|
|
20
|
+
extends StopSNOMEDCTInferenceJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StopSNOMEDCTInferenceJobCommand extends $Command<
|
|
24
|
+
StopSNOMEDCTInferenceJobCommandInput,
|
|
25
|
+
StopSNOMEDCTInferenceJobCommandOutput,
|
|
26
|
+
ComprehendMedicalClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StopSNOMEDCTInferenceJobCommandInput;
|
|
29
|
+
constructor(input: StopSNOMEDCTInferenceJobCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComprehendMedicalClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StopSNOMEDCTInferenceJobCommandInput,
|
|
37
|
+
StopSNOMEDCTInferenceJobCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
export * from "./DescribeEntitiesDetectionV2JobCommand";
|
|
2
|
-
export * from "./DescribeICD10CMInferenceJobCommand";
|
|
3
|
-
export * from "./DescribePHIDetectionJobCommand";
|
|
4
|
-
export * from "./DescribeRxNormInferenceJobCommand";
|
|
5
|
-
export * from "./DescribeSNOMEDCTInferenceJobCommand";
|
|
6
|
-
export * from "./DetectEntitiesCommand";
|
|
7
|
-
export * from "./DetectEntitiesV2Command";
|
|
8
|
-
export * from "./DetectPHICommand";
|
|
9
|
-
export * from "./InferICD10CMCommand";
|
|
10
|
-
export * from "./InferRxNormCommand";
|
|
11
|
-
export * from "./InferSNOMEDCTCommand";
|
|
12
|
-
export * from "./ListEntitiesDetectionV2JobsCommand";
|
|
13
|
-
export * from "./ListICD10CMInferenceJobsCommand";
|
|
14
|
-
export * from "./ListPHIDetectionJobsCommand";
|
|
15
|
-
export * from "./ListRxNormInferenceJobsCommand";
|
|
16
|
-
export * from "./ListSNOMEDCTInferenceJobsCommand";
|
|
17
|
-
export * from "./StartEntitiesDetectionV2JobCommand";
|
|
18
|
-
export * from "./StartICD10CMInferenceJobCommand";
|
|
19
|
-
export * from "./StartPHIDetectionJobCommand";
|
|
20
|
-
export * from "./StartRxNormInferenceJobCommand";
|
|
21
|
-
export * from "./StartSNOMEDCTInferenceJobCommand";
|
|
22
|
-
export * from "./StopEntitiesDetectionV2JobCommand";
|
|
23
|
-
export * from "./StopICD10CMInferenceJobCommand";
|
|
24
|
-
export * from "./StopPHIDetectionJobCommand";
|
|
25
|
-
export * from "./StopRxNormInferenceJobCommand";
|
|
26
|
-
export * from "./StopSNOMEDCTInferenceJobCommand";
|
|
1
|
+
export * from "./DescribeEntitiesDetectionV2JobCommand";
|
|
2
|
+
export * from "./DescribeICD10CMInferenceJobCommand";
|
|
3
|
+
export * from "./DescribePHIDetectionJobCommand";
|
|
4
|
+
export * from "./DescribeRxNormInferenceJobCommand";
|
|
5
|
+
export * from "./DescribeSNOMEDCTInferenceJobCommand";
|
|
6
|
+
export * from "./DetectEntitiesCommand";
|
|
7
|
+
export * from "./DetectEntitiesV2Command";
|
|
8
|
+
export * from "./DetectPHICommand";
|
|
9
|
+
export * from "./InferICD10CMCommand";
|
|
10
|
+
export * from "./InferRxNormCommand";
|
|
11
|
+
export * from "./InferSNOMEDCTCommand";
|
|
12
|
+
export * from "./ListEntitiesDetectionV2JobsCommand";
|
|
13
|
+
export * from "./ListICD10CMInferenceJobsCommand";
|
|
14
|
+
export * from "./ListPHIDetectionJobsCommand";
|
|
15
|
+
export * from "./ListRxNormInferenceJobsCommand";
|
|
16
|
+
export * from "./ListSNOMEDCTInferenceJobsCommand";
|
|
17
|
+
export * from "./StartEntitiesDetectionV2JobCommand";
|
|
18
|
+
export * from "./StartICD10CMInferenceJobCommand";
|
|
19
|
+
export * from "./StartPHIDetectionJobCommand";
|
|
20
|
+
export * from "./StartRxNormInferenceJobCommand";
|
|
21
|
+
export * from "./StartSNOMEDCTInferenceJobCommand";
|
|
22
|
+
export * from "./StopEntitiesDetectionV2JobCommand";
|
|
23
|
+
export * from "./StopICD10CMInferenceJobCommand";
|
|
24
|
+
export * from "./StopPHIDetectionJobCommand";
|
|
25
|
+
export * from "./StopRxNormInferenceJobCommand";
|
|
26
|
+
export * from "./StopSNOMEDCTInferenceJobCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./ComprehendMedical";
|
|
2
|
-
export * from "./ComprehendMedicalClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { ComprehendMedicalServiceException } from "./models/ComprehendMedicalServiceException";
|
|
1
|
+
export * from "./ComprehendMedical";
|
|
2
|
+
export * from "./ComprehendMedicalClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { ComprehendMedicalServiceException } from "./models/ComprehendMedicalServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ComprehendMedicalServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|