@aws-sdk/client-comprehendmedical 3.1074.0 → 3.1076.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 +1149 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ComprehendMedicalServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -113
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -816
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultComprehendMedicalHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "comprehendmedical",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultComprehendMedicalHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,985 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://comprehendmedical-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://comprehendmedical-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://comprehendmedical.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://comprehendmedical.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class ComprehendMedicalServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ComprehendMedicalServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InternalServerException extends ComprehendMedicalServiceException {
|
|
140
|
+
name = "InternalServerException";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InternalServerException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidRequestException extends ComprehendMedicalServiceException {
|
|
154
|
+
name = "InvalidRequestException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidRequestException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ResourceNotFoundException extends ComprehendMedicalServiceException {
|
|
168
|
+
name = "ResourceNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ResourceNotFoundException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class TooManyRequestsException extends ComprehendMedicalServiceException {
|
|
182
|
+
name = "TooManyRequestsException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "TooManyRequestsException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class InvalidEncodingException extends ComprehendMedicalServiceException {
|
|
196
|
+
name = "InvalidEncodingException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "InvalidEncodingException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, InvalidEncodingException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class ServiceUnavailableException extends ComprehendMedicalServiceException {
|
|
210
|
+
name = "ServiceUnavailableException";
|
|
211
|
+
$fault = "server";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "ServiceUnavailableException",
|
|
216
|
+
$fault: "server",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class TextSizeLimitExceededException extends ComprehendMedicalServiceException {
|
|
224
|
+
name = "TextSizeLimitExceededException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "TextSizeLimitExceededException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class ValidationException extends ComprehendMedicalServiceException {
|
|
238
|
+
name = "ValidationException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ValidationException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
const _A = "Attribute";
|
|
253
|
+
const _AL = "AttributeList";
|
|
254
|
+
const _At = "Attributes";
|
|
255
|
+
const _BO = "BeginOffset";
|
|
256
|
+
const _C = "Category";
|
|
257
|
+
const _CMAJF = "ComprehendMedicalAsyncJobFilter";
|
|
258
|
+
const _CMAJP = "ComprehendMedicalAsyncJobProperties";
|
|
259
|
+
const _CMAJPL = "ComprehendMedicalAsyncJobPropertiesList";
|
|
260
|
+
const _CRT = "ClientRequestToken";
|
|
261
|
+
const _Ch = "Characters";
|
|
262
|
+
const _Co = "Code";
|
|
263
|
+
const _D = "Description";
|
|
264
|
+
const _DARA = "DataAccessRoleArn";
|
|
265
|
+
const _DE = "DetectEntities";
|
|
266
|
+
const _DEDVJ = "DescribeEntitiesDetectionV2Job";
|
|
267
|
+
const _DEDVJR = "DescribeEntitiesDetectionV2JobRequest";
|
|
268
|
+
const _DEDVJRe = "DescribeEntitiesDetectionV2JobResponse";
|
|
269
|
+
const _DER = "DetectEntitiesRequest";
|
|
270
|
+
const _DERe = "DetectEntitiesResponse";
|
|
271
|
+
const _DEV = "DetectEntitiesV2";
|
|
272
|
+
const _DEVR = "DetectEntitiesV2Request";
|
|
273
|
+
const _DEVRe = "DetectEntitiesV2Response";
|
|
274
|
+
const _DICDCMIJ = "DescribeICD10CMInferenceJob";
|
|
275
|
+
const _DICDCMIJR = "DescribeICD10CMInferenceJobRequest";
|
|
276
|
+
const _DICDCMIJRe = "DescribeICD10CMInferenceJobResponse";
|
|
277
|
+
const _DPHI = "DetectPHI";
|
|
278
|
+
const _DPHIDJ = "DescribePHIDetectionJob";
|
|
279
|
+
const _DPHIDJR = "DescribePHIDetectionJobRequest";
|
|
280
|
+
const _DPHIDJRe = "DescribePHIDetectionJobResponse";
|
|
281
|
+
const _DPHIR = "DetectPHIRequest";
|
|
282
|
+
const _DPHIRe = "DetectPHIResponse";
|
|
283
|
+
const _DRNIJ = "DescribeRxNormInferenceJob";
|
|
284
|
+
const _DRNIJR = "DescribeRxNormInferenceJobRequest";
|
|
285
|
+
const _DRNIJRe = "DescribeRxNormInferenceJobResponse";
|
|
286
|
+
const _DSNOMEDCTIJ = "DescribeSNOMEDCTInferenceJob";
|
|
287
|
+
const _DSNOMEDCTIJR = "DescribeSNOMEDCTInferenceJobRequest";
|
|
288
|
+
const _DSNOMEDCTIJRe = "DescribeSNOMEDCTInferenceJobResponse";
|
|
289
|
+
const _E = "Entities";
|
|
290
|
+
const _EL = "EntityList";
|
|
291
|
+
const _EO = "EndOffset";
|
|
292
|
+
const _ET = "EndTime";
|
|
293
|
+
const _ETx = "ExpirationTime";
|
|
294
|
+
const _Ed = "Edition";
|
|
295
|
+
const _En = "Entity";
|
|
296
|
+
const _F = "Filter";
|
|
297
|
+
const _I = "Id";
|
|
298
|
+
const _ICDCMA = "ICD10CMAttribute";
|
|
299
|
+
const _ICDCMAL = "ICD10CMAttributeList";
|
|
300
|
+
const _ICDCMC = "ICD10CMConcept";
|
|
301
|
+
const _ICDCMCL = "ICD10CMConceptList";
|
|
302
|
+
const _ICDCMCo = "ICD10CMConcepts";
|
|
303
|
+
const _ICDCME = "ICD10CMEntity";
|
|
304
|
+
const _ICDCMEL = "ICD10CMEntityList";
|
|
305
|
+
const _ICDCMT = "ICD10CMTrait";
|
|
306
|
+
const _ICDCMTL = "ICD10CMTraitList";
|
|
307
|
+
const _IDC = "InputDataConfig";
|
|
308
|
+
const _IEE = "InvalidEncodingException";
|
|
309
|
+
const _IICDCM = "InferICD10CM";
|
|
310
|
+
const _IICDCMR = "InferICD10CMRequest";
|
|
311
|
+
const _IICDCMRn = "InferICD10CMResponse";
|
|
312
|
+
const _IRE = "InvalidRequestException";
|
|
313
|
+
const _IRN = "InferRxNorm";
|
|
314
|
+
const _IRNR = "InferRxNormRequest";
|
|
315
|
+
const _IRNRn = "InferRxNormResponse";
|
|
316
|
+
const _ISE = "InternalServerException";
|
|
317
|
+
const _ISNOMEDCT = "InferSNOMEDCT";
|
|
318
|
+
const _ISNOMEDCTR = "InferSNOMEDCTRequest";
|
|
319
|
+
const _ISNOMEDCTRn = "InferSNOMEDCTResponse";
|
|
320
|
+
const _JI = "JobId";
|
|
321
|
+
const _JN = "JobName";
|
|
322
|
+
const _JS = "JobStatus";
|
|
323
|
+
const _KMSK = "KMSKey";
|
|
324
|
+
const _L = "Language";
|
|
325
|
+
const _LC = "LanguageCode";
|
|
326
|
+
const _LEDVJ = "ListEntitiesDetectionV2Jobs";
|
|
327
|
+
const _LEDVJR = "ListEntitiesDetectionV2JobsRequest";
|
|
328
|
+
const _LEDVJRi = "ListEntitiesDetectionV2JobsResponse";
|
|
329
|
+
const _LICDCMIJ = "ListICD10CMInferenceJobs";
|
|
330
|
+
const _LICDCMIJR = "ListICD10CMInferenceJobsRequest";
|
|
331
|
+
const _LICDCMIJRi = "ListICD10CMInferenceJobsResponse";
|
|
332
|
+
const _LPHIDJ = "ListPHIDetectionJobs";
|
|
333
|
+
const _LPHIDJR = "ListPHIDetectionJobsRequest";
|
|
334
|
+
const _LPHIDJRi = "ListPHIDetectionJobsResponse";
|
|
335
|
+
const _LRNIJ = "ListRxNormInferenceJobs";
|
|
336
|
+
const _LRNIJR = "ListRxNormInferenceJobsRequest";
|
|
337
|
+
const _LRNIJRi = "ListRxNormInferenceJobsResponse";
|
|
338
|
+
const _LSNOMEDCTIJ = "ListSNOMEDCTInferenceJobs";
|
|
339
|
+
const _LSNOMEDCTIJR = "ListSNOMEDCTInferenceJobsRequest";
|
|
340
|
+
const _LSNOMEDCTIJRi = "ListSNOMEDCTInferenceJobsResponse";
|
|
341
|
+
const _M = "Message";
|
|
342
|
+
const _MFP = "ManifestFilePath";
|
|
343
|
+
const _MR = "MaxResults";
|
|
344
|
+
const _MV = "ModelVersion";
|
|
345
|
+
const _N = "Name";
|
|
346
|
+
const _NT = "NextToken";
|
|
347
|
+
const _ODC = "OutputDataConfig";
|
|
348
|
+
const _OTC = "OriginalTextCharacters";
|
|
349
|
+
const _PT = "PaginationToken";
|
|
350
|
+
const _RNA = "RxNormAttribute";
|
|
351
|
+
const _RNAL = "RxNormAttributeList";
|
|
352
|
+
const _RNC = "RxNormConcept";
|
|
353
|
+
const _RNCL = "RxNormConceptList";
|
|
354
|
+
const _RNCx = "RxNormConcepts";
|
|
355
|
+
const _RNE = "RxNormEntity";
|
|
356
|
+
const _RNEL = "RxNormEntityList";
|
|
357
|
+
const _RNFE = "ResourceNotFoundException";
|
|
358
|
+
const _RNT = "RxNormTrait";
|
|
359
|
+
const _RNTL = "RxNormTraitList";
|
|
360
|
+
const _RS = "RelationshipScore";
|
|
361
|
+
const _RT = "RelationshipType";
|
|
362
|
+
const _S = "Score";
|
|
363
|
+
const _SB = "S3Bucket";
|
|
364
|
+
const _SEDVJ = "StartEntitiesDetectionV2Job";
|
|
365
|
+
const _SEDVJR = "StartEntitiesDetectionV2JobRequest";
|
|
366
|
+
const _SEDVJRt = "StartEntitiesDetectionV2JobResponse";
|
|
367
|
+
const _SEDVJRto = "StopEntitiesDetectionV2JobRequest";
|
|
368
|
+
const _SEDVJRtop = "StopEntitiesDetectionV2JobResponse";
|
|
369
|
+
const _SEDVJt = "StopEntitiesDetectionV2Job";
|
|
370
|
+
const _SICDCMIJ = "StartICD10CMInferenceJob";
|
|
371
|
+
const _SICDCMIJR = "StartICD10CMInferenceJobRequest";
|
|
372
|
+
const _SICDCMIJRt = "StartICD10CMInferenceJobResponse";
|
|
373
|
+
const _SICDCMIJRto = "StopICD10CMInferenceJobRequest";
|
|
374
|
+
const _SICDCMIJRtop = "StopICD10CMInferenceJobResponse";
|
|
375
|
+
const _SICDCMIJt = "StopICD10CMInferenceJob";
|
|
376
|
+
const _SK = "S3Key";
|
|
377
|
+
const _SNOMEDCTA = "SNOMEDCTAttribute";
|
|
378
|
+
const _SNOMEDCTAL = "SNOMEDCTAttributeList";
|
|
379
|
+
const _SNOMEDCTC = "SNOMEDCTConcepts";
|
|
380
|
+
const _SNOMEDCTCL = "SNOMEDCTConceptList";
|
|
381
|
+
const _SNOMEDCTCo = "SNOMEDCTConcept";
|
|
382
|
+
const _SNOMEDCTD = "SNOMEDCTDetails";
|
|
383
|
+
const _SNOMEDCTE = "SNOMEDCTEntity";
|
|
384
|
+
const _SNOMEDCTEL = "SNOMEDCTEntityList";
|
|
385
|
+
const _SNOMEDCTT = "SNOMEDCTTrait";
|
|
386
|
+
const _SNOMEDCTTL = "SNOMEDCTTraitList";
|
|
387
|
+
const _SPHIDJ = "StartPHIDetectionJob";
|
|
388
|
+
const _SPHIDJR = "StartPHIDetectionJobRequest";
|
|
389
|
+
const _SPHIDJRt = "StartPHIDetectionJobResponse";
|
|
390
|
+
const _SPHIDJRto = "StopPHIDetectionJobRequest";
|
|
391
|
+
const _SPHIDJRtop = "StopPHIDetectionJobResponse";
|
|
392
|
+
const _SPHIDJt = "StopPHIDetectionJob";
|
|
393
|
+
const _SRNIJ = "StartRxNormInferenceJob";
|
|
394
|
+
const _SRNIJR = "StartRxNormInferenceJobRequest";
|
|
395
|
+
const _SRNIJRt = "StartRxNormInferenceJobResponse";
|
|
396
|
+
const _SRNIJRto = "StopRxNormInferenceJobRequest";
|
|
397
|
+
const _SRNIJRtop = "StopRxNormInferenceJobResponse";
|
|
398
|
+
const _SRNIJt = "StopRxNormInferenceJob";
|
|
399
|
+
const _SSNOMEDCTIJ = "StartSNOMEDCTInferenceJob";
|
|
400
|
+
const _SSNOMEDCTIJR = "StartSNOMEDCTInferenceJobRequest";
|
|
401
|
+
const _SSNOMEDCTIJRt = "StartSNOMEDCTInferenceJobResponse";
|
|
402
|
+
const _SSNOMEDCTIJRto = "StopSNOMEDCTInferenceJobRequest";
|
|
403
|
+
const _SSNOMEDCTIJRtop = "StopSNOMEDCTInferenceJobResponse";
|
|
404
|
+
const _SSNOMEDCTIJt = "StopSNOMEDCTInferenceJob";
|
|
405
|
+
const _ST = "SubmitTime";
|
|
406
|
+
const _STA = "SubmitTimeAfter";
|
|
407
|
+
const _STB = "SubmitTimeBefore";
|
|
408
|
+
const _SUE = "ServiceUnavailableException";
|
|
409
|
+
const _T = "Type";
|
|
410
|
+
const _TL = "TraitList";
|
|
411
|
+
const _TMRE = "TooManyRequestsException";
|
|
412
|
+
const _TSLEE = "TextSizeLimitExceededException";
|
|
413
|
+
const _Te = "Text";
|
|
414
|
+
const _Tr = "Traits";
|
|
415
|
+
const _Tra = "Trait";
|
|
416
|
+
const _UA = "UnmappedAttributes";
|
|
417
|
+
const _UAL = "UnmappedAttributeList";
|
|
418
|
+
const _UAn = "UnmappedAttribute";
|
|
419
|
+
const _VD = "VersionDate";
|
|
420
|
+
const _VE = "ValidationException";
|
|
421
|
+
const _c = "client";
|
|
422
|
+
const _e = "error";
|
|
423
|
+
const _hE = "httpError";
|
|
424
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.comprehendmedical";
|
|
425
|
+
const _se = "server";
|
|
426
|
+
const n0 = "com.amazonaws.comprehendmedical";
|
|
427
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
428
|
+
var ComprehendMedicalServiceException$ = [-3, _s, "ComprehendMedicalServiceException", 0, [], []];
|
|
429
|
+
_s_registry.registerError(ComprehendMedicalServiceException$, ComprehendMedicalServiceException);
|
|
430
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
431
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
432
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
433
|
+
[_M],
|
|
434
|
+
[0]
|
|
435
|
+
];
|
|
436
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
437
|
+
var InvalidEncodingException$ = [-3, n0, _IEE,
|
|
438
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
439
|
+
[_M],
|
|
440
|
+
[0]
|
|
441
|
+
];
|
|
442
|
+
n0_registry.registerError(InvalidEncodingException$, InvalidEncodingException);
|
|
443
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
444
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
445
|
+
[_M],
|
|
446
|
+
[0]
|
|
447
|
+
];
|
|
448
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
449
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
450
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
451
|
+
[_M],
|
|
452
|
+
[0]
|
|
453
|
+
];
|
|
454
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
455
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
456
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
457
|
+
[_M],
|
|
458
|
+
[0]
|
|
459
|
+
];
|
|
460
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
461
|
+
var TextSizeLimitExceededException$ = [-3, n0, _TSLEE,
|
|
462
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
463
|
+
[_M],
|
|
464
|
+
[0]
|
|
465
|
+
];
|
|
466
|
+
n0_registry.registerError(TextSizeLimitExceededException$, TextSizeLimitExceededException);
|
|
467
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
468
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
469
|
+
[_M],
|
|
470
|
+
[0]
|
|
471
|
+
];
|
|
472
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
473
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
474
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
475
|
+
[_M],
|
|
476
|
+
[0]
|
|
477
|
+
];
|
|
478
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
479
|
+
const errorTypeRegistries = [
|
|
480
|
+
_s_registry,
|
|
481
|
+
n0_registry,
|
|
482
|
+
];
|
|
483
|
+
var Attribute$ = [3, n0, _A,
|
|
484
|
+
0,
|
|
485
|
+
[_T, _S, _RS, _RT, _I, _BO, _EO, _Te, _C, _Tr],
|
|
486
|
+
[0, 1, 1, 0, 1, 1, 1, 0, 0, () => TraitList]
|
|
487
|
+
];
|
|
488
|
+
var Characters$ = [3, n0, _Ch,
|
|
489
|
+
0,
|
|
490
|
+
[_OTC],
|
|
491
|
+
[1]
|
|
492
|
+
];
|
|
493
|
+
var ComprehendMedicalAsyncJobFilter$ = [3, n0, _CMAJF,
|
|
494
|
+
0,
|
|
495
|
+
[_JN, _JS, _STB, _STA],
|
|
496
|
+
[0, 0, 4, 4]
|
|
497
|
+
];
|
|
498
|
+
var ComprehendMedicalAsyncJobProperties$ = [3, n0, _CMAJP,
|
|
499
|
+
0,
|
|
500
|
+
[_JI, _JN, _JS, _M, _ST, _ET, _ETx, _IDC, _ODC, _LC, _DARA, _MFP, _KMSK, _MV],
|
|
501
|
+
[0, 0, 0, 0, 4, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, 0, 0]
|
|
502
|
+
];
|
|
503
|
+
var DescribeEntitiesDetectionV2JobRequest$ = [3, n0, _DEDVJR,
|
|
504
|
+
0,
|
|
505
|
+
[_JI],
|
|
506
|
+
[0], 1
|
|
507
|
+
];
|
|
508
|
+
var DescribeEntitiesDetectionV2JobResponse$ = [3, n0, _DEDVJRe,
|
|
509
|
+
0,
|
|
510
|
+
[_CMAJP],
|
|
511
|
+
[() => ComprehendMedicalAsyncJobProperties$]
|
|
512
|
+
];
|
|
513
|
+
var DescribeICD10CMInferenceJobRequest$ = [3, n0, _DICDCMIJR,
|
|
514
|
+
0,
|
|
515
|
+
[_JI],
|
|
516
|
+
[0], 1
|
|
517
|
+
];
|
|
518
|
+
var DescribeICD10CMInferenceJobResponse$ = [3, n0, _DICDCMIJRe,
|
|
519
|
+
0,
|
|
520
|
+
[_CMAJP],
|
|
521
|
+
[() => ComprehendMedicalAsyncJobProperties$]
|
|
522
|
+
];
|
|
523
|
+
var DescribePHIDetectionJobRequest$ = [3, n0, _DPHIDJR,
|
|
524
|
+
0,
|
|
525
|
+
[_JI],
|
|
526
|
+
[0], 1
|
|
527
|
+
];
|
|
528
|
+
var DescribePHIDetectionJobResponse$ = [3, n0, _DPHIDJRe,
|
|
529
|
+
0,
|
|
530
|
+
[_CMAJP],
|
|
531
|
+
[() => ComprehendMedicalAsyncJobProperties$]
|
|
532
|
+
];
|
|
533
|
+
var DescribeRxNormInferenceJobRequest$ = [3, n0, _DRNIJR,
|
|
534
|
+
0,
|
|
535
|
+
[_JI],
|
|
536
|
+
[0], 1
|
|
537
|
+
];
|
|
538
|
+
var DescribeRxNormInferenceJobResponse$ = [3, n0, _DRNIJRe,
|
|
539
|
+
0,
|
|
540
|
+
[_CMAJP],
|
|
541
|
+
[() => ComprehendMedicalAsyncJobProperties$]
|
|
542
|
+
];
|
|
543
|
+
var DescribeSNOMEDCTInferenceJobRequest$ = [3, n0, _DSNOMEDCTIJR,
|
|
544
|
+
0,
|
|
545
|
+
[_JI],
|
|
546
|
+
[0], 1
|
|
547
|
+
];
|
|
548
|
+
var DescribeSNOMEDCTInferenceJobResponse$ = [3, n0, _DSNOMEDCTIJRe,
|
|
549
|
+
0,
|
|
550
|
+
[_CMAJP],
|
|
551
|
+
[() => ComprehendMedicalAsyncJobProperties$]
|
|
552
|
+
];
|
|
553
|
+
var DetectEntitiesRequest$ = [3, n0, _DER,
|
|
554
|
+
0,
|
|
555
|
+
[_Te],
|
|
556
|
+
[0], 1
|
|
557
|
+
];
|
|
558
|
+
var DetectEntitiesResponse$ = [3, n0, _DERe,
|
|
559
|
+
0,
|
|
560
|
+
[_E, _MV, _UA, _PT],
|
|
561
|
+
[() => EntityList, 0, () => UnmappedAttributeList, 0], 2
|
|
562
|
+
];
|
|
563
|
+
var DetectEntitiesV2Request$ = [3, n0, _DEVR,
|
|
564
|
+
0,
|
|
565
|
+
[_Te],
|
|
566
|
+
[0], 1
|
|
567
|
+
];
|
|
568
|
+
var DetectEntitiesV2Response$ = [3, n0, _DEVRe,
|
|
569
|
+
0,
|
|
570
|
+
[_E, _MV, _UA, _PT],
|
|
571
|
+
[() => EntityList, 0, () => UnmappedAttributeList, 0], 2
|
|
572
|
+
];
|
|
573
|
+
var DetectPHIRequest$ = [3, n0, _DPHIR,
|
|
574
|
+
0,
|
|
575
|
+
[_Te],
|
|
576
|
+
[0], 1
|
|
577
|
+
];
|
|
578
|
+
var DetectPHIResponse$ = [3, n0, _DPHIRe,
|
|
579
|
+
0,
|
|
580
|
+
[_E, _MV, _PT],
|
|
581
|
+
[() => EntityList, 0, 0], 2
|
|
582
|
+
];
|
|
583
|
+
var Entity$ = [3, n0, _En,
|
|
584
|
+
0,
|
|
585
|
+
[_I, _BO, _EO, _S, _Te, _C, _T, _Tr, _At],
|
|
586
|
+
[1, 1, 1, 1, 0, 0, 0, () => TraitList, () => AttributeList]
|
|
587
|
+
];
|
|
588
|
+
var ICD10CMAttribute$ = [3, n0, _ICDCMA,
|
|
589
|
+
0,
|
|
590
|
+
[_T, _S, _RS, _I, _BO, _EO, _Te, _Tr, _C, _RT],
|
|
591
|
+
[0, 1, 1, 1, 1, 1, 0, () => ICD10CMTraitList, 0, 0]
|
|
592
|
+
];
|
|
593
|
+
var ICD10CMConcept$ = [3, n0, _ICDCMC,
|
|
594
|
+
0,
|
|
595
|
+
[_D, _Co, _S],
|
|
596
|
+
[0, 0, 1]
|
|
597
|
+
];
|
|
598
|
+
var ICD10CMEntity$ = [3, n0, _ICDCME,
|
|
599
|
+
0,
|
|
600
|
+
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _ICDCMCo],
|
|
601
|
+
[1, 0, 0, 0, 1, 1, 1, () => ICD10CMAttributeList, () => ICD10CMTraitList, () => ICD10CMConceptList]
|
|
602
|
+
];
|
|
603
|
+
var ICD10CMTrait$ = [3, n0, _ICDCMT,
|
|
604
|
+
0,
|
|
605
|
+
[_N, _S],
|
|
606
|
+
[0, 1]
|
|
607
|
+
];
|
|
608
|
+
var InferICD10CMRequest$ = [3, n0, _IICDCMR,
|
|
609
|
+
0,
|
|
610
|
+
[_Te],
|
|
611
|
+
[0], 1
|
|
612
|
+
];
|
|
613
|
+
var InferICD10CMResponse$ = [3, n0, _IICDCMRn,
|
|
614
|
+
0,
|
|
615
|
+
[_E, _PT, _MV],
|
|
616
|
+
[() => ICD10CMEntityList, 0, 0], 1
|
|
617
|
+
];
|
|
618
|
+
var InferRxNormRequest$ = [3, n0, _IRNR,
|
|
619
|
+
0,
|
|
620
|
+
[_Te],
|
|
621
|
+
[0], 1
|
|
622
|
+
];
|
|
623
|
+
var InferRxNormResponse$ = [3, n0, _IRNRn,
|
|
624
|
+
0,
|
|
625
|
+
[_E, _PT, _MV],
|
|
626
|
+
[() => RxNormEntityList, 0, 0], 1
|
|
627
|
+
];
|
|
628
|
+
var InferSNOMEDCTRequest$ = [3, n0, _ISNOMEDCTR,
|
|
629
|
+
0,
|
|
630
|
+
[_Te],
|
|
631
|
+
[0], 1
|
|
632
|
+
];
|
|
633
|
+
var InferSNOMEDCTResponse$ = [3, n0, _ISNOMEDCTRn,
|
|
634
|
+
0,
|
|
635
|
+
[_E, _PT, _MV, _SNOMEDCTD, _Ch],
|
|
636
|
+
[() => SNOMEDCTEntityList, 0, 0, () => SNOMEDCTDetails$, () => Characters$], 1
|
|
637
|
+
];
|
|
638
|
+
var InputDataConfig$ = [3, n0, _IDC,
|
|
639
|
+
0,
|
|
640
|
+
[_SB, _SK],
|
|
641
|
+
[0, 0], 1
|
|
642
|
+
];
|
|
643
|
+
var ListEntitiesDetectionV2JobsRequest$ = [3, n0, _LEDVJR,
|
|
644
|
+
0,
|
|
645
|
+
[_F, _NT, _MR],
|
|
646
|
+
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
647
|
+
];
|
|
648
|
+
var ListEntitiesDetectionV2JobsResponse$ = [3, n0, _LEDVJRi,
|
|
649
|
+
0,
|
|
650
|
+
[_CMAJPL, _NT],
|
|
651
|
+
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
652
|
+
];
|
|
653
|
+
var ListICD10CMInferenceJobsRequest$ = [3, n0, _LICDCMIJR,
|
|
654
|
+
0,
|
|
655
|
+
[_F, _NT, _MR],
|
|
656
|
+
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
657
|
+
];
|
|
658
|
+
var ListICD10CMInferenceJobsResponse$ = [3, n0, _LICDCMIJRi,
|
|
659
|
+
0,
|
|
660
|
+
[_CMAJPL, _NT],
|
|
661
|
+
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
662
|
+
];
|
|
663
|
+
var ListPHIDetectionJobsRequest$ = [3, n0, _LPHIDJR,
|
|
664
|
+
0,
|
|
665
|
+
[_F, _NT, _MR],
|
|
666
|
+
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
667
|
+
];
|
|
668
|
+
var ListPHIDetectionJobsResponse$ = [3, n0, _LPHIDJRi,
|
|
669
|
+
0,
|
|
670
|
+
[_CMAJPL, _NT],
|
|
671
|
+
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
672
|
+
];
|
|
673
|
+
var ListRxNormInferenceJobsRequest$ = [3, n0, _LRNIJR,
|
|
674
|
+
0,
|
|
675
|
+
[_F, _NT, _MR],
|
|
676
|
+
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
677
|
+
];
|
|
678
|
+
var ListRxNormInferenceJobsResponse$ = [3, n0, _LRNIJRi,
|
|
679
|
+
0,
|
|
680
|
+
[_CMAJPL, _NT],
|
|
681
|
+
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
682
|
+
];
|
|
683
|
+
var ListSNOMEDCTInferenceJobsRequest$ = [3, n0, _LSNOMEDCTIJR,
|
|
684
|
+
0,
|
|
685
|
+
[_F, _NT, _MR],
|
|
686
|
+
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
687
|
+
];
|
|
688
|
+
var ListSNOMEDCTInferenceJobsResponse$ = [3, n0, _LSNOMEDCTIJRi,
|
|
689
|
+
0,
|
|
690
|
+
[_CMAJPL, _NT],
|
|
691
|
+
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
692
|
+
];
|
|
693
|
+
var OutputDataConfig$ = [3, n0, _ODC,
|
|
694
|
+
0,
|
|
695
|
+
[_SB, _SK],
|
|
696
|
+
[0, 0], 1
|
|
697
|
+
];
|
|
698
|
+
var RxNormAttribute$ = [3, n0, _RNA,
|
|
699
|
+
0,
|
|
700
|
+
[_T, _S, _RS, _I, _BO, _EO, _Te, _Tr],
|
|
701
|
+
[0, 1, 1, 1, 1, 1, 0, () => RxNormTraitList]
|
|
702
|
+
];
|
|
703
|
+
var RxNormConcept$ = [3, n0, _RNC,
|
|
704
|
+
0,
|
|
705
|
+
[_D, _Co, _S],
|
|
706
|
+
[0, 0, 1]
|
|
707
|
+
];
|
|
708
|
+
var RxNormEntity$ = [3, n0, _RNE,
|
|
709
|
+
0,
|
|
710
|
+
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _RNCx],
|
|
711
|
+
[1, 0, 0, 0, 1, 1, 1, () => RxNormAttributeList, () => RxNormTraitList, () => RxNormConceptList]
|
|
712
|
+
];
|
|
713
|
+
var RxNormTrait$ = [3, n0, _RNT,
|
|
714
|
+
0,
|
|
715
|
+
[_N, _S],
|
|
716
|
+
[0, 1]
|
|
717
|
+
];
|
|
718
|
+
var SNOMEDCTAttribute$ = [3, n0, _SNOMEDCTA,
|
|
719
|
+
0,
|
|
720
|
+
[_C, _T, _S, _RS, _RT, _I, _BO, _EO, _Te, _Tr, _SNOMEDCTC],
|
|
721
|
+
[0, 0, 1, 1, 0, 1, 1, 1, 0, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList]
|
|
722
|
+
];
|
|
723
|
+
var SNOMEDCTConcept$ = [3, n0, _SNOMEDCTCo,
|
|
724
|
+
0,
|
|
725
|
+
[_D, _Co, _S],
|
|
726
|
+
[0, 0, 1]
|
|
727
|
+
];
|
|
728
|
+
var SNOMEDCTDetails$ = [3, n0, _SNOMEDCTD,
|
|
729
|
+
0,
|
|
730
|
+
[_Ed, _L, _VD],
|
|
731
|
+
[0, 0, 0]
|
|
732
|
+
];
|
|
733
|
+
var SNOMEDCTEntity$ = [3, n0, _SNOMEDCTE,
|
|
734
|
+
0,
|
|
735
|
+
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _SNOMEDCTC],
|
|
736
|
+
[1, 0, 0, 0, 1, 1, 1, () => SNOMEDCTAttributeList, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList]
|
|
737
|
+
];
|
|
738
|
+
var SNOMEDCTTrait$ = [3, n0, _SNOMEDCTT,
|
|
739
|
+
0,
|
|
740
|
+
[_N, _S],
|
|
741
|
+
[0, 1]
|
|
742
|
+
];
|
|
743
|
+
var StartEntitiesDetectionV2JobRequest$ = [3, n0, _SEDVJR,
|
|
744
|
+
0,
|
|
745
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
746
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
747
|
+
];
|
|
748
|
+
var StartEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRt,
|
|
749
|
+
0,
|
|
750
|
+
[_JI],
|
|
751
|
+
[0]
|
|
752
|
+
];
|
|
753
|
+
var StartICD10CMInferenceJobRequest$ = [3, n0, _SICDCMIJR,
|
|
754
|
+
0,
|
|
755
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
756
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
757
|
+
];
|
|
758
|
+
var StartICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRt,
|
|
759
|
+
0,
|
|
760
|
+
[_JI],
|
|
761
|
+
[0]
|
|
762
|
+
];
|
|
763
|
+
var StartPHIDetectionJobRequest$ = [3, n0, _SPHIDJR,
|
|
764
|
+
0,
|
|
765
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
766
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
767
|
+
];
|
|
768
|
+
var StartPHIDetectionJobResponse$ = [3, n0, _SPHIDJRt,
|
|
769
|
+
0,
|
|
770
|
+
[_JI],
|
|
771
|
+
[0]
|
|
772
|
+
];
|
|
773
|
+
var StartRxNormInferenceJobRequest$ = [3, n0, _SRNIJR,
|
|
774
|
+
0,
|
|
775
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
776
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
777
|
+
];
|
|
778
|
+
var StartRxNormInferenceJobResponse$ = [3, n0, _SRNIJRt,
|
|
779
|
+
0,
|
|
780
|
+
[_JI],
|
|
781
|
+
[0]
|
|
782
|
+
];
|
|
783
|
+
var StartSNOMEDCTInferenceJobRequest$ = [3, n0, _SSNOMEDCTIJR,
|
|
784
|
+
0,
|
|
785
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
786
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
787
|
+
];
|
|
788
|
+
var StartSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRt,
|
|
789
|
+
0,
|
|
790
|
+
[_JI],
|
|
791
|
+
[0]
|
|
792
|
+
];
|
|
793
|
+
var StopEntitiesDetectionV2JobRequest$ = [3, n0, _SEDVJRto,
|
|
794
|
+
0,
|
|
795
|
+
[_JI],
|
|
796
|
+
[0], 1
|
|
797
|
+
];
|
|
798
|
+
var StopEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRtop,
|
|
799
|
+
0,
|
|
800
|
+
[_JI],
|
|
801
|
+
[0]
|
|
802
|
+
];
|
|
803
|
+
var StopICD10CMInferenceJobRequest$ = [3, n0, _SICDCMIJRto,
|
|
804
|
+
0,
|
|
805
|
+
[_JI],
|
|
806
|
+
[0], 1
|
|
807
|
+
];
|
|
808
|
+
var StopICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRtop,
|
|
809
|
+
0,
|
|
810
|
+
[_JI],
|
|
811
|
+
[0]
|
|
812
|
+
];
|
|
813
|
+
var StopPHIDetectionJobRequest$ = [3, n0, _SPHIDJRto,
|
|
814
|
+
0,
|
|
815
|
+
[_JI],
|
|
816
|
+
[0], 1
|
|
817
|
+
];
|
|
818
|
+
var StopPHIDetectionJobResponse$ = [3, n0, _SPHIDJRtop,
|
|
819
|
+
0,
|
|
820
|
+
[_JI],
|
|
821
|
+
[0]
|
|
822
|
+
];
|
|
823
|
+
var StopRxNormInferenceJobRequest$ = [3, n0, _SRNIJRto,
|
|
824
|
+
0,
|
|
825
|
+
[_JI],
|
|
826
|
+
[0], 1
|
|
827
|
+
];
|
|
828
|
+
var StopRxNormInferenceJobResponse$ = [3, n0, _SRNIJRtop,
|
|
829
|
+
0,
|
|
830
|
+
[_JI],
|
|
831
|
+
[0]
|
|
832
|
+
];
|
|
833
|
+
var StopSNOMEDCTInferenceJobRequest$ = [3, n0, _SSNOMEDCTIJRto,
|
|
834
|
+
0,
|
|
835
|
+
[_JI],
|
|
836
|
+
[0], 1
|
|
837
|
+
];
|
|
838
|
+
var StopSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRtop,
|
|
839
|
+
0,
|
|
840
|
+
[_JI],
|
|
841
|
+
[0]
|
|
842
|
+
];
|
|
843
|
+
var Trait$ = [3, n0, _Tra,
|
|
844
|
+
0,
|
|
845
|
+
[_N, _S],
|
|
846
|
+
[0, 1]
|
|
847
|
+
];
|
|
848
|
+
var UnmappedAttribute$ = [3, n0, _UAn,
|
|
849
|
+
0,
|
|
850
|
+
[_T, _A],
|
|
851
|
+
[0, () => Attribute$]
|
|
852
|
+
];
|
|
853
|
+
var AttributeList = [1, n0, _AL,
|
|
854
|
+
0, () => Attribute$
|
|
855
|
+
];
|
|
856
|
+
var ComprehendMedicalAsyncJobPropertiesList = [1, n0, _CMAJPL,
|
|
857
|
+
0, () => ComprehendMedicalAsyncJobProperties$
|
|
858
|
+
];
|
|
859
|
+
var EntityList = [1, n0, _EL,
|
|
860
|
+
0, () => Entity$
|
|
861
|
+
];
|
|
862
|
+
var ICD10CMAttributeList = [1, n0, _ICDCMAL,
|
|
863
|
+
0, () => ICD10CMAttribute$
|
|
864
|
+
];
|
|
865
|
+
var ICD10CMConceptList = [1, n0, _ICDCMCL,
|
|
866
|
+
0, () => ICD10CMConcept$
|
|
867
|
+
];
|
|
868
|
+
var ICD10CMEntityList = [1, n0, _ICDCMEL,
|
|
869
|
+
0, () => ICD10CMEntity$
|
|
870
|
+
];
|
|
871
|
+
var ICD10CMTraitList = [1, n0, _ICDCMTL,
|
|
872
|
+
0, () => ICD10CMTrait$
|
|
873
|
+
];
|
|
874
|
+
var RxNormAttributeList = [1, n0, _RNAL,
|
|
875
|
+
0, () => RxNormAttribute$
|
|
876
|
+
];
|
|
877
|
+
var RxNormConceptList = [1, n0, _RNCL,
|
|
878
|
+
0, () => RxNormConcept$
|
|
879
|
+
];
|
|
880
|
+
var RxNormEntityList = [1, n0, _RNEL,
|
|
881
|
+
0, () => RxNormEntity$
|
|
882
|
+
];
|
|
883
|
+
var RxNormTraitList = [1, n0, _RNTL,
|
|
884
|
+
0, () => RxNormTrait$
|
|
885
|
+
];
|
|
886
|
+
var SNOMEDCTAttributeList = [1, n0, _SNOMEDCTAL,
|
|
887
|
+
0, () => SNOMEDCTAttribute$
|
|
888
|
+
];
|
|
889
|
+
var SNOMEDCTConceptList = [1, n0, _SNOMEDCTCL,
|
|
890
|
+
0, () => SNOMEDCTConcept$
|
|
891
|
+
];
|
|
892
|
+
var SNOMEDCTEntityList = [1, n0, _SNOMEDCTEL,
|
|
893
|
+
0, () => SNOMEDCTEntity$
|
|
894
|
+
];
|
|
895
|
+
var SNOMEDCTTraitList = [1, n0, _SNOMEDCTTL,
|
|
896
|
+
0, () => SNOMEDCTTrait$
|
|
897
|
+
];
|
|
898
|
+
var TraitList = [1, n0, _TL,
|
|
899
|
+
0, () => Trait$
|
|
900
|
+
];
|
|
901
|
+
var UnmappedAttributeList = [1, n0, _UAL,
|
|
902
|
+
0, () => UnmappedAttribute$
|
|
903
|
+
];
|
|
904
|
+
var DescribeEntitiesDetectionV2Job$ = [9, n0, _DEDVJ,
|
|
905
|
+
0, () => DescribeEntitiesDetectionV2JobRequest$, () => DescribeEntitiesDetectionV2JobResponse$
|
|
906
|
+
];
|
|
907
|
+
var DescribeICD10CMInferenceJob$ = [9, n0, _DICDCMIJ,
|
|
908
|
+
0, () => DescribeICD10CMInferenceJobRequest$, () => DescribeICD10CMInferenceJobResponse$
|
|
909
|
+
];
|
|
910
|
+
var DescribePHIDetectionJob$ = [9, n0, _DPHIDJ,
|
|
911
|
+
0, () => DescribePHIDetectionJobRequest$, () => DescribePHIDetectionJobResponse$
|
|
912
|
+
];
|
|
913
|
+
var DescribeRxNormInferenceJob$ = [9, n0, _DRNIJ,
|
|
914
|
+
0, () => DescribeRxNormInferenceJobRequest$, () => DescribeRxNormInferenceJobResponse$
|
|
915
|
+
];
|
|
916
|
+
var DescribeSNOMEDCTInferenceJob$ = [9, n0, _DSNOMEDCTIJ,
|
|
917
|
+
0, () => DescribeSNOMEDCTInferenceJobRequest$, () => DescribeSNOMEDCTInferenceJobResponse$
|
|
918
|
+
];
|
|
919
|
+
var DetectEntities$ = [9, n0, _DE,
|
|
920
|
+
0, () => DetectEntitiesRequest$, () => DetectEntitiesResponse$
|
|
921
|
+
];
|
|
922
|
+
var DetectEntitiesV2$ = [9, n0, _DEV,
|
|
923
|
+
0, () => DetectEntitiesV2Request$, () => DetectEntitiesV2Response$
|
|
924
|
+
];
|
|
925
|
+
var DetectPHI$ = [9, n0, _DPHI,
|
|
926
|
+
0, () => DetectPHIRequest$, () => DetectPHIResponse$
|
|
927
|
+
];
|
|
928
|
+
var InferICD10CM$ = [9, n0, _IICDCM,
|
|
929
|
+
0, () => InferICD10CMRequest$, () => InferICD10CMResponse$
|
|
930
|
+
];
|
|
931
|
+
var InferRxNorm$ = [9, n0, _IRN,
|
|
932
|
+
0, () => InferRxNormRequest$, () => InferRxNormResponse$
|
|
933
|
+
];
|
|
934
|
+
var InferSNOMEDCT$ = [9, n0, _ISNOMEDCT,
|
|
935
|
+
0, () => InferSNOMEDCTRequest$, () => InferSNOMEDCTResponse$
|
|
936
|
+
];
|
|
937
|
+
var ListEntitiesDetectionV2Jobs$ = [9, n0, _LEDVJ,
|
|
938
|
+
0, () => ListEntitiesDetectionV2JobsRequest$, () => ListEntitiesDetectionV2JobsResponse$
|
|
939
|
+
];
|
|
940
|
+
var ListICD10CMInferenceJobs$ = [9, n0, _LICDCMIJ,
|
|
941
|
+
0, () => ListICD10CMInferenceJobsRequest$, () => ListICD10CMInferenceJobsResponse$
|
|
942
|
+
];
|
|
943
|
+
var ListPHIDetectionJobs$ = [9, n0, _LPHIDJ,
|
|
944
|
+
0, () => ListPHIDetectionJobsRequest$, () => ListPHIDetectionJobsResponse$
|
|
945
|
+
];
|
|
946
|
+
var ListRxNormInferenceJobs$ = [9, n0, _LRNIJ,
|
|
947
|
+
0, () => ListRxNormInferenceJobsRequest$, () => ListRxNormInferenceJobsResponse$
|
|
948
|
+
];
|
|
949
|
+
var ListSNOMEDCTInferenceJobs$ = [9, n0, _LSNOMEDCTIJ,
|
|
950
|
+
0, () => ListSNOMEDCTInferenceJobsRequest$, () => ListSNOMEDCTInferenceJobsResponse$
|
|
951
|
+
];
|
|
952
|
+
var StartEntitiesDetectionV2Job$ = [9, n0, _SEDVJ,
|
|
953
|
+
0, () => StartEntitiesDetectionV2JobRequest$, () => StartEntitiesDetectionV2JobResponse$
|
|
954
|
+
];
|
|
955
|
+
var StartICD10CMInferenceJob$ = [9, n0, _SICDCMIJ,
|
|
956
|
+
0, () => StartICD10CMInferenceJobRequest$, () => StartICD10CMInferenceJobResponse$
|
|
957
|
+
];
|
|
958
|
+
var StartPHIDetectionJob$ = [9, n0, _SPHIDJ,
|
|
959
|
+
0, () => StartPHIDetectionJobRequest$, () => StartPHIDetectionJobResponse$
|
|
960
|
+
];
|
|
961
|
+
var StartRxNormInferenceJob$ = [9, n0, _SRNIJ,
|
|
962
|
+
0, () => StartRxNormInferenceJobRequest$, () => StartRxNormInferenceJobResponse$
|
|
963
|
+
];
|
|
964
|
+
var StartSNOMEDCTInferenceJob$ = [9, n0, _SSNOMEDCTIJ,
|
|
965
|
+
0, () => StartSNOMEDCTInferenceJobRequest$, () => StartSNOMEDCTInferenceJobResponse$
|
|
966
|
+
];
|
|
967
|
+
var StopEntitiesDetectionV2Job$ = [9, n0, _SEDVJt,
|
|
968
|
+
0, () => StopEntitiesDetectionV2JobRequest$, () => StopEntitiesDetectionV2JobResponse$
|
|
969
|
+
];
|
|
970
|
+
var StopICD10CMInferenceJob$ = [9, n0, _SICDCMIJt,
|
|
971
|
+
0, () => StopICD10CMInferenceJobRequest$, () => StopICD10CMInferenceJobResponse$
|
|
972
|
+
];
|
|
973
|
+
var StopPHIDetectionJob$ = [9, n0, _SPHIDJt,
|
|
974
|
+
0, () => StopPHIDetectionJobRequest$, () => StopPHIDetectionJobResponse$
|
|
975
|
+
];
|
|
976
|
+
var StopRxNormInferenceJob$ = [9, n0, _SRNIJt,
|
|
977
|
+
0, () => StopRxNormInferenceJobRequest$, () => StopRxNormInferenceJobResponse$
|
|
978
|
+
];
|
|
979
|
+
var StopSNOMEDCTInferenceJob$ = [9, n0, _SSNOMEDCTIJt,
|
|
980
|
+
0, () => StopSNOMEDCTInferenceJobRequest$, () => StopSNOMEDCTInferenceJobResponse$
|
|
981
|
+
];
|
|
982
|
+
|
|
983
|
+
const getRuntimeConfig$1 = (config) => {
|
|
984
|
+
return {
|
|
985
|
+
apiVersion: "2018-10-30",
|
|
986
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
987
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
988
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
989
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
990
|
+
extensions: config?.extensions ?? [],
|
|
991
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultComprehendMedicalHttpAuthSchemeProvider,
|
|
992
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
993
|
+
{
|
|
994
|
+
schemeId: "aws.auth#sigv4",
|
|
995
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
996
|
+
signer: new AwsSdkSigV4Signer(),
|
|
997
|
+
},
|
|
998
|
+
],
|
|
999
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1000
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1001
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1002
|
+
defaultNamespace: "com.amazonaws.comprehendmedical",
|
|
1003
|
+
errorTypeRegistries,
|
|
1004
|
+
version: "2018-10-30",
|
|
1005
|
+
serviceTarget: "ComprehendMedical_20181030",
|
|
1006
|
+
},
|
|
1007
|
+
serviceId: config?.serviceId ?? "ComprehendMedical",
|
|
1008
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1009
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1010
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1011
|
+
};
|
|
1012
|
+
};
|
|
1013
|
+
|
|
1014
|
+
const getRuntimeConfig = (config) => {
|
|
1015
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1016
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1017
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1018
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1019
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1020
|
+
const loaderConfig = {
|
|
1021
|
+
profile: config?.profile,
|
|
1022
|
+
logger: clientSharedValues.logger,
|
|
1023
|
+
};
|
|
1024
|
+
return {
|
|
1025
|
+
...clientSharedValues,
|
|
1026
|
+
...config,
|
|
1027
|
+
runtime: "node",
|
|
1028
|
+
defaultsMode,
|
|
1029
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1030
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1031
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1032
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1033
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1034
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1035
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1036
|
+
retryMode: config?.retryMode ??
|
|
1037
|
+
loadConfig({
|
|
1038
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1039
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1040
|
+
}, config),
|
|
1041
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1042
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1043
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1044
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1045
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1046
|
+
};
|
|
1047
|
+
};
|
|
1048
|
+
|
|
34
1049
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1050
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1051
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -648,51 +1663,170 @@ const SNOMEDCTEntityType = {
|
|
|
648
1663
|
TREATMENT_NAME: "TREATMENT_NAME",
|
|
649
1664
|
};
|
|
650
1665
|
|
|
1666
|
+
exports.Attribute$ = Attribute$;
|
|
651
1667
|
exports.AttributeName = AttributeName;
|
|
1668
|
+
exports.Characters$ = Characters$;
|
|
652
1669
|
exports.ComprehendMedical = ComprehendMedical;
|
|
1670
|
+
exports.ComprehendMedicalAsyncJobFilter$ = ComprehendMedicalAsyncJobFilter$;
|
|
1671
|
+
exports.ComprehendMedicalAsyncJobProperties$ = ComprehendMedicalAsyncJobProperties$;
|
|
653
1672
|
exports.ComprehendMedicalClient = ComprehendMedicalClient;
|
|
1673
|
+
exports.ComprehendMedicalServiceException = ComprehendMedicalServiceException;
|
|
1674
|
+
exports.ComprehendMedicalServiceException$ = ComprehendMedicalServiceException$;
|
|
1675
|
+
exports.DescribeEntitiesDetectionV2Job$ = DescribeEntitiesDetectionV2Job$;
|
|
654
1676
|
exports.DescribeEntitiesDetectionV2JobCommand = DescribeEntitiesDetectionV2JobCommand;
|
|
1677
|
+
exports.DescribeEntitiesDetectionV2JobRequest$ = DescribeEntitiesDetectionV2JobRequest$;
|
|
1678
|
+
exports.DescribeEntitiesDetectionV2JobResponse$ = DescribeEntitiesDetectionV2JobResponse$;
|
|
1679
|
+
exports.DescribeICD10CMInferenceJob$ = DescribeICD10CMInferenceJob$;
|
|
655
1680
|
exports.DescribeICD10CMInferenceJobCommand = DescribeICD10CMInferenceJobCommand;
|
|
1681
|
+
exports.DescribeICD10CMInferenceJobRequest$ = DescribeICD10CMInferenceJobRequest$;
|
|
1682
|
+
exports.DescribeICD10CMInferenceJobResponse$ = DescribeICD10CMInferenceJobResponse$;
|
|
1683
|
+
exports.DescribePHIDetectionJob$ = DescribePHIDetectionJob$;
|
|
656
1684
|
exports.DescribePHIDetectionJobCommand = DescribePHIDetectionJobCommand;
|
|
1685
|
+
exports.DescribePHIDetectionJobRequest$ = DescribePHIDetectionJobRequest$;
|
|
1686
|
+
exports.DescribePHIDetectionJobResponse$ = DescribePHIDetectionJobResponse$;
|
|
1687
|
+
exports.DescribeRxNormInferenceJob$ = DescribeRxNormInferenceJob$;
|
|
657
1688
|
exports.DescribeRxNormInferenceJobCommand = DescribeRxNormInferenceJobCommand;
|
|
1689
|
+
exports.DescribeRxNormInferenceJobRequest$ = DescribeRxNormInferenceJobRequest$;
|
|
1690
|
+
exports.DescribeRxNormInferenceJobResponse$ = DescribeRxNormInferenceJobResponse$;
|
|
1691
|
+
exports.DescribeSNOMEDCTInferenceJob$ = DescribeSNOMEDCTInferenceJob$;
|
|
658
1692
|
exports.DescribeSNOMEDCTInferenceJobCommand = DescribeSNOMEDCTInferenceJobCommand;
|
|
1693
|
+
exports.DescribeSNOMEDCTInferenceJobRequest$ = DescribeSNOMEDCTInferenceJobRequest$;
|
|
1694
|
+
exports.DescribeSNOMEDCTInferenceJobResponse$ = DescribeSNOMEDCTInferenceJobResponse$;
|
|
1695
|
+
exports.DetectEntities$ = DetectEntities$;
|
|
659
1696
|
exports.DetectEntitiesCommand = DetectEntitiesCommand;
|
|
1697
|
+
exports.DetectEntitiesRequest$ = DetectEntitiesRequest$;
|
|
1698
|
+
exports.DetectEntitiesResponse$ = DetectEntitiesResponse$;
|
|
1699
|
+
exports.DetectEntitiesV2$ = DetectEntitiesV2$;
|
|
660
1700
|
exports.DetectEntitiesV2Command = DetectEntitiesV2Command;
|
|
1701
|
+
exports.DetectEntitiesV2Request$ = DetectEntitiesV2Request$;
|
|
1702
|
+
exports.DetectEntitiesV2Response$ = DetectEntitiesV2Response$;
|
|
1703
|
+
exports.DetectPHI$ = DetectPHI$;
|
|
661
1704
|
exports.DetectPHICommand = DetectPHICommand;
|
|
1705
|
+
exports.DetectPHIRequest$ = DetectPHIRequest$;
|
|
1706
|
+
exports.DetectPHIResponse$ = DetectPHIResponse$;
|
|
1707
|
+
exports.Entity$ = Entity$;
|
|
662
1708
|
exports.EntitySubType = EntitySubType;
|
|
663
1709
|
exports.EntityType = EntityType;
|
|
1710
|
+
exports.ICD10CMAttribute$ = ICD10CMAttribute$;
|
|
664
1711
|
exports.ICD10CMAttributeType = ICD10CMAttributeType;
|
|
1712
|
+
exports.ICD10CMConcept$ = ICD10CMConcept$;
|
|
1713
|
+
exports.ICD10CMEntity$ = ICD10CMEntity$;
|
|
665
1714
|
exports.ICD10CMEntityCategory = ICD10CMEntityCategory;
|
|
666
1715
|
exports.ICD10CMEntityType = ICD10CMEntityType;
|
|
667
1716
|
exports.ICD10CMRelationshipType = ICD10CMRelationshipType;
|
|
1717
|
+
exports.ICD10CMTrait$ = ICD10CMTrait$;
|
|
668
1718
|
exports.ICD10CMTraitName = ICD10CMTraitName;
|
|
1719
|
+
exports.InferICD10CM$ = InferICD10CM$;
|
|
669
1720
|
exports.InferICD10CMCommand = InferICD10CMCommand;
|
|
1721
|
+
exports.InferICD10CMRequest$ = InferICD10CMRequest$;
|
|
1722
|
+
exports.InferICD10CMResponse$ = InferICD10CMResponse$;
|
|
1723
|
+
exports.InferRxNorm$ = InferRxNorm$;
|
|
670
1724
|
exports.InferRxNormCommand = InferRxNormCommand;
|
|
1725
|
+
exports.InferRxNormRequest$ = InferRxNormRequest$;
|
|
1726
|
+
exports.InferRxNormResponse$ = InferRxNormResponse$;
|
|
1727
|
+
exports.InferSNOMEDCT$ = InferSNOMEDCT$;
|
|
671
1728
|
exports.InferSNOMEDCTCommand = InferSNOMEDCTCommand;
|
|
1729
|
+
exports.InferSNOMEDCTRequest$ = InferSNOMEDCTRequest$;
|
|
1730
|
+
exports.InferSNOMEDCTResponse$ = InferSNOMEDCTResponse$;
|
|
1731
|
+
exports.InputDataConfig$ = InputDataConfig$;
|
|
1732
|
+
exports.InternalServerException = InternalServerException;
|
|
1733
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1734
|
+
exports.InvalidEncodingException = InvalidEncodingException;
|
|
1735
|
+
exports.InvalidEncodingException$ = InvalidEncodingException$;
|
|
1736
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1737
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
672
1738
|
exports.JobStatus = JobStatus;
|
|
673
1739
|
exports.LanguageCode = LanguageCode;
|
|
1740
|
+
exports.ListEntitiesDetectionV2Jobs$ = ListEntitiesDetectionV2Jobs$;
|
|
674
1741
|
exports.ListEntitiesDetectionV2JobsCommand = ListEntitiesDetectionV2JobsCommand;
|
|
1742
|
+
exports.ListEntitiesDetectionV2JobsRequest$ = ListEntitiesDetectionV2JobsRequest$;
|
|
1743
|
+
exports.ListEntitiesDetectionV2JobsResponse$ = ListEntitiesDetectionV2JobsResponse$;
|
|
1744
|
+
exports.ListICD10CMInferenceJobs$ = ListICD10CMInferenceJobs$;
|
|
675
1745
|
exports.ListICD10CMInferenceJobsCommand = ListICD10CMInferenceJobsCommand;
|
|
1746
|
+
exports.ListICD10CMInferenceJobsRequest$ = ListICD10CMInferenceJobsRequest$;
|
|
1747
|
+
exports.ListICD10CMInferenceJobsResponse$ = ListICD10CMInferenceJobsResponse$;
|
|
1748
|
+
exports.ListPHIDetectionJobs$ = ListPHIDetectionJobs$;
|
|
676
1749
|
exports.ListPHIDetectionJobsCommand = ListPHIDetectionJobsCommand;
|
|
1750
|
+
exports.ListPHIDetectionJobsRequest$ = ListPHIDetectionJobsRequest$;
|
|
1751
|
+
exports.ListPHIDetectionJobsResponse$ = ListPHIDetectionJobsResponse$;
|
|
1752
|
+
exports.ListRxNormInferenceJobs$ = ListRxNormInferenceJobs$;
|
|
677
1753
|
exports.ListRxNormInferenceJobsCommand = ListRxNormInferenceJobsCommand;
|
|
1754
|
+
exports.ListRxNormInferenceJobsRequest$ = ListRxNormInferenceJobsRequest$;
|
|
1755
|
+
exports.ListRxNormInferenceJobsResponse$ = ListRxNormInferenceJobsResponse$;
|
|
1756
|
+
exports.ListSNOMEDCTInferenceJobs$ = ListSNOMEDCTInferenceJobs$;
|
|
678
1757
|
exports.ListSNOMEDCTInferenceJobsCommand = ListSNOMEDCTInferenceJobsCommand;
|
|
1758
|
+
exports.ListSNOMEDCTInferenceJobsRequest$ = ListSNOMEDCTInferenceJobsRequest$;
|
|
1759
|
+
exports.ListSNOMEDCTInferenceJobsResponse$ = ListSNOMEDCTInferenceJobsResponse$;
|
|
1760
|
+
exports.OutputDataConfig$ = OutputDataConfig$;
|
|
679
1761
|
exports.RelationshipType = RelationshipType;
|
|
1762
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1763
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1764
|
+
exports.RxNormAttribute$ = RxNormAttribute$;
|
|
680
1765
|
exports.RxNormAttributeType = RxNormAttributeType;
|
|
1766
|
+
exports.RxNormConcept$ = RxNormConcept$;
|
|
1767
|
+
exports.RxNormEntity$ = RxNormEntity$;
|
|
681
1768
|
exports.RxNormEntityCategory = RxNormEntityCategory;
|
|
682
1769
|
exports.RxNormEntityType = RxNormEntityType;
|
|
1770
|
+
exports.RxNormTrait$ = RxNormTrait$;
|
|
683
1771
|
exports.RxNormTraitName = RxNormTraitName;
|
|
1772
|
+
exports.SNOMEDCTAttribute$ = SNOMEDCTAttribute$;
|
|
684
1773
|
exports.SNOMEDCTAttributeType = SNOMEDCTAttributeType;
|
|
1774
|
+
exports.SNOMEDCTConcept$ = SNOMEDCTConcept$;
|
|
1775
|
+
exports.SNOMEDCTDetails$ = SNOMEDCTDetails$;
|
|
1776
|
+
exports.SNOMEDCTEntity$ = SNOMEDCTEntity$;
|
|
685
1777
|
exports.SNOMEDCTEntityCategory = SNOMEDCTEntityCategory;
|
|
686
1778
|
exports.SNOMEDCTEntityType = SNOMEDCTEntityType;
|
|
687
1779
|
exports.SNOMEDCTRelationshipType = SNOMEDCTRelationshipType;
|
|
1780
|
+
exports.SNOMEDCTTrait$ = SNOMEDCTTrait$;
|
|
688
1781
|
exports.SNOMEDCTTraitName = SNOMEDCTTraitName;
|
|
1782
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1783
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1784
|
+
exports.StartEntitiesDetectionV2Job$ = StartEntitiesDetectionV2Job$;
|
|
689
1785
|
exports.StartEntitiesDetectionV2JobCommand = StartEntitiesDetectionV2JobCommand;
|
|
1786
|
+
exports.StartEntitiesDetectionV2JobRequest$ = StartEntitiesDetectionV2JobRequest$;
|
|
1787
|
+
exports.StartEntitiesDetectionV2JobResponse$ = StartEntitiesDetectionV2JobResponse$;
|
|
1788
|
+
exports.StartICD10CMInferenceJob$ = StartICD10CMInferenceJob$;
|
|
690
1789
|
exports.StartICD10CMInferenceJobCommand = StartICD10CMInferenceJobCommand;
|
|
1790
|
+
exports.StartICD10CMInferenceJobRequest$ = StartICD10CMInferenceJobRequest$;
|
|
1791
|
+
exports.StartICD10CMInferenceJobResponse$ = StartICD10CMInferenceJobResponse$;
|
|
1792
|
+
exports.StartPHIDetectionJob$ = StartPHIDetectionJob$;
|
|
691
1793
|
exports.StartPHIDetectionJobCommand = StartPHIDetectionJobCommand;
|
|
1794
|
+
exports.StartPHIDetectionJobRequest$ = StartPHIDetectionJobRequest$;
|
|
1795
|
+
exports.StartPHIDetectionJobResponse$ = StartPHIDetectionJobResponse$;
|
|
1796
|
+
exports.StartRxNormInferenceJob$ = StartRxNormInferenceJob$;
|
|
692
1797
|
exports.StartRxNormInferenceJobCommand = StartRxNormInferenceJobCommand;
|
|
1798
|
+
exports.StartRxNormInferenceJobRequest$ = StartRxNormInferenceJobRequest$;
|
|
1799
|
+
exports.StartRxNormInferenceJobResponse$ = StartRxNormInferenceJobResponse$;
|
|
1800
|
+
exports.StartSNOMEDCTInferenceJob$ = StartSNOMEDCTInferenceJob$;
|
|
693
1801
|
exports.StartSNOMEDCTInferenceJobCommand = StartSNOMEDCTInferenceJobCommand;
|
|
1802
|
+
exports.StartSNOMEDCTInferenceJobRequest$ = StartSNOMEDCTInferenceJobRequest$;
|
|
1803
|
+
exports.StartSNOMEDCTInferenceJobResponse$ = StartSNOMEDCTInferenceJobResponse$;
|
|
1804
|
+
exports.StopEntitiesDetectionV2Job$ = StopEntitiesDetectionV2Job$;
|
|
694
1805
|
exports.StopEntitiesDetectionV2JobCommand = StopEntitiesDetectionV2JobCommand;
|
|
1806
|
+
exports.StopEntitiesDetectionV2JobRequest$ = StopEntitiesDetectionV2JobRequest$;
|
|
1807
|
+
exports.StopEntitiesDetectionV2JobResponse$ = StopEntitiesDetectionV2JobResponse$;
|
|
1808
|
+
exports.StopICD10CMInferenceJob$ = StopICD10CMInferenceJob$;
|
|
695
1809
|
exports.StopICD10CMInferenceJobCommand = StopICD10CMInferenceJobCommand;
|
|
1810
|
+
exports.StopICD10CMInferenceJobRequest$ = StopICD10CMInferenceJobRequest$;
|
|
1811
|
+
exports.StopICD10CMInferenceJobResponse$ = StopICD10CMInferenceJobResponse$;
|
|
1812
|
+
exports.StopPHIDetectionJob$ = StopPHIDetectionJob$;
|
|
696
1813
|
exports.StopPHIDetectionJobCommand = StopPHIDetectionJobCommand;
|
|
1814
|
+
exports.StopPHIDetectionJobRequest$ = StopPHIDetectionJobRequest$;
|
|
1815
|
+
exports.StopPHIDetectionJobResponse$ = StopPHIDetectionJobResponse$;
|
|
1816
|
+
exports.StopRxNormInferenceJob$ = StopRxNormInferenceJob$;
|
|
697
1817
|
exports.StopRxNormInferenceJobCommand = StopRxNormInferenceJobCommand;
|
|
1818
|
+
exports.StopRxNormInferenceJobRequest$ = StopRxNormInferenceJobRequest$;
|
|
1819
|
+
exports.StopRxNormInferenceJobResponse$ = StopRxNormInferenceJobResponse$;
|
|
1820
|
+
exports.StopSNOMEDCTInferenceJob$ = StopSNOMEDCTInferenceJob$;
|
|
698
1821
|
exports.StopSNOMEDCTInferenceJobCommand = StopSNOMEDCTInferenceJobCommand;
|
|
1822
|
+
exports.StopSNOMEDCTInferenceJobRequest$ = StopSNOMEDCTInferenceJobRequest$;
|
|
1823
|
+
exports.StopSNOMEDCTInferenceJobResponse$ = StopSNOMEDCTInferenceJobResponse$;
|
|
1824
|
+
exports.TextSizeLimitExceededException = TextSizeLimitExceededException;
|
|
1825
|
+
exports.TextSizeLimitExceededException$ = TextSizeLimitExceededException$;
|
|
1826
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1827
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1828
|
+
exports.Trait$ = Trait$;
|
|
1829
|
+
exports.UnmappedAttribute$ = UnmappedAttribute$;
|
|
1830
|
+
exports.ValidationException = ValidationException;
|
|
1831
|
+
exports.ValidationException$ = ValidationException$;
|
|
1832
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|