@aws-sdk/client-comprehendmedical 3.193.0 → 3.195.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 +19 -0
- package/dist-cjs/ComprehendMedicalClient.js +11 -8
- package/dist-cjs/commands/DescribeEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-cjs/commands/DescribeICD10CMInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/DescribePHIDetectionJobCommand.js +10 -0
- package/dist-cjs/commands/DescribeRxNormInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/DescribeSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/DetectEntitiesCommand.js +10 -0
- package/dist-cjs/commands/DetectEntitiesV2Command.js +10 -0
- package/dist-cjs/commands/DetectPHICommand.js +10 -0
- package/dist-cjs/commands/InferICD10CMCommand.js +10 -0
- package/dist-cjs/commands/InferRxNormCommand.js +10 -0
- package/dist-cjs/commands/InferSNOMEDCTCommand.js +10 -0
- package/dist-cjs/commands/ListEntitiesDetectionV2JobsCommand.js +10 -0
- package/dist-cjs/commands/ListICD10CMInferenceJobsCommand.js +10 -0
- package/dist-cjs/commands/ListPHIDetectionJobsCommand.js +10 -0
- package/dist-cjs/commands/ListRxNormInferenceJobsCommand.js +10 -0
- package/dist-cjs/commands/ListSNOMEDCTInferenceJobsCommand.js +10 -0
- package/dist-cjs/commands/StartEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-cjs/commands/StartICD10CMInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/StartPHIDetectionJobCommand.js +10 -0
- package/dist-cjs/commands/StartRxNormInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/StartSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/StopEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-cjs/commands/StopICD10CMInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/StopPHIDetectionJobCommand.js +10 -0
- package/dist-cjs/commands/StopRxNormInferenceJobCommand.js +10 -0
- package/dist-cjs/commands/StopSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/ComprehendMedicalClient.js +12 -9
- package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +10 -0
- package/dist-es/commands/DescribePHIDetectionJobCommand.js +10 -0
- package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +10 -0
- package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-es/commands/DetectEntitiesCommand.js +10 -0
- package/dist-es/commands/DetectEntitiesV2Command.js +10 -0
- package/dist-es/commands/DetectPHICommand.js +10 -0
- package/dist-es/commands/InferICD10CMCommand.js +10 -0
- package/dist-es/commands/InferRxNormCommand.js +10 -0
- package/dist-es/commands/InferSNOMEDCTCommand.js +10 -0
- package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +10 -0
- package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +10 -0
- package/dist-es/commands/ListPHIDetectionJobsCommand.js +10 -0
- package/dist-es/commands/ListRxNormInferenceJobsCommand.js +10 -0
- package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +10 -0
- package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-es/commands/StartICD10CMInferenceJobCommand.js +10 -0
- package/dist-es/commands/StartPHIDetectionJobCommand.js +10 -0
- package/dist-es/commands/StartRxNormInferenceJobCommand.js +10 -0
- package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +10 -0
- package/dist-es/commands/StopICD10CMInferenceJobCommand.js +10 -0
- package/dist-es/commands/StopPHIDetectionJobCommand.js +10 -0
- package/dist-es/commands/StopRxNormInferenceJobCommand.js +10 -0
- package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/ComprehendMedicalClient.d.ts +6 -9
- package/dist-types/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribePHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/DetectEntitiesCommand.d.ts +2 -0
- package/dist-types/commands/DetectEntitiesV2Command.d.ts +2 -0
- package/dist-types/commands/DetectPHICommand.d.ts +2 -0
- package/dist-types/commands/InferICD10CMCommand.d.ts +2 -0
- package/dist-types/commands/InferRxNormCommand.d.ts +2 -0
- package/dist-types/commands/InferSNOMEDCTCommand.d.ts +2 -0
- package/dist-types/commands/ListEntitiesDetectionV2JobsCommand.d.ts +2 -0
- package/dist-types/commands/ListICD10CMInferenceJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListPHIDetectionJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListRxNormInferenceJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +2 -0
- package/dist-types/commands/StartEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/commands/StartICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/StartPHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/commands/StartRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/StartSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/StopEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/commands/StopICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/StopPHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/commands/StopRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/commands/StopSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +2 -0
- package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +4 -2
- package/dist-cjs/endpoints.js +0 -168
- package/dist-es/endpoints.js +0 -164
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -26,6 +27,7 @@ export interface StartPHIDetectionJobCommandOutput extends StartPHIDetectionJobR
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class StartPHIDetectionJobCommand extends $Command<StartPHIDetectionJobCommandInput, StartPHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
28
29
|
readonly input: StartPHIDetectionJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: StartPHIDetectionJobCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -27,6 +28,7 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class StartRxNormInferenceJobCommand extends $Command<StartRxNormInferenceJobCommandInput, StartRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
29
30
|
readonly input: StartRxNormInferenceJobCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: StartRxNormInferenceJobCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -27,6 +28,7 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class StartSNOMEDCTInferenceJobCommand extends $Command<StartSNOMEDCTInferenceJobCommandInput, StartSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
29
30
|
readonly input: StartSNOMEDCTInferenceJobCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: StartSNOMEDCTInferenceJobCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -25,6 +26,7 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class StopEntitiesDetectionV2JobCommand extends $Command<StopEntitiesDetectionV2JobCommandInput, StopEntitiesDetectionV2JobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
27
28
|
readonly input: StopEntitiesDetectionV2JobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopEntitiesDetectionV2JobCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -25,6 +26,7 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class StopICD10CMInferenceJobCommand extends $Command<StopICD10CMInferenceJobCommandInput, StopICD10CMInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
27
28
|
readonly input: StopICD10CMInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopICD10CMInferenceJobCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -25,6 +26,7 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class StopPHIDetectionJobCommand extends $Command<StopPHIDetectionJobCommandInput, StopPHIDetectionJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
27
28
|
readonly input: StopPHIDetectionJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopPHIDetectionJobCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -25,6 +26,7 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class StopRxNormInferenceJobCommand extends $Command<StopRxNormInferenceJobCommandInput, StopRxNormInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
27
28
|
readonly input: StopRxNormInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopRxNormInferenceJobCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
|
|
@@ -27,6 +28,7 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class StopSNOMEDCTInferenceJobCommand extends $Command<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
|
|
29
30
|
readonly input: StopSNOMEDCTInferenceJobCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: StopSNOMEDCTInferenceJobCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -146,6 +147,11 @@ import {
|
|
|
146
147
|
StopSNOMEDCTInferenceJobCommandInput,
|
|
147
148
|
StopSNOMEDCTInferenceJobCommandOutput,
|
|
148
149
|
} from "./commands/StopSNOMEDCTInferenceJobCommand";
|
|
150
|
+
import {
|
|
151
|
+
ClientInputEndpointParameters,
|
|
152
|
+
ClientResolvedEndpointParameters,
|
|
153
|
+
EndpointParameters,
|
|
154
|
+
} from "./endpoint/EndpointParameters";
|
|
149
155
|
export declare type ServiceInputTypes =
|
|
150
156
|
| DescribeEntitiesDetectionV2JobCommandInput
|
|
151
157
|
| DescribeICD10CMInferenceJobCommandInput
|
|
@@ -221,7 +227,6 @@ export interface ClientDefaults
|
|
|
221
227
|
serviceId?: string;
|
|
222
228
|
region?: string | __Provider<string>;
|
|
223
229
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
224
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
225
230
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
226
231
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
227
232
|
}
|
|
@@ -230,22 +235,24 @@ declare type ComprehendMedicalClientConfigType = Partial<
|
|
|
230
235
|
> &
|
|
231
236
|
ClientDefaults &
|
|
232
237
|
RegionInputConfig &
|
|
233
|
-
|
|
238
|
+
EndpointInputConfig<EndpointParameters> &
|
|
234
239
|
RetryInputConfig &
|
|
235
240
|
HostHeaderInputConfig &
|
|
236
241
|
AwsAuthInputConfig &
|
|
237
|
-
UserAgentInputConfig
|
|
242
|
+
UserAgentInputConfig &
|
|
243
|
+
ClientInputEndpointParameters;
|
|
238
244
|
export interface ComprehendMedicalClientConfig
|
|
239
245
|
extends ComprehendMedicalClientConfigType {}
|
|
240
246
|
declare type ComprehendMedicalClientResolvedConfigType =
|
|
241
247
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
242
248
|
Required<ClientDefaults> &
|
|
243
249
|
RegionResolvedConfig &
|
|
244
|
-
|
|
250
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
245
251
|
RetryResolvedConfig &
|
|
246
252
|
HostHeaderResolvedConfig &
|
|
247
253
|
AwsAuthResolvedConfig &
|
|
248
|
-
UserAgentResolvedConfig
|
|
254
|
+
UserAgentResolvedConfig &
|
|
255
|
+
ClientResolvedEndpointParameters;
|
|
249
256
|
export interface ComprehendMedicalClientResolvedConfig
|
|
250
257
|
extends ComprehendMedicalClientResolvedConfigType {}
|
|
251
258
|
export declare class ComprehendMedicalClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeEntitiesDetectionV2JobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeEntitiesDetectionV2JobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeEntitiesDetectionV2JobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeICD10CMInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeICD10CMInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeICD10CMInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribePHIDetectionJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribePHIDetectionJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribePHIDetectionJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeRxNormInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeRxNormInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeRxNormInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeSNOMEDCTInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeSNOMEDCTInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeSNOMEDCTInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DetectEntitiesCommand extends $Command<
|
|
|
24
25
|
ComprehendMedicalClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DetectEntitiesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DetectEntitiesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DetectEntitiesV2Command extends $Command<
|
|
|
24
25
|
ComprehendMedicalClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DetectEntitiesV2CommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DetectEntitiesV2CommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DetectPHICommand extends $Command<
|
|
|
21
22
|
ComprehendMedicalClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DetectPHICommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DetectPHICommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class InferICD10CMCommand extends $Command<
|
|
|
21
22
|
ComprehendMedicalClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: InferICD10CMCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: InferICD10CMCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class InferRxNormCommand extends $Command<
|
|
|
21
22
|
ComprehendMedicalClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: InferRxNormCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: InferRxNormCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class InferSNOMEDCTCommand extends $Command<
|
|
|
24
25
|
ComprehendMedicalClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: InferSNOMEDCTCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: InferSNOMEDCTCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListEntitiesDetectionV2JobsCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListEntitiesDetectionV2JobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListEntitiesDetectionV2JobsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListICD10CMInferenceJobsCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListICD10CMInferenceJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListICD10CMInferenceJobsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListPHIDetectionJobsCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListPHIDetectionJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPHIDetectionJobsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListRxNormInferenceJobsCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListRxNormInferenceJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListRxNormInferenceJobsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListSNOMEDCTInferenceJobsCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListSNOMEDCTInferenceJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListSNOMEDCTInferenceJobsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartEntitiesDetectionV2JobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartEntitiesDetectionV2JobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartEntitiesDetectionV2JobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartICD10CMInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartICD10CMInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartICD10CMInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartPHIDetectionJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartPHIDetectionJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartPHIDetectionJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartRxNormInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartRxNormInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartRxNormInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartSNOMEDCTInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartSNOMEDCTInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartSNOMEDCTInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StopEntitiesDetectionV2JobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StopEntitiesDetectionV2JobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopEntitiesDetectionV2JobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StopICD10CMInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StopICD10CMInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopICD10CMInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StopPHIDetectionJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StopPHIDetectionJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopPHIDetectionJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StopRxNormInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StopRxNormInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopRxNormInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StopSNOMEDCTInferenceJobCommand extends $Command<
|
|
|
25
26
|
ComprehendMedicalClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StopSNOMEDCTInferenceJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StopSNOMEDCTInferenceJobCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|