@aws-sdk/client-comprehendmedical 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ComprehendMedical.d.ts +80 -86
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +7 -23
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +4 -9
- package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +10 -30
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopRxNormInferenceJobRequest,
|
|
4
|
-
StopRxNormInferenceJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopRxNormInferenceJobRequest, StopRxNormInferenceJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopRxNormInferenceJobCommandInput
|
|
8
|
-
extends StopRxNormInferenceJobRequest {}
|
|
4
|
+
export interface StopRxNormInferenceJobCommandInput extends StopRxNormInferenceJobRequest {}
|
|
9
5
|
export interface StopRxNormInferenceJobCommandOutput
|
|
10
|
-
extends StopRxNormInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StopRxNormInferenceJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const StopRxNormInferenceJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StopRxNormInferenceJobCommandInput
|
|
9
|
+
input: StopRxNormInferenceJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StopRxNormInferenceJobCommandInput,
|
|
17
12
|
StopRxNormInferenceJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StopRxNormInferenceJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StopRxNormInferenceJobCommandInput
|
|
18
|
+
input: StopRxNormInferenceJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StopRxNormInferenceJobCommandInput,
|
|
26
21
|
StopRxNormInferenceJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StopSNOMEDCTInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopSNOMEDCTInferenceJobCommandInput
|
|
8
|
-
extends StopSNOMEDCTInferenceJobRequest {}
|
|
7
|
+
export interface StopSNOMEDCTInferenceJobCommandInput extends StopSNOMEDCTInferenceJobRequest {}
|
|
9
8
|
export interface StopSNOMEDCTInferenceJobCommandOutput
|
|
10
|
-
extends StopSNOMEDCTInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StopSNOMEDCTInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StopSNOMEDCTInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StopSNOMEDCTInferenceJobCommandInput
|
|
12
|
+
input: StopSNOMEDCTInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StopSNOMEDCTInferenceJobCommandInput,
|
|
17
15
|
StopSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StopSNOMEDCTInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StopSNOMEDCTInferenceJobCommandInput
|
|
21
|
+
input: StopSNOMEDCTInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StopSNOMEDCTInferenceJobCommandInput,
|
|
26
24
|
StopSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ComprehendMedicalExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -32,8 +32,7 @@ export declare const RelationshipType: {
|
|
|
32
32
|
readonly USAGE: "USAGE";
|
|
33
33
|
readonly WITH_DOSAGE: "WITH_DOSAGE";
|
|
34
34
|
};
|
|
35
|
-
export type RelationshipType =
|
|
36
|
-
(typeof RelationshipType)[keyof typeof RelationshipType];
|
|
35
|
+
export type RelationshipType = (typeof RelationshipType)[keyof typeof RelationshipType];
|
|
37
36
|
export declare const AttributeName: {
|
|
38
37
|
readonly DIAGNOSIS: "DIAGNOSIS";
|
|
39
38
|
readonly FUTURE: "FUTURE";
|
|
@@ -112,8 +111,7 @@ export declare const ICD10CMEntityType: {
|
|
|
112
111
|
readonly DX_NAME: "DX_NAME";
|
|
113
112
|
readonly TIME_EXPRESSION: "TIME_EXPRESSION";
|
|
114
113
|
};
|
|
115
|
-
export type ICD10CMEntityType =
|
|
116
|
-
(typeof ICD10CMEntityType)[keyof typeof ICD10CMEntityType];
|
|
114
|
+
export type ICD10CMEntityType = (typeof ICD10CMEntityType)[keyof typeof ICD10CMEntityType];
|
|
117
115
|
export declare const ICD10CMRelationshipType: {
|
|
118
116
|
readonly OVERLAP: "OVERLAP";
|
|
119
117
|
readonly QUALITY: "QUALITY";
|
|
@@ -130,8 +128,7 @@ export declare const ICD10CMTraitName: {
|
|
|
130
128
|
readonly SIGN: "SIGN";
|
|
131
129
|
readonly SYMPTOM: "SYMPTOM";
|
|
132
130
|
};
|
|
133
|
-
export type ICD10CMTraitName =
|
|
134
|
-
(typeof ICD10CMTraitName)[keyof typeof ICD10CMTraitName];
|
|
131
|
+
export type ICD10CMTraitName = (typeof ICD10CMTraitName)[keyof typeof ICD10CMTraitName];
|
|
135
132
|
export declare const ICD10CMAttributeType: {
|
|
136
133
|
readonly ACUITY: "ACUITY";
|
|
137
134
|
readonly DIRECTION: "DIRECTION";
|
|
@@ -141,8 +138,7 @@ export declare const ICD10CMAttributeType: {
|
|
|
141
138
|
readonly TIME_EXPRESSION: "TIME_EXPRESSION";
|
|
142
139
|
readonly TIME_TO_DX_NAME: "TIME_TO_DX_NAME";
|
|
143
140
|
};
|
|
144
|
-
export type ICD10CMAttributeType =
|
|
145
|
-
(typeof ICD10CMAttributeType)[keyof typeof ICD10CMAttributeType];
|
|
141
|
+
export type ICD10CMAttributeType = (typeof ICD10CMAttributeType)[keyof typeof ICD10CMAttributeType];
|
|
146
142
|
export declare const ICD10CMEntityCategory: {
|
|
147
143
|
readonly MEDICAL_CONDITION: "MEDICAL_CONDITION";
|
|
148
144
|
};
|
|
@@ -152,8 +148,7 @@ export declare const RxNormTraitName: {
|
|
|
152
148
|
readonly NEGATION: "NEGATION";
|
|
153
149
|
readonly PAST_HISTORY: "PAST_HISTORY";
|
|
154
150
|
};
|
|
155
|
-
export type RxNormTraitName =
|
|
156
|
-
(typeof RxNormTraitName)[keyof typeof RxNormTraitName];
|
|
151
|
+
export type RxNormTraitName = (typeof RxNormTraitName)[keyof typeof RxNormTraitName];
|
|
157
152
|
export declare const RxNormAttributeType: {
|
|
158
153
|
readonly DOSAGE: "DOSAGE";
|
|
159
154
|
readonly DURATION: "DURATION";
|
|
@@ -163,19 +158,16 @@ export declare const RxNormAttributeType: {
|
|
|
163
158
|
readonly ROUTE_OR_MODE: "ROUTE_OR_MODE";
|
|
164
159
|
readonly STRENGTH: "STRENGTH";
|
|
165
160
|
};
|
|
166
|
-
export type RxNormAttributeType =
|
|
167
|
-
(typeof RxNormAttributeType)[keyof typeof RxNormAttributeType];
|
|
161
|
+
export type RxNormAttributeType = (typeof RxNormAttributeType)[keyof typeof RxNormAttributeType];
|
|
168
162
|
export declare const RxNormEntityCategory: {
|
|
169
163
|
readonly MEDICATION: "MEDICATION";
|
|
170
164
|
};
|
|
171
|
-
export type RxNormEntityCategory =
|
|
172
|
-
(typeof RxNormEntityCategory)[keyof typeof RxNormEntityCategory];
|
|
165
|
+
export type RxNormEntityCategory = (typeof RxNormEntityCategory)[keyof typeof RxNormEntityCategory];
|
|
173
166
|
export declare const RxNormEntityType: {
|
|
174
167
|
readonly BRAND_NAME: "BRAND_NAME";
|
|
175
168
|
readonly GENERIC_NAME: "GENERIC_NAME";
|
|
176
169
|
};
|
|
177
|
-
export type RxNormEntityType =
|
|
178
|
-
(typeof RxNormEntityType)[keyof typeof RxNormEntityType];
|
|
170
|
+
export type RxNormEntityType = (typeof RxNormEntityType)[keyof typeof RxNormEntityType];
|
|
179
171
|
export declare const SNOMEDCTEntityCategory: {
|
|
180
172
|
readonly ANATOMY: "ANATOMY";
|
|
181
173
|
readonly MEDICAL_CONDITION: "MEDICAL_CONDITION";
|
|
@@ -205,8 +197,7 @@ export declare const SNOMEDCTTraitName: {
|
|
|
205
197
|
readonly SIGN: "SIGN";
|
|
206
198
|
readonly SYMPTOM: "SYMPTOM";
|
|
207
199
|
};
|
|
208
|
-
export type SNOMEDCTTraitName =
|
|
209
|
-
(typeof SNOMEDCTTraitName)[keyof typeof SNOMEDCTTraitName];
|
|
200
|
+
export type SNOMEDCTTraitName = (typeof SNOMEDCTTraitName)[keyof typeof SNOMEDCTTraitName];
|
|
210
201
|
export declare const SNOMEDCTAttributeType: {
|
|
211
202
|
readonly ACUITY: "ACUITY";
|
|
212
203
|
readonly DIRECTION: "DIRECTION";
|
|
@@ -223,5 +214,4 @@ export declare const SNOMEDCTEntityType: {
|
|
|
223
214
|
readonly TEST_NAME: "TEST_NAME";
|
|
224
215
|
readonly TREATMENT_NAME: "TREATMENT_NAME";
|
|
225
216
|
};
|
|
226
|
-
export type SNOMEDCTEntityType =
|
|
227
|
-
(typeof SNOMEDCTEntityType)[keyof typeof SNOMEDCTEntityType];
|
|
217
|
+
export type SNOMEDCTEntityType = (typeof SNOMEDCTEntityType)[keyof typeof SNOMEDCTEntityType];
|
|
@@ -4,63 +4,47 @@ export declare class InternalServerException extends __BaseException {
|
|
|
4
4
|
readonly name: "InternalServerException";
|
|
5
5
|
readonly $fault: "server";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InvalidRequestException extends __BaseException {
|
|
12
10
|
readonly name: "InvalidRequestException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
20
16
|
readonly name: "ResourceNotFoundException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
Message?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
26
20
|
}
|
|
27
21
|
export declare class TooManyRequestsException extends __BaseException {
|
|
28
22
|
readonly name: "TooManyRequestsException";
|
|
29
23
|
readonly $fault: "client";
|
|
30
24
|
Message?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
33
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
34
26
|
}
|
|
35
27
|
export declare class InvalidEncodingException extends __BaseException {
|
|
36
28
|
readonly name: "InvalidEncodingException";
|
|
37
29
|
readonly $fault: "client";
|
|
38
30
|
Message?: string | undefined;
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>
|
|
41
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>);
|
|
42
32
|
}
|
|
43
33
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
44
34
|
readonly name: "ServiceUnavailableException";
|
|
45
35
|
readonly $fault: "server";
|
|
46
36
|
Message?: string | undefined;
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
49
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
50
38
|
}
|
|
51
39
|
export declare class TextSizeLimitExceededException extends __BaseException {
|
|
52
40
|
readonly name: "TextSizeLimitExceededException";
|
|
53
41
|
readonly $fault: "client";
|
|
54
42
|
Message?: string | undefined;
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
|
|
57
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>);
|
|
58
44
|
}
|
|
59
45
|
export declare class ValidationException extends __BaseException {
|
|
60
46
|
readonly name: "ValidationException";
|
|
61
47
|
readonly $fault: "client";
|
|
62
48
|
Message?: string | undefined;
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
66
50
|
}
|
|
@@ -67,41 +67,31 @@ export interface ComprehendMedicalAsyncJobProperties {
|
|
|
67
67
|
ModelVersion?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
export interface DescribeEntitiesDetectionV2JobResponse {
|
|
70
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
71
|
-
| ComprehendMedicalAsyncJobProperties
|
|
72
|
-
| undefined;
|
|
70
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties | undefined;
|
|
73
71
|
}
|
|
74
72
|
export interface DescribeICD10CMInferenceJobRequest {
|
|
75
73
|
JobId: string | undefined;
|
|
76
74
|
}
|
|
77
75
|
export interface DescribeICD10CMInferenceJobResponse {
|
|
78
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
79
|
-
| ComprehendMedicalAsyncJobProperties
|
|
80
|
-
| undefined;
|
|
76
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties | undefined;
|
|
81
77
|
}
|
|
82
78
|
export interface DescribePHIDetectionJobRequest {
|
|
83
79
|
JobId: string | undefined;
|
|
84
80
|
}
|
|
85
81
|
export interface DescribePHIDetectionJobResponse {
|
|
86
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
87
|
-
| ComprehendMedicalAsyncJobProperties
|
|
88
|
-
| undefined;
|
|
82
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties | undefined;
|
|
89
83
|
}
|
|
90
84
|
export interface DescribeRxNormInferenceJobRequest {
|
|
91
85
|
JobId: string | undefined;
|
|
92
86
|
}
|
|
93
87
|
export interface DescribeRxNormInferenceJobResponse {
|
|
94
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
95
|
-
| ComprehendMedicalAsyncJobProperties
|
|
96
|
-
| undefined;
|
|
88
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties | undefined;
|
|
97
89
|
}
|
|
98
90
|
export interface DescribeSNOMEDCTInferenceJobRequest {
|
|
99
91
|
JobId: string | undefined;
|
|
100
92
|
}
|
|
101
93
|
export interface DescribeSNOMEDCTInferenceJobResponse {
|
|
102
|
-
ComprehendMedicalAsyncJobProperties?:
|
|
103
|
-
| ComprehendMedicalAsyncJobProperties
|
|
104
|
-
| undefined;
|
|
94
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties | undefined;
|
|
105
95
|
}
|
|
106
96
|
export interface DetectEntitiesRequest {
|
|
107
97
|
Text: string | undefined;
|
|
@@ -285,9 +275,7 @@ export interface ListEntitiesDetectionV2JobsRequest {
|
|
|
285
275
|
MaxResults?: number | undefined;
|
|
286
276
|
}
|
|
287
277
|
export interface ListEntitiesDetectionV2JobsResponse {
|
|
288
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
289
|
-
| ComprehendMedicalAsyncJobProperties[]
|
|
290
|
-
| undefined;
|
|
278
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[] | undefined;
|
|
291
279
|
NextToken?: string | undefined;
|
|
292
280
|
}
|
|
293
281
|
export interface ListICD10CMInferenceJobsRequest {
|
|
@@ -296,9 +284,7 @@ export interface ListICD10CMInferenceJobsRequest {
|
|
|
296
284
|
MaxResults?: number | undefined;
|
|
297
285
|
}
|
|
298
286
|
export interface ListICD10CMInferenceJobsResponse {
|
|
299
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
300
|
-
| ComprehendMedicalAsyncJobProperties[]
|
|
301
|
-
| undefined;
|
|
287
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[] | undefined;
|
|
302
288
|
NextToken?: string | undefined;
|
|
303
289
|
}
|
|
304
290
|
export interface ListPHIDetectionJobsRequest {
|
|
@@ -307,9 +293,7 @@ export interface ListPHIDetectionJobsRequest {
|
|
|
307
293
|
MaxResults?: number | undefined;
|
|
308
294
|
}
|
|
309
295
|
export interface ListPHIDetectionJobsResponse {
|
|
310
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
311
|
-
| ComprehendMedicalAsyncJobProperties[]
|
|
312
|
-
| undefined;
|
|
296
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[] | undefined;
|
|
313
297
|
NextToken?: string | undefined;
|
|
314
298
|
}
|
|
315
299
|
export interface ListRxNormInferenceJobsRequest {
|
|
@@ -318,9 +302,7 @@ export interface ListRxNormInferenceJobsRequest {
|
|
|
318
302
|
MaxResults?: number | undefined;
|
|
319
303
|
}
|
|
320
304
|
export interface ListRxNormInferenceJobsResponse {
|
|
321
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
322
|
-
| ComprehendMedicalAsyncJobProperties[]
|
|
323
|
-
| undefined;
|
|
305
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[] | undefined;
|
|
324
306
|
NextToken?: string | undefined;
|
|
325
307
|
}
|
|
326
308
|
export interface ListSNOMEDCTInferenceJobsRequest {
|
|
@@ -329,9 +311,7 @@ export interface ListSNOMEDCTInferenceJobsRequest {
|
|
|
329
311
|
MaxResults?: number | undefined;
|
|
330
312
|
}
|
|
331
313
|
export interface ListSNOMEDCTInferenceJobsResponse {
|
|
332
|
-
ComprehendMedicalAsyncJobPropertiesList?:
|
|
333
|
-
| ComprehendMedicalAsyncJobProperties[]
|
|
334
|
-
| undefined;
|
|
314
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobProperties[] | undefined;
|
|
335
315
|
NextToken?: string | undefined;
|
|
336
316
|
}
|
|
337
317
|
export interface StartEntitiesDetectionV2JobRequest {
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ComprehendMedicalClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ComprehendMedicalClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: ComprehendMedicalClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,30 +36,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
62
|
-
userAgentAppId?:
|
|
63
|
-
|
|
64
|
-
| undefined
|
|
65
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
66
|
-
retryStrategy?:
|
|
67
|
-
| import("@smithy/types").RetryStrategy
|
|
68
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
69
54
|
endpoint?:
|
|
70
55
|
| ((
|
|
71
56
|
| string
|
|
@@ -87,7 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
87
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
88
73
|
context?: {
|
|
89
74
|
logger?: import("@smithy/types").Logger;
|
|
90
|
-
}
|
|
75
|
+
},
|
|
91
76
|
) => import("@smithy/types").EndpointV2;
|
|
92
77
|
tls?: boolean;
|
|
93
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -100,13 +85,13 @@ export declare const getRuntimeConfig: (
|
|
|
100
85
|
signer?:
|
|
101
86
|
| import("@smithy/types").RequestSigner
|
|
102
87
|
| ((
|
|
103
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
104
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
105
90
|
signingEscapePath?: boolean;
|
|
106
91
|
systemClockOffset?: number;
|
|
107
92
|
signingRegion?: string;
|
|
108
93
|
signerConstructor?: new (
|
|
109
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
110
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
111
96
|
) => import("@smithy/types").RequestSigner;
|
|
112
97
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ComprehendMedicalClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) => {
|
|
6
4
|
apiVersion: string;
|
|
7
5
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -11,7 +9,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
10
|
context?: {
|
|
13
11
|
logger?: import("@smithy/types").Logger;
|
|
14
|
-
}
|
|
12
|
+
},
|
|
15
13
|
) => import("@smithy/types").EndpointV2;
|
|
16
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ComprehendMedicalHttpAuthSchemeProvider;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { ComprehendMedicalExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: ComprehendMedicalExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: ComprehendMedicalExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var ComprehendMedicalServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
5
|
export declare var InvalidEncodingException$: StaticErrorSchema;
|