@aws-sdk/client-comprehend 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 +3316 -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/ComprehendServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -229
- 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 -2810
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, createPaginator } = 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 defaultComprehendHttpAuthSchemeParametersProvider = 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: "comprehend",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultComprehendHttpAuthSchemeProvider = (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,2876 @@ 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://comprehend-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://comprehend-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://comprehend.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://comprehend.{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 ComprehendServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ComprehendServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class BatchSizeLimitExceededException extends ComprehendServiceException {
|
|
140
|
+
name = "BatchSizeLimitExceededException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "BatchSizeLimitExceededException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, BatchSizeLimitExceededException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InternalServerException extends ComprehendServiceException {
|
|
154
|
+
name = "InternalServerException";
|
|
155
|
+
$fault = "server";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InternalServerException",
|
|
160
|
+
$fault: "server",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InvalidRequestException extends ComprehendServiceException {
|
|
168
|
+
name = "InvalidRequestException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
Reason;
|
|
172
|
+
Detail;
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "InvalidRequestException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
180
|
+
this.Message = opts.Message;
|
|
181
|
+
this.Reason = opts.Reason;
|
|
182
|
+
this.Detail = opts.Detail;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class TextSizeLimitExceededException extends ComprehendServiceException {
|
|
186
|
+
name = "TextSizeLimitExceededException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
Message;
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "TextSizeLimitExceededException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class UnsupportedLanguageException extends ComprehendServiceException {
|
|
200
|
+
name = "UnsupportedLanguageException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
Message;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "UnsupportedLanguageException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, UnsupportedLanguageException.prototype);
|
|
210
|
+
this.Message = opts.Message;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class ResourceUnavailableException extends ComprehendServiceException {
|
|
214
|
+
name = "ResourceUnavailableException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
Message;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "ResourceUnavailableException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class ResourceInUseException extends ComprehendServiceException {
|
|
228
|
+
name = "ResourceInUseException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
Message;
|
|
231
|
+
constructor(opts) {
|
|
232
|
+
super({
|
|
233
|
+
name: "ResourceInUseException",
|
|
234
|
+
$fault: "client",
|
|
235
|
+
...opts,
|
|
236
|
+
});
|
|
237
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
238
|
+
this.Message = opts.Message;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class ResourceLimitExceededException extends ComprehendServiceException {
|
|
242
|
+
name = "ResourceLimitExceededException";
|
|
243
|
+
$fault = "client";
|
|
244
|
+
Message;
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "ResourceLimitExceededException",
|
|
248
|
+
$fault: "client",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
252
|
+
this.Message = opts.Message;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
class ResourceNotFoundException extends ComprehendServiceException {
|
|
256
|
+
name = "ResourceNotFoundException";
|
|
257
|
+
$fault = "client";
|
|
258
|
+
Message;
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "ResourceNotFoundException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
266
|
+
this.Message = opts.Message;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
class TooManyRequestsException extends ComprehendServiceException {
|
|
270
|
+
name = "TooManyRequestsException";
|
|
271
|
+
$fault = "client";
|
|
272
|
+
Message;
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "TooManyRequestsException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class TooManyTagsException extends ComprehendServiceException {
|
|
284
|
+
name = "TooManyTagsException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
Message;
|
|
287
|
+
constructor(opts) {
|
|
288
|
+
super({
|
|
289
|
+
name: "TooManyTagsException",
|
|
290
|
+
$fault: "client",
|
|
291
|
+
...opts,
|
|
292
|
+
});
|
|
293
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
294
|
+
this.Message = opts.Message;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
class KmsKeyValidationException extends ComprehendServiceException {
|
|
298
|
+
name = "KmsKeyValidationException";
|
|
299
|
+
$fault = "client";
|
|
300
|
+
Message;
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "KmsKeyValidationException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
Object.setPrototypeOf(this, KmsKeyValidationException.prototype);
|
|
308
|
+
this.Message = opts.Message;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class JobNotFoundException extends ComprehendServiceException {
|
|
312
|
+
name = "JobNotFoundException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
Message;
|
|
315
|
+
constructor(opts) {
|
|
316
|
+
super({
|
|
317
|
+
name: "JobNotFoundException",
|
|
318
|
+
$fault: "client",
|
|
319
|
+
...opts,
|
|
320
|
+
});
|
|
321
|
+
Object.setPrototypeOf(this, JobNotFoundException.prototype);
|
|
322
|
+
this.Message = opts.Message;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class InvalidFilterException extends ComprehendServiceException {
|
|
326
|
+
name = "InvalidFilterException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
Message;
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "InvalidFilterException",
|
|
332
|
+
$fault: "client",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
Object.setPrototypeOf(this, InvalidFilterException.prototype);
|
|
336
|
+
this.Message = opts.Message;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
class ConcurrentModificationException extends ComprehendServiceException {
|
|
340
|
+
name = "ConcurrentModificationException";
|
|
341
|
+
$fault = "client";
|
|
342
|
+
Message;
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "ConcurrentModificationException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
350
|
+
this.Message = opts.Message;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class TooManyTagKeysException extends ComprehendServiceException {
|
|
354
|
+
name = "TooManyTagKeysException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "TooManyTagKeysException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, TooManyTagKeysException.prototype);
|
|
364
|
+
this.Message = opts.Message;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
const _A = "Accuracy";
|
|
369
|
+
const _AA = "AverageAccuracy";
|
|
370
|
+
const _ADSU = "AnnotationDataS3Uri";
|
|
371
|
+
const _AFS = "AverageF1Score";
|
|
372
|
+
const _AM = "AugmentedManifests";
|
|
373
|
+
const _AMA = "ActiveModelArn";
|
|
374
|
+
const _AMLI = "AugmentedManifestsListItem";
|
|
375
|
+
const _AN = "AttributeNames";
|
|
376
|
+
const _AP = "AveragePrecision";
|
|
377
|
+
const _AR = "AverageRecall";
|
|
378
|
+
const _An = "Annotations";
|
|
379
|
+
const _B = "Block";
|
|
380
|
+
const _BB = "BoundingBox";
|
|
381
|
+
const _BDDL = "BatchDetectDominantLanguage";
|
|
382
|
+
const _BDDLIR = "BatchDetectDominantLanguageItemResult";
|
|
383
|
+
const _BDDLR = "BatchDetectDominantLanguageRequest";
|
|
384
|
+
const _BDDLRa = "BatchDetectDominantLanguageResponse";
|
|
385
|
+
const _BDE = "BatchDetectEntities";
|
|
386
|
+
const _BDEIR = "BatchDetectEntitiesItemResult";
|
|
387
|
+
const _BDER = "BatchDetectEntitiesRequest";
|
|
388
|
+
const _BDERa = "BatchDetectEntitiesResponse";
|
|
389
|
+
const _BDKP = "BatchDetectKeyPhrases";
|
|
390
|
+
const _BDKPIR = "BatchDetectKeyPhrasesItemResult";
|
|
391
|
+
const _BDKPR = "BatchDetectKeyPhrasesRequest";
|
|
392
|
+
const _BDKPRa = "BatchDetectKeyPhrasesResponse";
|
|
393
|
+
const _BDS = "BatchDetectSentiment";
|
|
394
|
+
const _BDSIR = "BatchDetectSentimentItemResult";
|
|
395
|
+
const _BDSIRa = "BatchDetectSyntaxItemResult";
|
|
396
|
+
const _BDSR = "BatchDetectSentimentRequest";
|
|
397
|
+
const _BDSRa = "BatchDetectSentimentResponse";
|
|
398
|
+
const _BDSRat = "BatchDetectSyntaxRequest";
|
|
399
|
+
const _BDSRatc = "BatchDetectSyntaxResponse";
|
|
400
|
+
const _BDSa = "BatchDetectSyntax";
|
|
401
|
+
const _BDTS = "BatchDetectTargetedSentiment";
|
|
402
|
+
const _BDTSIR = "BatchDetectTargetedSentimentItemResult";
|
|
403
|
+
const _BDTSR = "BatchDetectTargetedSentimentRequest";
|
|
404
|
+
const _BDTSRa = "BatchDetectTargetedSentimentResponse";
|
|
405
|
+
const _BI = "BlockId";
|
|
406
|
+
const _BIE = "BatchItemError";
|
|
407
|
+
const _BIEL = "BatchItemErrorList";
|
|
408
|
+
const _BO = "BeginOffset";
|
|
409
|
+
const _BR = "BlockReference";
|
|
410
|
+
const _BRl = "BlockReferences";
|
|
411
|
+
const _BSLEE = "BatchSizeLimitExceededException";
|
|
412
|
+
const _BT = "BlockType";
|
|
413
|
+
const _Bl = "Blocks";
|
|
414
|
+
const _By = "Bytes";
|
|
415
|
+
const _C = "Classes";
|
|
416
|
+
const _CB = "ChildBlocks";
|
|
417
|
+
const _CBI = "ChildBlockId";
|
|
418
|
+
const _CBh = "ChildBlock";
|
|
419
|
+
const _CD = "ClassifyDocument";
|
|
420
|
+
const _CDC = "CreateDocumentClassifier";
|
|
421
|
+
const _CDCR = "CreateDocumentClassifierRequest";
|
|
422
|
+
const _CDCRr = "CreateDocumentClassifierResponse";
|
|
423
|
+
const _CDR = "ClassifyDocumentRequest";
|
|
424
|
+
const _CDRl = "ClassifyDocumentResponse";
|
|
425
|
+
const _CDRr = "CreateDatasetRequest";
|
|
426
|
+
const _CDRre = "CreateDatasetResponse";
|
|
427
|
+
const _CDr = "CreateDataset";
|
|
428
|
+
const _CE = "CreateEndpoint";
|
|
429
|
+
const _CEM = "ClassifierEvaluationMetrics";
|
|
430
|
+
const _CER = "CreateEndpointRequest";
|
|
431
|
+
const _CERR = "CreateEntityRecognizerRequest";
|
|
432
|
+
const _CERRr = "CreateEntityRecognizerResponse";
|
|
433
|
+
const _CERr = "CreateEndpointResponse";
|
|
434
|
+
const _CERre = "CreateEntityRecognizer";
|
|
435
|
+
const _CF = "CreateFlywheel";
|
|
436
|
+
const _CFR = "CreateFlywheelRequest";
|
|
437
|
+
const _CFRr = "CreateFlywheelResponse";
|
|
438
|
+
const _CIS = "CustomerInputString";
|
|
439
|
+
const _CISL = "CustomerInputStringList";
|
|
440
|
+
const _CIU = "CurrentInferenceUnits";
|
|
441
|
+
const _CM = "ClassifierMetadata";
|
|
442
|
+
const _CME = "ConcurrentModificationException";
|
|
443
|
+
const _CPE = "ContainsPiiEntities";
|
|
444
|
+
const _CPER = "ContainsPiiEntitiesRequest";
|
|
445
|
+
const _CPERo = "ContainsPiiEntitiesResponse";
|
|
446
|
+
const _CRT = "ClientRequestToken";
|
|
447
|
+
const _CT = "CreationTime";
|
|
448
|
+
const _CTA = "CreationTimeAfter";
|
|
449
|
+
const _CTB = "CreationTimeBefore";
|
|
450
|
+
const _Co = "Count";
|
|
451
|
+
const _D = "Detail";
|
|
452
|
+
const _DA = "DatasetArn";
|
|
453
|
+
const _DAML = "DatasetAugmentedManifestsList";
|
|
454
|
+
const _DAMLI = "DatasetAugmentedManifestsListItem";
|
|
455
|
+
const _DARA = "DataAccessRoleArn";
|
|
456
|
+
const _DC = "DocumentClass";
|
|
457
|
+
const _DCA = "DocumentClassifierArn";
|
|
458
|
+
const _DCAML = "DocumentClassifierAugmentedManifestsList";
|
|
459
|
+
const _DCC = "DocumentClassificationConfig";
|
|
460
|
+
const _DCD = "DocumentClassifierDocuments";
|
|
461
|
+
const _DCF = "DocumentClassifierFilter";
|
|
462
|
+
const _DCIDC = "DocumentClassifierInputDataConfig";
|
|
463
|
+
const _DCJF = "DocumentClassificationJobFilter";
|
|
464
|
+
const _DCJP = "DocumentClassificationJobProperties";
|
|
465
|
+
const _DCJPL = "DocumentClassificationJobPropertiesList";
|
|
466
|
+
const _DCN = "DocumentClassifierName";
|
|
467
|
+
const _DCODC = "DocumentClassifierOutputDataConfig";
|
|
468
|
+
const _DCP = "DocumentClassifierProperties";
|
|
469
|
+
const _DCPL = "DocumentClassifierPropertiesList";
|
|
470
|
+
const _DCS = "DocumentClassifierSummary";
|
|
471
|
+
const _DCSL = "DocumentClassifierSummariesList";
|
|
472
|
+
const _DD = "DescribeDataset";
|
|
473
|
+
const _DDARA = "DesiredDataAccessRoleArn";
|
|
474
|
+
const _DDC = "DeleteDocumentClassifier";
|
|
475
|
+
const _DDCIDC = "DatasetDocumentClassifierInputDataConfig";
|
|
476
|
+
const _DDCJ = "DescribeDocumentClassificationJob";
|
|
477
|
+
const _DDCJR = "DescribeDocumentClassificationJobRequest";
|
|
478
|
+
const _DDCJRe = "DescribeDocumentClassificationJobResponse";
|
|
479
|
+
const _DDCR = "DeleteDocumentClassifierRequest";
|
|
480
|
+
const _DDCRe = "DeleteDocumentClassifierResponse";
|
|
481
|
+
const _DDCRes = "DescribeDocumentClassifierRequest";
|
|
482
|
+
const _DDCResc = "DescribeDocumentClassifierResponse";
|
|
483
|
+
const _DDCe = "DescribeDocumentClassifier";
|
|
484
|
+
const _DDL = "DetectDominantLanguage";
|
|
485
|
+
const _DDLDJ = "DescribeDominantLanguageDetectionJob";
|
|
486
|
+
const _DDLDJR = "DescribeDominantLanguageDetectionJobRequest";
|
|
487
|
+
const _DDLDJRe = "DescribeDominantLanguageDetectionJobResponse";
|
|
488
|
+
const _DDLR = "DetectDominantLanguageRequest";
|
|
489
|
+
const _DDLRe = "DetectDominantLanguageResponse";
|
|
490
|
+
const _DDR = "DescribeDatasetRequest";
|
|
491
|
+
const _DDRe = "DescribeDatasetResponse";
|
|
492
|
+
const _DE = "DeleteEndpoint";
|
|
493
|
+
const _DEDJ = "DescribeEntitiesDetectionJob";
|
|
494
|
+
const _DEDJR = "DescribeEntitiesDetectionJobRequest";
|
|
495
|
+
const _DEDJRe = "DescribeEntitiesDetectionJobResponse";
|
|
496
|
+
const _DEDJRes = "DescribeEventsDetectionJobRequest";
|
|
497
|
+
const _DEDJResc = "DescribeEventsDetectionJobResponse";
|
|
498
|
+
const _DEDJe = "DescribeEventsDetectionJob";
|
|
499
|
+
const _DER = "DeleteEndpointRequest";
|
|
500
|
+
const _DERA = "DatasetEntityRecognizerAnnotations";
|
|
501
|
+
const _DERD = "DatasetEntityRecognizerDocuments";
|
|
502
|
+
const _DEREL = "DatasetEntityRecognizerEntityList";
|
|
503
|
+
const _DERIDC = "DatasetEntityRecognizerInputDataConfig";
|
|
504
|
+
const _DERR = "DeleteEntityRecognizerRequest";
|
|
505
|
+
const _DERRe = "DeleteEntityRecognizerResponse";
|
|
506
|
+
const _DERRes = "DescribeEntityRecognizerRequest";
|
|
507
|
+
const _DERResc = "DescribeEntityRecognizerResponse";
|
|
508
|
+
const _DERe = "DeleteEndpointResponse";
|
|
509
|
+
const _DERel = "DeleteEntityRecognizer";
|
|
510
|
+
const _DERes = "DescribeEndpointRequest";
|
|
511
|
+
const _DEResc = "DescribeEndpointResponse";
|
|
512
|
+
const _DERescr = "DescribeEntityRecognizer";
|
|
513
|
+
const _DERet = "DetectEntitiesRequest";
|
|
514
|
+
const _DERete = "DetectEntitiesResponse";
|
|
515
|
+
const _DEe = "DescribeEndpoint";
|
|
516
|
+
const _DEet = "DetectEntities";
|
|
517
|
+
const _DF = "DatasetFilter";
|
|
518
|
+
const _DFI = "DescribeFlywheelIteration";
|
|
519
|
+
const _DFIR = "DescribeFlywheelIterationRequest";
|
|
520
|
+
const _DFIRe = "DescribeFlywheelIterationResponse";
|
|
521
|
+
const _DFR = "DeleteFlywheelRequest";
|
|
522
|
+
const _DFRe = "DeleteFlywheelResponse";
|
|
523
|
+
const _DFRes = "DescribeFlywheelRequest";
|
|
524
|
+
const _DFResc = "DescribeFlywheelResponse";
|
|
525
|
+
const _DFa = "DataFormat";
|
|
526
|
+
const _DFe = "DeleteFlywheel";
|
|
527
|
+
const _DFes = "DescribeFlywheel";
|
|
528
|
+
const _DIDC = "DatasetInputDataConfig";
|
|
529
|
+
const _DIU = "DesiredInferenceUnits";
|
|
530
|
+
const _DKP = "DetectKeyPhrases";
|
|
531
|
+
const _DKPDJ = "DescribeKeyPhrasesDetectionJob";
|
|
532
|
+
const _DKPDJR = "DescribeKeyPhrasesDetectionJobRequest";
|
|
533
|
+
const _DKPDJRe = "DescribeKeyPhrasesDetectionJobResponse";
|
|
534
|
+
const _DKPR = "DetectKeyPhrasesRequest";
|
|
535
|
+
const _DKPRe = "DetectKeyPhrasesResponse";
|
|
536
|
+
const _DL = "DocumentLabel";
|
|
537
|
+
const _DLDJF = "DominantLanguageDetectionJobFilter";
|
|
538
|
+
const _DLDJP = "DominantLanguageDetectionJobProperties";
|
|
539
|
+
const _DLDJPL = "DominantLanguageDetectionJobPropertiesList";
|
|
540
|
+
const _DLKKI = "DataLakeKmsKeyId";
|
|
541
|
+
const _DLSU = "DataLakeS3Uri";
|
|
542
|
+
const _DLo = "DominantLanguage";
|
|
543
|
+
const _DM = "DocumentMetadata";
|
|
544
|
+
const _DMA = "DesiredModelArn";
|
|
545
|
+
const _DMI = "DescriptiveMentionIndex";
|
|
546
|
+
const _DN = "DatasetName";
|
|
547
|
+
const _DP = "DatasetProperties";
|
|
548
|
+
const _DPE = "DetectPiiEntities";
|
|
549
|
+
const _DPEDJ = "DescribePiiEntitiesDetectionJob";
|
|
550
|
+
const _DPEDJR = "DescribePiiEntitiesDetectionJobRequest";
|
|
551
|
+
const _DPEDJRe = "DescribePiiEntitiesDetectionJobResponse";
|
|
552
|
+
const _DPER = "DetectPiiEntitiesRequest";
|
|
553
|
+
const _DPERe = "DetectPiiEntitiesResponse";
|
|
554
|
+
const _DPL = "DatasetPropertiesList";
|
|
555
|
+
const _DRA = "DocumentReadAction";
|
|
556
|
+
const _DRC = "DocumentReaderConfig";
|
|
557
|
+
const _DRM = "DocumentReadMode";
|
|
558
|
+
const _DRP = "DeleteResourcePolicy";
|
|
559
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
560
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
561
|
+
const _DRPRes = "DescribeResourcePolicyRequest";
|
|
562
|
+
const _DRPResc = "DescribeResourcePolicyResponse";
|
|
563
|
+
const _DRPe = "DescribeResourcePolicy";
|
|
564
|
+
const _DS = "DetectSentiment";
|
|
565
|
+
const _DSC = "DataSecurityConfig";
|
|
566
|
+
const _DSDJ = "DescribeSentimentDetectionJob";
|
|
567
|
+
const _DSDJR = "DescribeSentimentDetectionJobRequest";
|
|
568
|
+
const _DSDJRe = "DescribeSentimentDetectionJobResponse";
|
|
569
|
+
const _DSR = "DetectSentimentRequest";
|
|
570
|
+
const _DSRe = "DetectSentimentResponse";
|
|
571
|
+
const _DSRet = "DetectSyntaxRequest";
|
|
572
|
+
const _DSRete = "DetectSyntaxResponse";
|
|
573
|
+
const _DSU = "DatasetS3Uri";
|
|
574
|
+
const _DSe = "DetectSyntax";
|
|
575
|
+
const _DT = "DocumentType";
|
|
576
|
+
const _DTC = "DetectToxicContent";
|
|
577
|
+
const _DTCR = "DetectToxicContentRequest";
|
|
578
|
+
const _DTCRe = "DetectToxicContentResponse";
|
|
579
|
+
const _DTDJ = "DescribeTopicsDetectionJob";
|
|
580
|
+
const _DTDJR = "DescribeTopicsDetectionJobRequest";
|
|
581
|
+
const _DTDJRe = "DescribeTopicsDetectionJobResponse";
|
|
582
|
+
const _DTLI = "DocumentTypeListItem";
|
|
583
|
+
const _DTS = "DetectTargetedSentiment";
|
|
584
|
+
const _DTSDJ = "DescribeTargetedSentimentDetectionJob";
|
|
585
|
+
const _DTSDJR = "DescribeTargetedSentimentDetectionJobRequest";
|
|
586
|
+
const _DTSDJRe = "DescribeTargetedSentimentDetectionJobResponse";
|
|
587
|
+
const _DTSR = "DetectTargetedSentimentRequest";
|
|
588
|
+
const _DTSRe = "DetectTargetedSentimentResponse";
|
|
589
|
+
const _DTa = "DatasetType";
|
|
590
|
+
const _De = "Description";
|
|
591
|
+
const _Do = "Documents";
|
|
592
|
+
const _E = "Entities";
|
|
593
|
+
const _EA = "EndpointArn";
|
|
594
|
+
const _EC = "ErrorCode";
|
|
595
|
+
const _ECLI = "ExtractedCharactersListItem";
|
|
596
|
+
const _ECx = "ExtractedCharacters";
|
|
597
|
+
const _EDJF = "EntitiesDetectionJobFilter";
|
|
598
|
+
const _EDJFv = "EventsDetectionJobFilter";
|
|
599
|
+
const _EDJP = "EntitiesDetectionJobProperties";
|
|
600
|
+
const _EDJPL = "EntitiesDetectionJobPropertiesList";
|
|
601
|
+
const _EDJPLv = "EventsDetectionJobPropertiesList";
|
|
602
|
+
const _EDJPv = "EventsDetectionJobProperties";
|
|
603
|
+
const _EF = "EndpointFilter";
|
|
604
|
+
const _EL = "ErrorList";
|
|
605
|
+
const _ELI = "ErrorsListItem";
|
|
606
|
+
const _ELn = "EntityList";
|
|
607
|
+
const _ELnt = "EntityLabel";
|
|
608
|
+
const _EM = "ErrorMessage";
|
|
609
|
+
const _EMA = "EvaluatedModelArn";
|
|
610
|
+
const _EMM = "EvaluatedModelMetrics";
|
|
611
|
+
const _EMSP = "EvaluationManifestS3Prefix";
|
|
612
|
+
const _EMv = "EvaluationMetrics";
|
|
613
|
+
const _EN = "EndpointName";
|
|
614
|
+
const _EO = "EndOffset";
|
|
615
|
+
const _EP = "EndpointProperties";
|
|
616
|
+
const _EPL = "EndpointPropertiesList";
|
|
617
|
+
const _ERA = "EntityRecognizerArn";
|
|
618
|
+
const _ERAML = "EntityRecognizerAugmentedManifestsList";
|
|
619
|
+
const _ERAn = "EntityRecognizerAnnotations";
|
|
620
|
+
const _ERC = "EntityRecognitionConfig";
|
|
621
|
+
const _ERD = "EntityRecognizerDocuments";
|
|
622
|
+
const _EREL = "EntityRecognizerEntityList";
|
|
623
|
+
const _EREM = "EntityRecognizerEvaluationMetrics";
|
|
624
|
+
const _ERF = "EntityRecognizerFilter";
|
|
625
|
+
const _ERIDC = "EntityRecognizerInputDataConfig";
|
|
626
|
+
const _ERM = "EntityRecognizerMetadata";
|
|
627
|
+
const _ERMETL = "EntityRecognizerMetadataEntityTypesList";
|
|
628
|
+
const _ERMETLI = "EntityRecognizerMetadataEntityTypesListItem";
|
|
629
|
+
const _ERODC = "EntityRecognizerOutputDataConfig";
|
|
630
|
+
const _ERP = "EntityRecognizerProperties";
|
|
631
|
+
const _ERPL = "EntityRecognizerPropertiesList";
|
|
632
|
+
const _ERS = "EntityRecognizerSummary";
|
|
633
|
+
const _ERSL = "EntityRecognizerSummariesList";
|
|
634
|
+
const _ET = "EndTime";
|
|
635
|
+
const _ETEM = "EntityTypesEvaluationMetrics";
|
|
636
|
+
const _ETL = "EntityTypesList";
|
|
637
|
+
const _ETLI = "EntityTypesListItem";
|
|
638
|
+
const _ETn = "EntityTypes";
|
|
639
|
+
const _En = "Entity";
|
|
640
|
+
const _Er = "Errors";
|
|
641
|
+
const _F = "Filter";
|
|
642
|
+
const _FA = "FlywheelArn";
|
|
643
|
+
const _FF = "FlywheelFilter";
|
|
644
|
+
const _FIF = "FlywheelIterationFilter";
|
|
645
|
+
const _FII = "FlywheelIterationId";
|
|
646
|
+
const _FIP = "FlywheelIterationProperties";
|
|
647
|
+
const _FIPL = "FlywheelIterationPropertiesList";
|
|
648
|
+
const _FMEM = "FlywheelModelEvaluationMetrics";
|
|
649
|
+
const _FN = "FlywheelName";
|
|
650
|
+
const _FP = "FlywheelProperties";
|
|
651
|
+
const _FS = "F1Score";
|
|
652
|
+
const _FSL = "FlywheelSummaryList";
|
|
653
|
+
const _FSSP = "FlywheelStatsS3Prefix";
|
|
654
|
+
const _FSl = "FlywheelSummary";
|
|
655
|
+
const _FT = "FeatureTypes";
|
|
656
|
+
const _G = "Geometry";
|
|
657
|
+
const _GS = "GroupScore";
|
|
658
|
+
const _H = "Height";
|
|
659
|
+
const _HL = "HammingLoss";
|
|
660
|
+
const _I = "Index";
|
|
661
|
+
const _IDC = "InputDataConfig";
|
|
662
|
+
const _IF = "InputFormat";
|
|
663
|
+
const _IFE = "InvalidFilterException";
|
|
664
|
+
const _IM = "ImportModel";
|
|
665
|
+
const _IMR = "ImportModelRequest";
|
|
666
|
+
const _IMRm = "ImportModelResponse";
|
|
667
|
+
const _IRD = "InvalidRequestDetail";
|
|
668
|
+
const _IRE = "InvalidRequestException";
|
|
669
|
+
const _ISE = "InternalServerException";
|
|
670
|
+
const _Id = "Id";
|
|
671
|
+
const _Ids = "Ids";
|
|
672
|
+
const _JA = "JobArn";
|
|
673
|
+
const _JI = "JobId";
|
|
674
|
+
const _JN = "JobName";
|
|
675
|
+
const _JNFE = "JobNotFoundException";
|
|
676
|
+
const _JS = "JobStatus";
|
|
677
|
+
const _K = "Key";
|
|
678
|
+
const _KKI = "KmsKeyId";
|
|
679
|
+
const _KKVE = "KmsKeyValidationException";
|
|
680
|
+
const _KP = "KeyPhrases";
|
|
681
|
+
const _KPDJF = "KeyPhrasesDetectionJobFilter";
|
|
682
|
+
const _KPDJP = "KeyPhrasesDetectionJobProperties";
|
|
683
|
+
const _KPDJPL = "KeyPhrasesDetectionJobPropertiesList";
|
|
684
|
+
const _KPe = "KeyPhrase";
|
|
685
|
+
const _L = "Languages";
|
|
686
|
+
const _LC = "LanguageCode";
|
|
687
|
+
const _LD = "LabelDelimiter";
|
|
688
|
+
const _LDC = "ListDocumentClassifiers";
|
|
689
|
+
const _LDCJ = "ListDocumentClassificationJobs";
|
|
690
|
+
const _LDCJR = "ListDocumentClassificationJobsRequest";
|
|
691
|
+
const _LDCJRi = "ListDocumentClassificationJobsResponse";
|
|
692
|
+
const _LDCR = "ListDocumentClassifiersRequest";
|
|
693
|
+
const _LDCRi = "ListDocumentClassifiersResponse";
|
|
694
|
+
const _LDCS = "ListDocumentClassifierSummaries";
|
|
695
|
+
const _LDCSR = "ListDocumentClassifierSummariesRequest";
|
|
696
|
+
const _LDCSRi = "ListDocumentClassifierSummariesResponse";
|
|
697
|
+
const _LDLDJ = "ListDominantLanguageDetectionJobs";
|
|
698
|
+
const _LDLDJR = "ListDominantLanguageDetectionJobsRequest";
|
|
699
|
+
const _LDLDJRi = "ListDominantLanguageDetectionJobsResponse";
|
|
700
|
+
const _LDR = "ListDatasetsRequest";
|
|
701
|
+
const _LDRi = "ListDatasetsResponse";
|
|
702
|
+
const _LDi = "ListDatasets";
|
|
703
|
+
const _LE = "ListEndpoints";
|
|
704
|
+
const _LEDJ = "ListEntitiesDetectionJobs";
|
|
705
|
+
const _LEDJR = "ListEntitiesDetectionJobsRequest";
|
|
706
|
+
const _LEDJRi = "ListEntitiesDetectionJobsResponse";
|
|
707
|
+
const _LEDJRis = "ListEventsDetectionJobsRequest";
|
|
708
|
+
const _LEDJRist = "ListEventsDetectionJobsResponse";
|
|
709
|
+
const _LEDJi = "ListEventsDetectionJobs";
|
|
710
|
+
const _LER = "ListEndpointsRequest";
|
|
711
|
+
const _LERR = "ListEntityRecognizersRequest";
|
|
712
|
+
const _LERRi = "ListEntityRecognizersResponse";
|
|
713
|
+
const _LERS = "ListEntityRecognizerSummaries";
|
|
714
|
+
const _LERSR = "ListEntityRecognizerSummariesRequest";
|
|
715
|
+
const _LERSRi = "ListEntityRecognizerSummariesResponse";
|
|
716
|
+
const _LERi = "ListEndpointsResponse";
|
|
717
|
+
const _LERis = "ListEntityRecognizers";
|
|
718
|
+
const _LF = "ListFlywheels";
|
|
719
|
+
const _LFI = "LatestFlywheelIteration";
|
|
720
|
+
const _LFIH = "ListFlywheelIterationHistory";
|
|
721
|
+
const _LFIHR = "ListFlywheelIterationHistoryRequest";
|
|
722
|
+
const _LFIHRi = "ListFlywheelIterationHistoryResponse";
|
|
723
|
+
const _LFR = "ListFlywheelsRequest";
|
|
724
|
+
const _LFRi = "ListFlywheelsResponse";
|
|
725
|
+
const _LKPDJ = "ListKeyPhrasesDetectionJobs";
|
|
726
|
+
const _LKPDJR = "ListKeyPhrasesDetectionJobsRequest";
|
|
727
|
+
const _LKPDJRi = "ListKeyPhrasesDetectionJobsResponse";
|
|
728
|
+
const _LMT = "LastModifiedTime";
|
|
729
|
+
const _LOB = "ListOfBlocks";
|
|
730
|
+
const _LOBR = "ListOfBlockReferences";
|
|
731
|
+
const _LOC = "ListOfClasses";
|
|
732
|
+
const _LOCB = "ListOfChildBlocks";
|
|
733
|
+
const _LODDLR = "ListOfDetectDominantLanguageResult";
|
|
734
|
+
const _LODER = "ListOfDetectEntitiesResult";
|
|
735
|
+
const _LODKPR = "ListOfDetectKeyPhrasesResult";
|
|
736
|
+
const _LODL = "ListOfDominantLanguages";
|
|
737
|
+
const _LODSR = "ListOfDetectSentimentResult";
|
|
738
|
+
const _LODSRi = "ListOfDetectSyntaxResult";
|
|
739
|
+
const _LODT = "ListOfDocumentType";
|
|
740
|
+
const _LODTSR = "ListOfDetectTargetedSentimentResult";
|
|
741
|
+
const _LOE = "ListOfEntities";
|
|
742
|
+
const _LOEC = "ListOfExtractedCharacters";
|
|
743
|
+
const _LOEL = "ListOfEntityLabels";
|
|
744
|
+
const _LOEi = "ListOfErrors";
|
|
745
|
+
const _LOKP = "ListOfKeyPhrases";
|
|
746
|
+
const _LOL = "ListOfLabels";
|
|
747
|
+
const _LOM = "ListOfMentions";
|
|
748
|
+
const _LOPE = "ListOfPiiEntities";
|
|
749
|
+
const _LOR = "ListOfRelationships";
|
|
750
|
+
const _LOST = "ListOfSyntaxTokens";
|
|
751
|
+
const _LOTC = "ListOfToxicContent";
|
|
752
|
+
const _LOTL = "ListOfToxicLabels";
|
|
753
|
+
const _LOTS = "ListOfTextSegments";
|
|
754
|
+
const _LOTSE = "ListOfTargetedSentimentEntities";
|
|
755
|
+
const _LOW = "ListOfWarnings";
|
|
756
|
+
const _LPEDJ = "ListPiiEntitiesDetectionJobs";
|
|
757
|
+
const _LPEDJR = "ListPiiEntitiesDetectionJobsRequest";
|
|
758
|
+
const _LPEDJRi = "ListPiiEntitiesDetectionJobsResponse";
|
|
759
|
+
const _LSDJ = "ListSentimentDetectionJobs";
|
|
760
|
+
const _LSDJR = "ListSentimentDetectionJobsRequest";
|
|
761
|
+
const _LSDJRi = "ListSentimentDetectionJobsResponse";
|
|
762
|
+
const _LTDJ = "ListTopicsDetectionJobs";
|
|
763
|
+
const _LTDJR = "ListTopicsDetectionJobsRequest";
|
|
764
|
+
const _LTDJRi = "ListTopicsDetectionJobsResponse";
|
|
765
|
+
const _LTFR = "ListTagsForResource";
|
|
766
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
767
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
768
|
+
const _LTSDJ = "ListTargetedSentimentDetectionJobs";
|
|
769
|
+
const _LTSDJR = "ListTargetedSentimentDetectionJobsRequest";
|
|
770
|
+
const _LTSDJRi = "ListTargetedSentimentDetectionJobsResponse";
|
|
771
|
+
const _LVCA = "LatestVersionCreatedAt";
|
|
772
|
+
const _LVN = "LatestVersionName";
|
|
773
|
+
const _LVS = "LatestVersionStatus";
|
|
774
|
+
const _La = "Labels";
|
|
775
|
+
const _Le = "Left";
|
|
776
|
+
const _M = "Message";
|
|
777
|
+
const _MA = "ModelArn";
|
|
778
|
+
const _MC = "MaskCharacter";
|
|
779
|
+
const _MFS = "MicroF1Score";
|
|
780
|
+
const _MKKI = "ModelKmsKeyId";
|
|
781
|
+
const _MM = "MaskMode";
|
|
782
|
+
const _MN = "ModelName";
|
|
783
|
+
const _MP = "MicroPrecision";
|
|
784
|
+
const _MPo = "ModelPolicy";
|
|
785
|
+
const _MR = "MicroRecall";
|
|
786
|
+
const _MRa = "MaxResults";
|
|
787
|
+
const _MS = "MentionSentiment";
|
|
788
|
+
const _MT = "ModelType";
|
|
789
|
+
const _Me = "Mentions";
|
|
790
|
+
const _Mi = "Mixed";
|
|
791
|
+
const _Mo = "Mode";
|
|
792
|
+
const _N = "Name";
|
|
793
|
+
const _NOD = "NumberOfDocuments";
|
|
794
|
+
const _NOL = "NumberOfLabels";
|
|
795
|
+
const _NOT = "NumberOfTopics";
|
|
796
|
+
const _NOTD = "NumberOfTrainedDocuments";
|
|
797
|
+
const _NOTDu = "NumberOfTestDocuments";
|
|
798
|
+
const _NOTM = "NumberOfTrainMentions";
|
|
799
|
+
const _NOV = "NumberOfVersions";
|
|
800
|
+
const _NT = "NextToken";
|
|
801
|
+
const _Ne = "Negative";
|
|
802
|
+
const _Neu = "Neutral";
|
|
803
|
+
const _ODC = "OutputDataConfig";
|
|
804
|
+
const _P = "Page";
|
|
805
|
+
const _PE = "PiiEntity";
|
|
806
|
+
const _PEDJF = "PiiEntitiesDetectionJobFilter";
|
|
807
|
+
const _PEDJP = "PiiEntitiesDetectionJobProperties";
|
|
808
|
+
const _PEDJPL = "PiiEntitiesDetectionJobPropertiesList";
|
|
809
|
+
const _PET = "PiiEntityTypes";
|
|
810
|
+
const _PODC = "PiiOutputDataConfig";
|
|
811
|
+
const _POS = "PartOfSpeech";
|
|
812
|
+
const _POST = "PartOfSpeechTag";
|
|
813
|
+
const _PRI = "PolicyRevisionId";
|
|
814
|
+
const _PRP = "PutResourcePolicy";
|
|
815
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
816
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
817
|
+
const _Pa = "Pages";
|
|
818
|
+
const _Po = "Polygon";
|
|
819
|
+
const _Poi = "Point";
|
|
820
|
+
const _Pos = "Positive";
|
|
821
|
+
const _Pr = "Precision";
|
|
822
|
+
const _R = "Reason";
|
|
823
|
+
const _RA = "ResourceArn";
|
|
824
|
+
const _RC = "RedactionConfig";
|
|
825
|
+
const _RIUE = "ResourceInUseException";
|
|
826
|
+
const _RL = "ResultList";
|
|
827
|
+
const _RLEE = "ResourceLimitExceededException";
|
|
828
|
+
const _RLI = "RelationshipsListItem";
|
|
829
|
+
const _RM = "RecognizerMetadata";
|
|
830
|
+
const _RN = "RecognizerName";
|
|
831
|
+
const _RNFE = "ResourceNotFoundException";
|
|
832
|
+
const _RP = "ResourcePolicy";
|
|
833
|
+
const _RUE = "ResourceUnavailableException";
|
|
834
|
+
const _Re = "Relationships";
|
|
835
|
+
const _Rec = "Recall";
|
|
836
|
+
const _S = "Split";
|
|
837
|
+
const _SDCJ = "StartDocumentClassificationJob";
|
|
838
|
+
const _SDCJR = "StartDocumentClassificationJobRequest";
|
|
839
|
+
const _SDCJRt = "StartDocumentClassificationJobResponse";
|
|
840
|
+
const _SDJF = "SentimentDetectionJobFilter";
|
|
841
|
+
const _SDJP = "SentimentDetectionJobProperties";
|
|
842
|
+
const _SDJPL = "SentimentDetectionJobPropertiesList";
|
|
843
|
+
const _SDLDJ = "StartDominantLanguageDetectionJob";
|
|
844
|
+
const _SDLDJR = "StartDominantLanguageDetectionJobRequest";
|
|
845
|
+
const _SDLDJRt = "StartDominantLanguageDetectionJobResponse";
|
|
846
|
+
const _SDLDJRto = "StopDominantLanguageDetectionJobRequest";
|
|
847
|
+
const _SDLDJRtop = "StopDominantLanguageDetectionJobResponse";
|
|
848
|
+
const _SDLDJt = "StopDominantLanguageDetectionJob";
|
|
849
|
+
const _SDSU = "SourceDocumentsS3Uri";
|
|
850
|
+
const _SEDJ = "StartEntitiesDetectionJob";
|
|
851
|
+
const _SEDJR = "StartEntitiesDetectionJobRequest";
|
|
852
|
+
const _SEDJRt = "StartEntitiesDetectionJobResponse";
|
|
853
|
+
const _SEDJRta = "StartEventsDetectionJobRequest";
|
|
854
|
+
const _SEDJRtar = "StartEventsDetectionJobResponse";
|
|
855
|
+
const _SEDJRto = "StopEntitiesDetectionJobRequest";
|
|
856
|
+
const _SEDJRtop = "StopEntitiesDetectionJobResponse";
|
|
857
|
+
const _SEDJRtopv = "StopEventsDetectionJobRequest";
|
|
858
|
+
const _SEDJRtopve = "StopEventsDetectionJobResponse";
|
|
859
|
+
const _SEDJt = "StartEventsDetectionJob";
|
|
860
|
+
const _SEDJto = "StopEntitiesDetectionJob";
|
|
861
|
+
const _SEDJtop = "StopEventsDetectionJob";
|
|
862
|
+
const _SFI = "StartFlywheelIteration";
|
|
863
|
+
const _SFIR = "StartFlywheelIterationRequest";
|
|
864
|
+
const _SFIRt = "StartFlywheelIterationResponse";
|
|
865
|
+
const _SGI = "SecurityGroupIds";
|
|
866
|
+
const _SKPDJ = "StartKeyPhrasesDetectionJob";
|
|
867
|
+
const _SKPDJR = "StartKeyPhrasesDetectionJobRequest";
|
|
868
|
+
const _SKPDJRt = "StartKeyPhrasesDetectionJobResponse";
|
|
869
|
+
const _SKPDJRto = "StopKeyPhrasesDetectionJobRequest";
|
|
870
|
+
const _SKPDJRtop = "StopKeyPhrasesDetectionJobResponse";
|
|
871
|
+
const _SKPDJt = "StopKeyPhrasesDetectionJob";
|
|
872
|
+
const _SMA = "SourceModelArn";
|
|
873
|
+
const _SPEDJ = "StartPiiEntitiesDetectionJob";
|
|
874
|
+
const _SPEDJR = "StartPiiEntitiesDetectionJobRequest";
|
|
875
|
+
const _SPEDJRt = "StartPiiEntitiesDetectionJobResponse";
|
|
876
|
+
const _SPEDJRto = "StopPiiEntitiesDetectionJobRequest";
|
|
877
|
+
const _SPEDJRtop = "StopPiiEntitiesDetectionJobResponse";
|
|
878
|
+
const _SPEDJt = "StopPiiEntitiesDetectionJob";
|
|
879
|
+
const _SS = "SentimentScore";
|
|
880
|
+
const _SSDJ = "StartSentimentDetectionJob";
|
|
881
|
+
const _SSDJR = "StartSentimentDetectionJobRequest";
|
|
882
|
+
const _SSDJRt = "StartSentimentDetectionJobResponse";
|
|
883
|
+
const _SSDJRto = "StopSentimentDetectionJobRequest";
|
|
884
|
+
const _SSDJRtop = "StopSentimentDetectionJobResponse";
|
|
885
|
+
const _SSDJt = "StopSentimentDetectionJob";
|
|
886
|
+
const _ST = "SyntaxTokens";
|
|
887
|
+
const _STA = "SubmitTimeAfter";
|
|
888
|
+
const _STB = "SubmitTimeBefore";
|
|
889
|
+
const _STDC = "StopTrainingDocumentClassifier";
|
|
890
|
+
const _STDCR = "StopTrainingDocumentClassifierRequest";
|
|
891
|
+
const _STDCRt = "StopTrainingDocumentClassifierResponse";
|
|
892
|
+
const _STDJ = "StartTopicsDetectionJob";
|
|
893
|
+
const _STDJR = "StartTopicsDetectionJobRequest";
|
|
894
|
+
const _STDJRt = "StartTopicsDetectionJobResponse";
|
|
895
|
+
const _STER = "StopTrainingEntityRecognizer";
|
|
896
|
+
const _STERR = "StopTrainingEntityRecognizerRequest";
|
|
897
|
+
const _STERRt = "StopTrainingEntityRecognizerResponse";
|
|
898
|
+
const _STSDJ = "StartTargetedSentimentDetectionJob";
|
|
899
|
+
const _STSDJR = "StartTargetedSentimentDetectionJobRequest";
|
|
900
|
+
const _STSDJRt = "StartTargetedSentimentDetectionJobResponse";
|
|
901
|
+
const _STSDJRto = "StopTargetedSentimentDetectionJobRequest";
|
|
902
|
+
const _STSDJRtop = "StopTargetedSentimentDetectionJobResponse";
|
|
903
|
+
const _STSDJt = "StopTargetedSentimentDetectionJob";
|
|
904
|
+
const _STu = "SubmitTime";
|
|
905
|
+
const _STy = "SyntaxToken";
|
|
906
|
+
const _SU = "S3Uri";
|
|
907
|
+
const _Sc = "Score";
|
|
908
|
+
const _Se = "Sentiment";
|
|
909
|
+
const _St = "Status";
|
|
910
|
+
const _Su = "Subnets";
|
|
911
|
+
const _T = "Text";
|
|
912
|
+
const _TC = "TaskConfig";
|
|
913
|
+
const _TCo = "ToxicContent";
|
|
914
|
+
const _TDJF = "TopicsDetectionJobFilter";
|
|
915
|
+
const _TDJP = "TopicsDetectionJobProperties";
|
|
916
|
+
const _TDJPL = "TopicsDetectionJobPropertiesList";
|
|
917
|
+
const _TET = "TrainingEndTime";
|
|
918
|
+
const _TETa = "TargetEventTypes";
|
|
919
|
+
const _TI = "TokenId";
|
|
920
|
+
const _TK = "TagKeys";
|
|
921
|
+
const _TL = "TextList";
|
|
922
|
+
const _TLa = "TagList";
|
|
923
|
+
const _TLo = "ToxicLabels";
|
|
924
|
+
const _TMA = "TrainedModelArn";
|
|
925
|
+
const _TMM = "TrainedModelMetrics";
|
|
926
|
+
const _TMRE = "TooManyRequestsException";
|
|
927
|
+
const _TMTE = "TooManyTagsException";
|
|
928
|
+
const _TMTKE = "TooManyTagKeysException";
|
|
929
|
+
const _TR = "TagResource";
|
|
930
|
+
const _TRR = "TagResourceRequest";
|
|
931
|
+
const _TRRa = "TagResourceResponse";
|
|
932
|
+
const _TS = "TextSegments";
|
|
933
|
+
const _TSDJF = "TargetedSentimentDetectionJobFilter";
|
|
934
|
+
const _TSDJP = "TargetedSentimentDetectionJobProperties";
|
|
935
|
+
const _TSDJPL = "TargetedSentimentDetectionJobPropertiesList";
|
|
936
|
+
const _TSE = "TargetedSentimentEntity";
|
|
937
|
+
const _TSLEE = "TextSizeLimitExceededException";
|
|
938
|
+
const _TSM = "TargetedSentimentMention";
|
|
939
|
+
const _TST = "TrainingStartTime";
|
|
940
|
+
const _TSU = "TestS3Uri";
|
|
941
|
+
const _TSe = "TextSegment";
|
|
942
|
+
const _Ta = "Tags";
|
|
943
|
+
const _Tag = "Tag";
|
|
944
|
+
const _To = "Top";
|
|
945
|
+
const _Tox = "Toxicity";
|
|
946
|
+
const _Ty = "Type";
|
|
947
|
+
const _UDSC = "UpdateDataSecurityConfig";
|
|
948
|
+
const _UE = "UpdateEndpoint";
|
|
949
|
+
const _UER = "UpdateEndpointRequest";
|
|
950
|
+
const _UERp = "UpdateEndpointResponse";
|
|
951
|
+
const _UF = "UpdateFlywheel";
|
|
952
|
+
const _UFR = "UpdateFlywheelRequest";
|
|
953
|
+
const _UFRp = "UpdateFlywheelResponse";
|
|
954
|
+
const _ULE = "UnsupportedLanguageException";
|
|
955
|
+
const _UR = "UntagResource";
|
|
956
|
+
const _URR = "UntagResourceRequest";
|
|
957
|
+
const _URRn = "UntagResourceResponse";
|
|
958
|
+
const _V = "Value";
|
|
959
|
+
const _VC = "VpcConfig";
|
|
960
|
+
const _VKKI = "VolumeKmsKeyId";
|
|
961
|
+
const _VN = "VersionName";
|
|
962
|
+
const _W = "Width";
|
|
963
|
+
const _WC = "WarnCode";
|
|
964
|
+
const _WLI = "WarningsListItem";
|
|
965
|
+
const _WM = "WarnMessage";
|
|
966
|
+
const _Wa = "Warnings";
|
|
967
|
+
const _X = "X";
|
|
968
|
+
const _Y = "Y";
|
|
969
|
+
const _c = "client";
|
|
970
|
+
const _e = "error";
|
|
971
|
+
const _hE = "httpError";
|
|
972
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.comprehend";
|
|
973
|
+
const _se = "server";
|
|
974
|
+
const n0 = "com.amazonaws.comprehend";
|
|
975
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
976
|
+
var ComprehendServiceException$ = [-3, _s, "ComprehendServiceException", 0, [], []];
|
|
977
|
+
_s_registry.registerError(ComprehendServiceException$, ComprehendServiceException);
|
|
978
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
979
|
+
var BatchSizeLimitExceededException$ = [-3, n0, _BSLEE,
|
|
980
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
981
|
+
[_M],
|
|
982
|
+
[0]
|
|
983
|
+
];
|
|
984
|
+
n0_registry.registerError(BatchSizeLimitExceededException$, BatchSizeLimitExceededException);
|
|
985
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
986
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
987
|
+
[_M],
|
|
988
|
+
[0]
|
|
989
|
+
];
|
|
990
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
991
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
992
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
993
|
+
[_M],
|
|
994
|
+
[0]
|
|
995
|
+
];
|
|
996
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
997
|
+
var InvalidFilterException$ = [-3, n0, _IFE,
|
|
998
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
999
|
+
[_M],
|
|
1000
|
+
[0]
|
|
1001
|
+
];
|
|
1002
|
+
n0_registry.registerError(InvalidFilterException$, InvalidFilterException);
|
|
1003
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
1004
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1005
|
+
[_M, _R, _D],
|
|
1006
|
+
[0, 0, () => InvalidRequestDetail$]
|
|
1007
|
+
];
|
|
1008
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
1009
|
+
var JobNotFoundException$ = [-3, n0, _JNFE,
|
|
1010
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1011
|
+
[_M],
|
|
1012
|
+
[0]
|
|
1013
|
+
];
|
|
1014
|
+
n0_registry.registerError(JobNotFoundException$, JobNotFoundException);
|
|
1015
|
+
var KmsKeyValidationException$ = [-3, n0, _KKVE,
|
|
1016
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1017
|
+
[_M],
|
|
1018
|
+
[0]
|
|
1019
|
+
];
|
|
1020
|
+
n0_registry.registerError(KmsKeyValidationException$, KmsKeyValidationException);
|
|
1021
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1022
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1023
|
+
[_M],
|
|
1024
|
+
[0]
|
|
1025
|
+
];
|
|
1026
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1027
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
1028
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1029
|
+
[_M],
|
|
1030
|
+
[0]
|
|
1031
|
+
];
|
|
1032
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
1033
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1034
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1035
|
+
[_M],
|
|
1036
|
+
[0]
|
|
1037
|
+
];
|
|
1038
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1039
|
+
var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
1040
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1041
|
+
[_M],
|
|
1042
|
+
[0]
|
|
1043
|
+
];
|
|
1044
|
+
n0_registry.registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
1045
|
+
var TextSizeLimitExceededException$ = [-3, n0, _TSLEE,
|
|
1046
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1047
|
+
[_M],
|
|
1048
|
+
[0]
|
|
1049
|
+
];
|
|
1050
|
+
n0_registry.registerError(TextSizeLimitExceededException$, TextSizeLimitExceededException);
|
|
1051
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1052
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
1053
|
+
[_M],
|
|
1054
|
+
[0]
|
|
1055
|
+
];
|
|
1056
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1057
|
+
var TooManyTagKeysException$ = [-3, n0, _TMTKE,
|
|
1058
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1059
|
+
[_M],
|
|
1060
|
+
[0]
|
|
1061
|
+
];
|
|
1062
|
+
n0_registry.registerError(TooManyTagKeysException$, TooManyTagKeysException);
|
|
1063
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1064
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1065
|
+
[_M],
|
|
1066
|
+
[0]
|
|
1067
|
+
];
|
|
1068
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
1069
|
+
var UnsupportedLanguageException$ = [-3, n0, _ULE,
|
|
1070
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1071
|
+
[_M],
|
|
1072
|
+
[0]
|
|
1073
|
+
];
|
|
1074
|
+
n0_registry.registerError(UnsupportedLanguageException$, UnsupportedLanguageException);
|
|
1075
|
+
const errorTypeRegistries = [
|
|
1076
|
+
_s_registry,
|
|
1077
|
+
n0_registry,
|
|
1078
|
+
];
|
|
1079
|
+
var CustomerInputString = [0, n0, _CIS, 8, 0];
|
|
1080
|
+
var AugmentedManifestsListItem$ = [3, n0, _AMLI,
|
|
1081
|
+
0,
|
|
1082
|
+
[_SU, _AN, _S, _ADSU, _SDSU, _DT],
|
|
1083
|
+
[0, 64 | 0, 0, 0, 0, 0], 2
|
|
1084
|
+
];
|
|
1085
|
+
var BatchDetectDominantLanguageItemResult$ = [3, n0, _BDDLIR,
|
|
1086
|
+
0,
|
|
1087
|
+
[_I, _L],
|
|
1088
|
+
[1, () => ListOfDominantLanguages]
|
|
1089
|
+
];
|
|
1090
|
+
var BatchDetectDominantLanguageRequest$ = [3, n0, _BDDLR,
|
|
1091
|
+
0,
|
|
1092
|
+
[_TL],
|
|
1093
|
+
[[() => CustomerInputStringList, 0]], 1
|
|
1094
|
+
];
|
|
1095
|
+
var BatchDetectDominantLanguageResponse$ = [3, n0, _BDDLRa,
|
|
1096
|
+
8,
|
|
1097
|
+
[_RL, _EL],
|
|
1098
|
+
[() => ListOfDetectDominantLanguageResult, () => BatchItemErrorList], 2
|
|
1099
|
+
];
|
|
1100
|
+
var BatchDetectEntitiesItemResult$ = [3, n0, _BDEIR,
|
|
1101
|
+
0,
|
|
1102
|
+
[_I, _E],
|
|
1103
|
+
[1, () => ListOfEntities]
|
|
1104
|
+
];
|
|
1105
|
+
var BatchDetectEntitiesRequest$ = [3, n0, _BDER,
|
|
1106
|
+
0,
|
|
1107
|
+
[_TL, _LC],
|
|
1108
|
+
[[() => CustomerInputStringList, 0], 0], 2
|
|
1109
|
+
];
|
|
1110
|
+
var BatchDetectEntitiesResponse$ = [3, n0, _BDERa,
|
|
1111
|
+
8,
|
|
1112
|
+
[_RL, _EL],
|
|
1113
|
+
[() => ListOfDetectEntitiesResult, () => BatchItemErrorList], 2
|
|
1114
|
+
];
|
|
1115
|
+
var BatchDetectKeyPhrasesItemResult$ = [3, n0, _BDKPIR,
|
|
1116
|
+
0,
|
|
1117
|
+
[_I, _KP],
|
|
1118
|
+
[1, () => ListOfKeyPhrases]
|
|
1119
|
+
];
|
|
1120
|
+
var BatchDetectKeyPhrasesRequest$ = [3, n0, _BDKPR,
|
|
1121
|
+
0,
|
|
1122
|
+
[_TL, _LC],
|
|
1123
|
+
[[() => CustomerInputStringList, 0], 0], 2
|
|
1124
|
+
];
|
|
1125
|
+
var BatchDetectKeyPhrasesResponse$ = [3, n0, _BDKPRa,
|
|
1126
|
+
8,
|
|
1127
|
+
[_RL, _EL],
|
|
1128
|
+
[() => ListOfDetectKeyPhrasesResult, () => BatchItemErrorList], 2
|
|
1129
|
+
];
|
|
1130
|
+
var BatchDetectSentimentItemResult$ = [3, n0, _BDSIR,
|
|
1131
|
+
0,
|
|
1132
|
+
[_I, _Se, _SS],
|
|
1133
|
+
[1, 0, () => SentimentScore$]
|
|
1134
|
+
];
|
|
1135
|
+
var BatchDetectSentimentRequest$ = [3, n0, _BDSR,
|
|
1136
|
+
0,
|
|
1137
|
+
[_TL, _LC],
|
|
1138
|
+
[[() => CustomerInputStringList, 0], 0], 2
|
|
1139
|
+
];
|
|
1140
|
+
var BatchDetectSentimentResponse$ = [3, n0, _BDSRa,
|
|
1141
|
+
8,
|
|
1142
|
+
[_RL, _EL],
|
|
1143
|
+
[() => ListOfDetectSentimentResult, () => BatchItemErrorList], 2
|
|
1144
|
+
];
|
|
1145
|
+
var BatchDetectSyntaxItemResult$ = [3, n0, _BDSIRa,
|
|
1146
|
+
0,
|
|
1147
|
+
[_I, _ST],
|
|
1148
|
+
[1, () => ListOfSyntaxTokens]
|
|
1149
|
+
];
|
|
1150
|
+
var BatchDetectSyntaxRequest$ = [3, n0, _BDSRat,
|
|
1151
|
+
0,
|
|
1152
|
+
[_TL, _LC],
|
|
1153
|
+
[[() => CustomerInputStringList, 0], 0], 2
|
|
1154
|
+
];
|
|
1155
|
+
var BatchDetectSyntaxResponse$ = [3, n0, _BDSRatc,
|
|
1156
|
+
8,
|
|
1157
|
+
[_RL, _EL],
|
|
1158
|
+
[() => ListOfDetectSyntaxResult, () => BatchItemErrorList], 2
|
|
1159
|
+
];
|
|
1160
|
+
var BatchDetectTargetedSentimentItemResult$ = [3, n0, _BDTSIR,
|
|
1161
|
+
0,
|
|
1162
|
+
[_I, _E],
|
|
1163
|
+
[1, () => ListOfTargetedSentimentEntities]
|
|
1164
|
+
];
|
|
1165
|
+
var BatchDetectTargetedSentimentRequest$ = [3, n0, _BDTSR,
|
|
1166
|
+
0,
|
|
1167
|
+
[_TL, _LC],
|
|
1168
|
+
[[() => CustomerInputStringList, 0], 0], 2
|
|
1169
|
+
];
|
|
1170
|
+
var BatchDetectTargetedSentimentResponse$ = [3, n0, _BDTSRa,
|
|
1171
|
+
8,
|
|
1172
|
+
[_RL, _EL],
|
|
1173
|
+
[() => ListOfDetectTargetedSentimentResult, () => BatchItemErrorList], 2
|
|
1174
|
+
];
|
|
1175
|
+
var BatchItemError$ = [3, n0, _BIE,
|
|
1176
|
+
0,
|
|
1177
|
+
[_I, _EC, _EM],
|
|
1178
|
+
[1, 0, 0]
|
|
1179
|
+
];
|
|
1180
|
+
var Block$ = [3, n0, _B,
|
|
1181
|
+
0,
|
|
1182
|
+
[_Id, _BT, _T, _P, _G, _Re],
|
|
1183
|
+
[0, 0, 0, 1, () => Geometry$, () => ListOfRelationships]
|
|
1184
|
+
];
|
|
1185
|
+
var BlockReference$ = [3, n0, _BR,
|
|
1186
|
+
0,
|
|
1187
|
+
[_BI, _BO, _EO, _CB],
|
|
1188
|
+
[0, 1, 1, () => ListOfChildBlocks]
|
|
1189
|
+
];
|
|
1190
|
+
var BoundingBox$ = [3, n0, _BB,
|
|
1191
|
+
0,
|
|
1192
|
+
[_H, _Le, _To, _W],
|
|
1193
|
+
[1, 1, 1, 1]
|
|
1194
|
+
];
|
|
1195
|
+
var ChildBlock$ = [3, n0, _CBh,
|
|
1196
|
+
0,
|
|
1197
|
+
[_CBI, _BO, _EO],
|
|
1198
|
+
[0, 1, 1]
|
|
1199
|
+
];
|
|
1200
|
+
var ClassifierEvaluationMetrics$ = [3, n0, _CEM,
|
|
1201
|
+
0,
|
|
1202
|
+
[_A, _Pr, _Rec, _FS, _MP, _MR, _MFS, _HL],
|
|
1203
|
+
[1, 1, 1, 1, 1, 1, 1, 1]
|
|
1204
|
+
];
|
|
1205
|
+
var ClassifierMetadata$ = [3, n0, _CM,
|
|
1206
|
+
8,
|
|
1207
|
+
[_NOL, _NOTD, _NOTDu, _EMv],
|
|
1208
|
+
[1, 1, 1, () => ClassifierEvaluationMetrics$]
|
|
1209
|
+
];
|
|
1210
|
+
var ClassifyDocumentRequest$ = [3, n0, _CDR,
|
|
1211
|
+
0,
|
|
1212
|
+
[_EA, _T, _By, _DRC],
|
|
1213
|
+
[0, [() => CustomerInputString, 0], 21, () => DocumentReaderConfig$], 1
|
|
1214
|
+
];
|
|
1215
|
+
var ClassifyDocumentResponse$ = [3, n0, _CDRl,
|
|
1216
|
+
8,
|
|
1217
|
+
[_C, _La, _DM, _DT, _Er, _Wa],
|
|
1218
|
+
[() => ListOfClasses, () => ListOfLabels, () => DocumentMetadata$, () => ListOfDocumentType, () => ListOfErrors, () => ListOfWarnings]
|
|
1219
|
+
];
|
|
1220
|
+
var ContainsPiiEntitiesRequest$ = [3, n0, _CPER,
|
|
1221
|
+
0,
|
|
1222
|
+
[_T, _LC],
|
|
1223
|
+
[0, 0], 2
|
|
1224
|
+
];
|
|
1225
|
+
var ContainsPiiEntitiesResponse$ = [3, n0, _CPERo,
|
|
1226
|
+
0,
|
|
1227
|
+
[_La],
|
|
1228
|
+
[() => ListOfEntityLabels]
|
|
1229
|
+
];
|
|
1230
|
+
var CreateDatasetRequest$ = [3, n0, _CDRr,
|
|
1231
|
+
0,
|
|
1232
|
+
[_FA, _DN, _IDC, _DTa, _De, _CRT, _Ta],
|
|
1233
|
+
[0, 0, () => DatasetInputDataConfig$, 0, 0, [0, 4], () => TagList], 3
|
|
1234
|
+
];
|
|
1235
|
+
var CreateDatasetResponse$ = [3, n0, _CDRre,
|
|
1236
|
+
0,
|
|
1237
|
+
[_DA],
|
|
1238
|
+
[0]
|
|
1239
|
+
];
|
|
1240
|
+
var CreateDocumentClassifierRequest$ = [3, n0, _CDCR,
|
|
1241
|
+
0,
|
|
1242
|
+
[_DCN, _DARA, _IDC, _LC, _VN, _Ta, _ODC, _CRT, _VKKI, _VC, _Mo, _MKKI, _MPo],
|
|
1243
|
+
[0, 0, () => DocumentClassifierInputDataConfig$, 0, 0, () => TagList, () => DocumentClassifierOutputDataConfig$, [0, 4], 0, () => VpcConfig$, 0, 0, 0], 4
|
|
1244
|
+
];
|
|
1245
|
+
var CreateDocumentClassifierResponse$ = [3, n0, _CDCRr,
|
|
1246
|
+
0,
|
|
1247
|
+
[_DCA],
|
|
1248
|
+
[0]
|
|
1249
|
+
];
|
|
1250
|
+
var CreateEndpointRequest$ = [3, n0, _CER,
|
|
1251
|
+
0,
|
|
1252
|
+
[_EN, _DIU, _MA, _CRT, _Ta, _DARA, _FA],
|
|
1253
|
+
[0, 1, 0, [0, 4], () => TagList, 0, 0], 2
|
|
1254
|
+
];
|
|
1255
|
+
var CreateEndpointResponse$ = [3, n0, _CERr,
|
|
1256
|
+
0,
|
|
1257
|
+
[_EA, _MA],
|
|
1258
|
+
[0, 0]
|
|
1259
|
+
];
|
|
1260
|
+
var CreateEntityRecognizerRequest$ = [3, n0, _CERR,
|
|
1261
|
+
0,
|
|
1262
|
+
[_RN, _DARA, _IDC, _LC, _VN, _Ta, _CRT, _VKKI, _VC, _MKKI, _MPo],
|
|
1263
|
+
[0, 0, () => EntityRecognizerInputDataConfig$, 0, 0, () => TagList, [0, 4], 0, () => VpcConfig$, 0, 0], 4
|
|
1264
|
+
];
|
|
1265
|
+
var CreateEntityRecognizerResponse$ = [3, n0, _CERRr,
|
|
1266
|
+
0,
|
|
1267
|
+
[_ERA],
|
|
1268
|
+
[0]
|
|
1269
|
+
];
|
|
1270
|
+
var CreateFlywheelRequest$ = [3, n0, _CFR,
|
|
1271
|
+
0,
|
|
1272
|
+
[_FN, _DARA, _DLSU, _AMA, _TC, _MT, _DSC, _CRT, _Ta],
|
|
1273
|
+
[0, 0, 0, 0, () => TaskConfig$, 0, () => DataSecurityConfig$, [0, 4], () => TagList], 3
|
|
1274
|
+
];
|
|
1275
|
+
var CreateFlywheelResponse$ = [3, n0, _CFRr,
|
|
1276
|
+
0,
|
|
1277
|
+
[_FA, _AMA],
|
|
1278
|
+
[0, 0]
|
|
1279
|
+
];
|
|
1280
|
+
var DataSecurityConfig$ = [3, n0, _DSC,
|
|
1281
|
+
0,
|
|
1282
|
+
[_MKKI, _VKKI, _DLKKI, _VC],
|
|
1283
|
+
[0, 0, 0, () => VpcConfig$]
|
|
1284
|
+
];
|
|
1285
|
+
var DatasetAugmentedManifestsListItem$ = [3, n0, _DAMLI,
|
|
1286
|
+
0,
|
|
1287
|
+
[_AN, _SU, _ADSU, _SDSU, _DT],
|
|
1288
|
+
[64 | 0, 0, 0, 0, 0], 2
|
|
1289
|
+
];
|
|
1290
|
+
var DatasetDocumentClassifierInputDataConfig$ = [3, n0, _DDCIDC,
|
|
1291
|
+
0,
|
|
1292
|
+
[_SU, _LD],
|
|
1293
|
+
[0, 0], 1
|
|
1294
|
+
];
|
|
1295
|
+
var DatasetEntityRecognizerAnnotations$ = [3, n0, _DERA,
|
|
1296
|
+
0,
|
|
1297
|
+
[_SU],
|
|
1298
|
+
[0], 1
|
|
1299
|
+
];
|
|
1300
|
+
var DatasetEntityRecognizerDocuments$ = [3, n0, _DERD,
|
|
1301
|
+
0,
|
|
1302
|
+
[_SU, _IF],
|
|
1303
|
+
[0, 0], 1
|
|
1304
|
+
];
|
|
1305
|
+
var DatasetEntityRecognizerEntityList$ = [3, n0, _DEREL,
|
|
1306
|
+
0,
|
|
1307
|
+
[_SU],
|
|
1308
|
+
[0], 1
|
|
1309
|
+
];
|
|
1310
|
+
var DatasetEntityRecognizerInputDataConfig$ = [3, n0, _DERIDC,
|
|
1311
|
+
0,
|
|
1312
|
+
[_Do, _An, _ELn],
|
|
1313
|
+
[() => DatasetEntityRecognizerDocuments$, () => DatasetEntityRecognizerAnnotations$, () => DatasetEntityRecognizerEntityList$], 1
|
|
1314
|
+
];
|
|
1315
|
+
var DatasetFilter$ = [3, n0, _DF,
|
|
1316
|
+
0,
|
|
1317
|
+
[_St, _DTa, _CTA, _CTB],
|
|
1318
|
+
[0, 0, 4, 4]
|
|
1319
|
+
];
|
|
1320
|
+
var DatasetInputDataConfig$ = [3, n0, _DIDC,
|
|
1321
|
+
0,
|
|
1322
|
+
[_AM, _DFa, _DCIDC, _ERIDC],
|
|
1323
|
+
[() => DatasetAugmentedManifestsList, 0, () => DatasetDocumentClassifierInputDataConfig$, () => DatasetEntityRecognizerInputDataConfig$]
|
|
1324
|
+
];
|
|
1325
|
+
var DatasetProperties$ = [3, n0, _DP,
|
|
1326
|
+
0,
|
|
1327
|
+
[_DA, _DN, _DTa, _DSU, _De, _St, _M, _NOD, _CT, _ET],
|
|
1328
|
+
[0, 0, 0, 0, 0, 0, 0, 1, 4, 4]
|
|
1329
|
+
];
|
|
1330
|
+
var DeleteDocumentClassifierRequest$ = [3, n0, _DDCR,
|
|
1331
|
+
0,
|
|
1332
|
+
[_DCA],
|
|
1333
|
+
[0], 1
|
|
1334
|
+
];
|
|
1335
|
+
var DeleteDocumentClassifierResponse$ = [3, n0, _DDCRe,
|
|
1336
|
+
0,
|
|
1337
|
+
[],
|
|
1338
|
+
[]
|
|
1339
|
+
];
|
|
1340
|
+
var DeleteEndpointRequest$ = [3, n0, _DER,
|
|
1341
|
+
0,
|
|
1342
|
+
[_EA],
|
|
1343
|
+
[0], 1
|
|
1344
|
+
];
|
|
1345
|
+
var DeleteEndpointResponse$ = [3, n0, _DERe,
|
|
1346
|
+
0,
|
|
1347
|
+
[],
|
|
1348
|
+
[]
|
|
1349
|
+
];
|
|
1350
|
+
var DeleteEntityRecognizerRequest$ = [3, n0, _DERR,
|
|
1351
|
+
0,
|
|
1352
|
+
[_ERA],
|
|
1353
|
+
[0], 1
|
|
1354
|
+
];
|
|
1355
|
+
var DeleteEntityRecognizerResponse$ = [3, n0, _DERRe,
|
|
1356
|
+
0,
|
|
1357
|
+
[],
|
|
1358
|
+
[]
|
|
1359
|
+
];
|
|
1360
|
+
var DeleteFlywheelRequest$ = [3, n0, _DFR,
|
|
1361
|
+
0,
|
|
1362
|
+
[_FA],
|
|
1363
|
+
[0], 1
|
|
1364
|
+
];
|
|
1365
|
+
var DeleteFlywheelResponse$ = [3, n0, _DFRe,
|
|
1366
|
+
0,
|
|
1367
|
+
[],
|
|
1368
|
+
[]
|
|
1369
|
+
];
|
|
1370
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
1371
|
+
0,
|
|
1372
|
+
[_RA, _PRI],
|
|
1373
|
+
[0, 0], 1
|
|
1374
|
+
];
|
|
1375
|
+
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
1376
|
+
0,
|
|
1377
|
+
[],
|
|
1378
|
+
[]
|
|
1379
|
+
];
|
|
1380
|
+
var DescribeDatasetRequest$ = [3, n0, _DDR,
|
|
1381
|
+
0,
|
|
1382
|
+
[_DA],
|
|
1383
|
+
[0], 1
|
|
1384
|
+
];
|
|
1385
|
+
var DescribeDatasetResponse$ = [3, n0, _DDRe,
|
|
1386
|
+
0,
|
|
1387
|
+
[_DP],
|
|
1388
|
+
[() => DatasetProperties$]
|
|
1389
|
+
];
|
|
1390
|
+
var DescribeDocumentClassificationJobRequest$ = [3, n0, _DDCJR,
|
|
1391
|
+
0,
|
|
1392
|
+
[_JI],
|
|
1393
|
+
[0], 1
|
|
1394
|
+
];
|
|
1395
|
+
var DescribeDocumentClassificationJobResponse$ = [3, n0, _DDCJRe,
|
|
1396
|
+
0,
|
|
1397
|
+
[_DCJP],
|
|
1398
|
+
[() => DocumentClassificationJobProperties$]
|
|
1399
|
+
];
|
|
1400
|
+
var DescribeDocumentClassifierRequest$ = [3, n0, _DDCRes,
|
|
1401
|
+
0,
|
|
1402
|
+
[_DCA],
|
|
1403
|
+
[0], 1
|
|
1404
|
+
];
|
|
1405
|
+
var DescribeDocumentClassifierResponse$ = [3, n0, _DDCResc,
|
|
1406
|
+
0,
|
|
1407
|
+
[_DCP],
|
|
1408
|
+
[[() => DocumentClassifierProperties$, 0]]
|
|
1409
|
+
];
|
|
1410
|
+
var DescribeDominantLanguageDetectionJobRequest$ = [3, n0, _DDLDJR,
|
|
1411
|
+
0,
|
|
1412
|
+
[_JI],
|
|
1413
|
+
[0], 1
|
|
1414
|
+
];
|
|
1415
|
+
var DescribeDominantLanguageDetectionJobResponse$ = [3, n0, _DDLDJRe,
|
|
1416
|
+
0,
|
|
1417
|
+
[_DLDJP],
|
|
1418
|
+
[() => DominantLanguageDetectionJobProperties$]
|
|
1419
|
+
];
|
|
1420
|
+
var DescribeEndpointRequest$ = [3, n0, _DERes,
|
|
1421
|
+
0,
|
|
1422
|
+
[_EA],
|
|
1423
|
+
[0], 1
|
|
1424
|
+
];
|
|
1425
|
+
var DescribeEndpointResponse$ = [3, n0, _DEResc,
|
|
1426
|
+
0,
|
|
1427
|
+
[_EP],
|
|
1428
|
+
[() => EndpointProperties$]
|
|
1429
|
+
];
|
|
1430
|
+
var DescribeEntitiesDetectionJobRequest$ = [3, n0, _DEDJR,
|
|
1431
|
+
0,
|
|
1432
|
+
[_JI],
|
|
1433
|
+
[0], 1
|
|
1434
|
+
];
|
|
1435
|
+
var DescribeEntitiesDetectionJobResponse$ = [3, n0, _DEDJRe,
|
|
1436
|
+
0,
|
|
1437
|
+
[_EDJP],
|
|
1438
|
+
[() => EntitiesDetectionJobProperties$]
|
|
1439
|
+
];
|
|
1440
|
+
var DescribeEntityRecognizerRequest$ = [3, n0, _DERRes,
|
|
1441
|
+
0,
|
|
1442
|
+
[_ERA],
|
|
1443
|
+
[0], 1
|
|
1444
|
+
];
|
|
1445
|
+
var DescribeEntityRecognizerResponse$ = [3, n0, _DERResc,
|
|
1446
|
+
0,
|
|
1447
|
+
[_ERP],
|
|
1448
|
+
[[() => EntityRecognizerProperties$, 0]]
|
|
1449
|
+
];
|
|
1450
|
+
var DescribeEventsDetectionJobRequest$ = [3, n0, _DEDJRes,
|
|
1451
|
+
0,
|
|
1452
|
+
[_JI],
|
|
1453
|
+
[0], 1
|
|
1454
|
+
];
|
|
1455
|
+
var DescribeEventsDetectionJobResponse$ = [3, n0, _DEDJResc,
|
|
1456
|
+
0,
|
|
1457
|
+
[_EDJPv],
|
|
1458
|
+
[() => EventsDetectionJobProperties$]
|
|
1459
|
+
];
|
|
1460
|
+
var DescribeFlywheelIterationRequest$ = [3, n0, _DFIR,
|
|
1461
|
+
0,
|
|
1462
|
+
[_FA, _FII],
|
|
1463
|
+
[0, 0], 2
|
|
1464
|
+
];
|
|
1465
|
+
var DescribeFlywheelIterationResponse$ = [3, n0, _DFIRe,
|
|
1466
|
+
0,
|
|
1467
|
+
[_FIP],
|
|
1468
|
+
[() => FlywheelIterationProperties$]
|
|
1469
|
+
];
|
|
1470
|
+
var DescribeFlywheelRequest$ = [3, n0, _DFRes,
|
|
1471
|
+
0,
|
|
1472
|
+
[_FA],
|
|
1473
|
+
[0], 1
|
|
1474
|
+
];
|
|
1475
|
+
var DescribeFlywheelResponse$ = [3, n0, _DFResc,
|
|
1476
|
+
0,
|
|
1477
|
+
[_FP],
|
|
1478
|
+
[() => FlywheelProperties$]
|
|
1479
|
+
];
|
|
1480
|
+
var DescribeKeyPhrasesDetectionJobRequest$ = [3, n0, _DKPDJR,
|
|
1481
|
+
0,
|
|
1482
|
+
[_JI],
|
|
1483
|
+
[0], 1
|
|
1484
|
+
];
|
|
1485
|
+
var DescribeKeyPhrasesDetectionJobResponse$ = [3, n0, _DKPDJRe,
|
|
1486
|
+
0,
|
|
1487
|
+
[_KPDJP],
|
|
1488
|
+
[() => KeyPhrasesDetectionJobProperties$]
|
|
1489
|
+
];
|
|
1490
|
+
var DescribePiiEntitiesDetectionJobRequest$ = [3, n0, _DPEDJR,
|
|
1491
|
+
0,
|
|
1492
|
+
[_JI],
|
|
1493
|
+
[0], 1
|
|
1494
|
+
];
|
|
1495
|
+
var DescribePiiEntitiesDetectionJobResponse$ = [3, n0, _DPEDJRe,
|
|
1496
|
+
0,
|
|
1497
|
+
[_PEDJP],
|
|
1498
|
+
[() => PiiEntitiesDetectionJobProperties$]
|
|
1499
|
+
];
|
|
1500
|
+
var DescribeResourcePolicyRequest$ = [3, n0, _DRPRes,
|
|
1501
|
+
0,
|
|
1502
|
+
[_RA],
|
|
1503
|
+
[0], 1
|
|
1504
|
+
];
|
|
1505
|
+
var DescribeResourcePolicyResponse$ = [3, n0, _DRPResc,
|
|
1506
|
+
0,
|
|
1507
|
+
[_RP, _CT, _LMT, _PRI],
|
|
1508
|
+
[0, 4, 4, 0]
|
|
1509
|
+
];
|
|
1510
|
+
var DescribeSentimentDetectionJobRequest$ = [3, n0, _DSDJR,
|
|
1511
|
+
0,
|
|
1512
|
+
[_JI],
|
|
1513
|
+
[0], 1
|
|
1514
|
+
];
|
|
1515
|
+
var DescribeSentimentDetectionJobResponse$ = [3, n0, _DSDJRe,
|
|
1516
|
+
0,
|
|
1517
|
+
[_SDJP],
|
|
1518
|
+
[() => SentimentDetectionJobProperties$]
|
|
1519
|
+
];
|
|
1520
|
+
var DescribeTargetedSentimentDetectionJobRequest$ = [3, n0, _DTSDJR,
|
|
1521
|
+
0,
|
|
1522
|
+
[_JI],
|
|
1523
|
+
[0], 1
|
|
1524
|
+
];
|
|
1525
|
+
var DescribeTargetedSentimentDetectionJobResponse$ = [3, n0, _DTSDJRe,
|
|
1526
|
+
0,
|
|
1527
|
+
[_TSDJP],
|
|
1528
|
+
[() => TargetedSentimentDetectionJobProperties$]
|
|
1529
|
+
];
|
|
1530
|
+
var DescribeTopicsDetectionJobRequest$ = [3, n0, _DTDJR,
|
|
1531
|
+
0,
|
|
1532
|
+
[_JI],
|
|
1533
|
+
[0], 1
|
|
1534
|
+
];
|
|
1535
|
+
var DescribeTopicsDetectionJobResponse$ = [3, n0, _DTDJRe,
|
|
1536
|
+
0,
|
|
1537
|
+
[_TDJP],
|
|
1538
|
+
[() => TopicsDetectionJobProperties$]
|
|
1539
|
+
];
|
|
1540
|
+
var DetectDominantLanguageRequest$ = [3, n0, _DDLR,
|
|
1541
|
+
0,
|
|
1542
|
+
[_T],
|
|
1543
|
+
[[() => CustomerInputString, 0]], 1
|
|
1544
|
+
];
|
|
1545
|
+
var DetectDominantLanguageResponse$ = [3, n0, _DDLRe,
|
|
1546
|
+
8,
|
|
1547
|
+
[_L],
|
|
1548
|
+
[() => ListOfDominantLanguages]
|
|
1549
|
+
];
|
|
1550
|
+
var DetectEntitiesRequest$ = [3, n0, _DERet,
|
|
1551
|
+
0,
|
|
1552
|
+
[_T, _LC, _EA, _By, _DRC],
|
|
1553
|
+
[[() => CustomerInputString, 0], 0, 0, 21, () => DocumentReaderConfig$]
|
|
1554
|
+
];
|
|
1555
|
+
var DetectEntitiesResponse$ = [3, n0, _DERete,
|
|
1556
|
+
8,
|
|
1557
|
+
[_E, _DM, _DT, _Bl, _Er],
|
|
1558
|
+
[() => ListOfEntities, () => DocumentMetadata$, () => ListOfDocumentType, () => ListOfBlocks, () => ListOfErrors]
|
|
1559
|
+
];
|
|
1560
|
+
var DetectKeyPhrasesRequest$ = [3, n0, _DKPR,
|
|
1561
|
+
0,
|
|
1562
|
+
[_T, _LC],
|
|
1563
|
+
[[() => CustomerInputString, 0], 0], 2
|
|
1564
|
+
];
|
|
1565
|
+
var DetectKeyPhrasesResponse$ = [3, n0, _DKPRe,
|
|
1566
|
+
8,
|
|
1567
|
+
[_KP],
|
|
1568
|
+
[() => ListOfKeyPhrases]
|
|
1569
|
+
];
|
|
1570
|
+
var DetectPiiEntitiesRequest$ = [3, n0, _DPER,
|
|
1571
|
+
0,
|
|
1572
|
+
[_T, _LC],
|
|
1573
|
+
[0, 0], 2
|
|
1574
|
+
];
|
|
1575
|
+
var DetectPiiEntitiesResponse$ = [3, n0, _DPERe,
|
|
1576
|
+
0,
|
|
1577
|
+
[_E],
|
|
1578
|
+
[() => ListOfPiiEntities]
|
|
1579
|
+
];
|
|
1580
|
+
var DetectSentimentRequest$ = [3, n0, _DSR,
|
|
1581
|
+
0,
|
|
1582
|
+
[_T, _LC],
|
|
1583
|
+
[[() => CustomerInputString, 0], 0], 2
|
|
1584
|
+
];
|
|
1585
|
+
var DetectSentimentResponse$ = [3, n0, _DSRe,
|
|
1586
|
+
8,
|
|
1587
|
+
[_Se, _SS],
|
|
1588
|
+
[0, () => SentimentScore$]
|
|
1589
|
+
];
|
|
1590
|
+
var DetectSyntaxRequest$ = [3, n0, _DSRet,
|
|
1591
|
+
0,
|
|
1592
|
+
[_T, _LC],
|
|
1593
|
+
[[() => CustomerInputString, 0], 0], 2
|
|
1594
|
+
];
|
|
1595
|
+
var DetectSyntaxResponse$ = [3, n0, _DSRete,
|
|
1596
|
+
8,
|
|
1597
|
+
[_ST],
|
|
1598
|
+
[() => ListOfSyntaxTokens]
|
|
1599
|
+
];
|
|
1600
|
+
var DetectTargetedSentimentRequest$ = [3, n0, _DTSR,
|
|
1601
|
+
0,
|
|
1602
|
+
[_T, _LC],
|
|
1603
|
+
[[() => CustomerInputString, 0], 0], 2
|
|
1604
|
+
];
|
|
1605
|
+
var DetectTargetedSentimentResponse$ = [3, n0, _DTSRe,
|
|
1606
|
+
8,
|
|
1607
|
+
[_E],
|
|
1608
|
+
[() => ListOfTargetedSentimentEntities]
|
|
1609
|
+
];
|
|
1610
|
+
var DetectToxicContentRequest$ = [3, n0, _DTCR,
|
|
1611
|
+
0,
|
|
1612
|
+
[_TS, _LC],
|
|
1613
|
+
[[() => ListOfTextSegments, 0], 0], 2
|
|
1614
|
+
];
|
|
1615
|
+
var DetectToxicContentResponse$ = [3, n0, _DTCRe,
|
|
1616
|
+
0,
|
|
1617
|
+
[_RL],
|
|
1618
|
+
[() => ListOfToxicLabels]
|
|
1619
|
+
];
|
|
1620
|
+
var DocumentClass$ = [3, n0, _DC,
|
|
1621
|
+
0,
|
|
1622
|
+
[_N, _Sc, _P],
|
|
1623
|
+
[0, 1, 1]
|
|
1624
|
+
];
|
|
1625
|
+
var DocumentClassificationConfig$ = [3, n0, _DCC,
|
|
1626
|
+
0,
|
|
1627
|
+
[_Mo, _La],
|
|
1628
|
+
[0, 64 | 0], 1
|
|
1629
|
+
];
|
|
1630
|
+
var DocumentClassificationJobFilter$ = [3, n0, _DCJF,
|
|
1631
|
+
0,
|
|
1632
|
+
[_JN, _JS, _STB, _STA],
|
|
1633
|
+
[0, 0, 4, 4]
|
|
1634
|
+
];
|
|
1635
|
+
var DocumentClassificationJobProperties$ = [3, n0, _DCJP,
|
|
1636
|
+
0,
|
|
1637
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _DCA, _IDC, _ODC, _DARA, _VKKI, _VC, _FA],
|
|
1638
|
+
[0, 0, 0, 0, 0, 4, 4, 0, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, () => VpcConfig$, 0]
|
|
1639
|
+
];
|
|
1640
|
+
var DocumentClassifierDocuments$ = [3, n0, _DCD,
|
|
1641
|
+
0,
|
|
1642
|
+
[_SU, _TSU],
|
|
1643
|
+
[0, 0], 1
|
|
1644
|
+
];
|
|
1645
|
+
var DocumentClassifierFilter$ = [3, n0, _DCF,
|
|
1646
|
+
0,
|
|
1647
|
+
[_St, _DCN, _STB, _STA],
|
|
1648
|
+
[0, 0, 4, 4]
|
|
1649
|
+
];
|
|
1650
|
+
var DocumentClassifierInputDataConfig$ = [3, n0, _DCIDC,
|
|
1651
|
+
0,
|
|
1652
|
+
[_DFa, _SU, _TSU, _LD, _AM, _DT, _Do, _DRC],
|
|
1653
|
+
[0, 0, 0, 0, () => DocumentClassifierAugmentedManifestsList, 0, () => DocumentClassifierDocuments$, () => DocumentReaderConfig$]
|
|
1654
|
+
];
|
|
1655
|
+
var DocumentClassifierOutputDataConfig$ = [3, n0, _DCODC,
|
|
1656
|
+
0,
|
|
1657
|
+
[_SU, _KKI, _FSSP],
|
|
1658
|
+
[0, 0, 0]
|
|
1659
|
+
];
|
|
1660
|
+
var DocumentClassifierProperties$ = [3, n0, _DCP,
|
|
1661
|
+
0,
|
|
1662
|
+
[_DCA, _LC, _St, _M, _STu, _ET, _TST, _TET, _IDC, _ODC, _CM, _DARA, _VKKI, _VC, _Mo, _MKKI, _VN, _SMA, _FA],
|
|
1663
|
+
[0, 0, 0, 0, 4, 4, 4, 4, () => DocumentClassifierInputDataConfig$, () => DocumentClassifierOutputDataConfig$, [() => ClassifierMetadata$, 0], 0, 0, () => VpcConfig$, 0, 0, 0, 0, 0]
|
|
1664
|
+
];
|
|
1665
|
+
var DocumentClassifierSummary$ = [3, n0, _DCS,
|
|
1666
|
+
0,
|
|
1667
|
+
[_DCN, _NOV, _LVCA, _LVN, _LVS],
|
|
1668
|
+
[0, 1, 4, 0, 0]
|
|
1669
|
+
];
|
|
1670
|
+
var DocumentLabel$ = [3, n0, _DL,
|
|
1671
|
+
0,
|
|
1672
|
+
[_N, _Sc, _P],
|
|
1673
|
+
[0, 1, 1]
|
|
1674
|
+
];
|
|
1675
|
+
var DocumentMetadata$ = [3, n0, _DM,
|
|
1676
|
+
0,
|
|
1677
|
+
[_Pa, _ECx],
|
|
1678
|
+
[1, () => ListOfExtractedCharacters]
|
|
1679
|
+
];
|
|
1680
|
+
var DocumentReaderConfig$ = [3, n0, _DRC,
|
|
1681
|
+
0,
|
|
1682
|
+
[_DRA, _DRM, _FT],
|
|
1683
|
+
[0, 0, 64 | 0], 1
|
|
1684
|
+
];
|
|
1685
|
+
var DocumentTypeListItem$ = [3, n0, _DTLI,
|
|
1686
|
+
0,
|
|
1687
|
+
[_P, _Ty],
|
|
1688
|
+
[1, 0]
|
|
1689
|
+
];
|
|
1690
|
+
var DominantLanguage$ = [3, n0, _DLo,
|
|
1691
|
+
0,
|
|
1692
|
+
[_LC, _Sc],
|
|
1693
|
+
[0, 1]
|
|
1694
|
+
];
|
|
1695
|
+
var DominantLanguageDetectionJobFilter$ = [3, n0, _DLDJF,
|
|
1696
|
+
0,
|
|
1697
|
+
[_JN, _JS, _STB, _STA],
|
|
1698
|
+
[0, 0, 4, 4]
|
|
1699
|
+
];
|
|
1700
|
+
var DominantLanguageDetectionJobProperties$ = [3, n0, _DLDJP,
|
|
1701
|
+
0,
|
|
1702
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _DARA, _VKKI, _VC],
|
|
1703
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, () => VpcConfig$]
|
|
1704
|
+
];
|
|
1705
|
+
var EndpointFilter$ = [3, n0, _EF,
|
|
1706
|
+
0,
|
|
1707
|
+
[_MA, _St, _CTB, _CTA],
|
|
1708
|
+
[0, 0, 4, 4]
|
|
1709
|
+
];
|
|
1710
|
+
var EndpointProperties$ = [3, n0, _EP,
|
|
1711
|
+
0,
|
|
1712
|
+
[_EA, _St, _M, _MA, _DMA, _DIU, _CIU, _CT, _LMT, _DARA, _DDARA, _FA],
|
|
1713
|
+
[0, 0, 0, 0, 0, 1, 1, 4, 4, 0, 0, 0]
|
|
1714
|
+
];
|
|
1715
|
+
var EntitiesDetectionJobFilter$ = [3, n0, _EDJF,
|
|
1716
|
+
0,
|
|
1717
|
+
[_JN, _JS, _STB, _STA],
|
|
1718
|
+
[0, 0, 4, 4]
|
|
1719
|
+
];
|
|
1720
|
+
var EntitiesDetectionJobProperties$ = [3, n0, _EDJP,
|
|
1721
|
+
0,
|
|
1722
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _ERA, _IDC, _ODC, _LC, _DARA, _VKKI, _VC, _FA],
|
|
1723
|
+
[0, 0, 0, 0, 0, 4, 4, 0, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, () => VpcConfig$, 0]
|
|
1724
|
+
];
|
|
1725
|
+
var Entity$ = [3, n0, _En,
|
|
1726
|
+
0,
|
|
1727
|
+
[_Sc, _Ty, _T, _BO, _EO, _BRl],
|
|
1728
|
+
[1, 0, 0, 1, 1, () => ListOfBlockReferences]
|
|
1729
|
+
];
|
|
1730
|
+
var EntityLabel$ = [3, n0, _ELnt,
|
|
1731
|
+
0,
|
|
1732
|
+
[_N, _Sc],
|
|
1733
|
+
[0, 1]
|
|
1734
|
+
];
|
|
1735
|
+
var EntityRecognitionConfig$ = [3, n0, _ERC,
|
|
1736
|
+
0,
|
|
1737
|
+
[_ETn],
|
|
1738
|
+
[() => EntityTypesList], 1
|
|
1739
|
+
];
|
|
1740
|
+
var EntityRecognizerAnnotations$ = [3, n0, _ERAn,
|
|
1741
|
+
0,
|
|
1742
|
+
[_SU, _TSU],
|
|
1743
|
+
[0, 0], 1
|
|
1744
|
+
];
|
|
1745
|
+
var EntityRecognizerDocuments$ = [3, n0, _ERD,
|
|
1746
|
+
0,
|
|
1747
|
+
[_SU, _TSU, _IF],
|
|
1748
|
+
[0, 0, 0], 1
|
|
1749
|
+
];
|
|
1750
|
+
var EntityRecognizerEntityList$ = [3, n0, _EREL,
|
|
1751
|
+
0,
|
|
1752
|
+
[_SU],
|
|
1753
|
+
[0], 1
|
|
1754
|
+
];
|
|
1755
|
+
var EntityRecognizerEvaluationMetrics$ = [3, n0, _EREM,
|
|
1756
|
+
0,
|
|
1757
|
+
[_Pr, _Rec, _FS],
|
|
1758
|
+
[1, 1, 1]
|
|
1759
|
+
];
|
|
1760
|
+
var EntityRecognizerFilter$ = [3, n0, _ERF,
|
|
1761
|
+
0,
|
|
1762
|
+
[_St, _RN, _STB, _STA],
|
|
1763
|
+
[0, 0, 4, 4]
|
|
1764
|
+
];
|
|
1765
|
+
var EntityRecognizerInputDataConfig$ = [3, n0, _ERIDC,
|
|
1766
|
+
0,
|
|
1767
|
+
[_ETn, _DFa, _Do, _An, _ELn, _AM],
|
|
1768
|
+
[() => EntityTypesList, 0, () => EntityRecognizerDocuments$, () => EntityRecognizerAnnotations$, () => EntityRecognizerEntityList$, () => EntityRecognizerAugmentedManifestsList], 1
|
|
1769
|
+
];
|
|
1770
|
+
var EntityRecognizerMetadata$ = [3, n0, _ERM,
|
|
1771
|
+
8,
|
|
1772
|
+
[_NOTD, _NOTDu, _EMv, _ETn],
|
|
1773
|
+
[1, 1, () => EntityRecognizerEvaluationMetrics$, () => EntityRecognizerMetadataEntityTypesList]
|
|
1774
|
+
];
|
|
1775
|
+
var EntityRecognizerMetadataEntityTypesListItem$ = [3, n0, _ERMETLI,
|
|
1776
|
+
0,
|
|
1777
|
+
[_Ty, _EMv, _NOTM],
|
|
1778
|
+
[0, () => EntityTypesEvaluationMetrics$, 1]
|
|
1779
|
+
];
|
|
1780
|
+
var EntityRecognizerOutputDataConfig$ = [3, n0, _ERODC,
|
|
1781
|
+
0,
|
|
1782
|
+
[_FSSP],
|
|
1783
|
+
[0]
|
|
1784
|
+
];
|
|
1785
|
+
var EntityRecognizerProperties$ = [3, n0, _ERP,
|
|
1786
|
+
0,
|
|
1787
|
+
[_ERA, _LC, _St, _M, _STu, _ET, _TST, _TET, _IDC, _RM, _DARA, _VKKI, _VC, _MKKI, _VN, _SMA, _FA, _ODC],
|
|
1788
|
+
[0, 0, 0, 0, 4, 4, 4, 4, () => EntityRecognizerInputDataConfig$, [() => EntityRecognizerMetadata$, 0], 0, 0, () => VpcConfig$, 0, 0, 0, 0, () => EntityRecognizerOutputDataConfig$]
|
|
1789
|
+
];
|
|
1790
|
+
var EntityRecognizerSummary$ = [3, n0, _ERS,
|
|
1791
|
+
0,
|
|
1792
|
+
[_RN, _NOV, _LVCA, _LVN, _LVS],
|
|
1793
|
+
[0, 1, 4, 0, 0]
|
|
1794
|
+
];
|
|
1795
|
+
var EntityTypesEvaluationMetrics$ = [3, n0, _ETEM,
|
|
1796
|
+
0,
|
|
1797
|
+
[_Pr, _Rec, _FS],
|
|
1798
|
+
[1, 1, 1]
|
|
1799
|
+
];
|
|
1800
|
+
var EntityTypesListItem$ = [3, n0, _ETLI,
|
|
1801
|
+
0,
|
|
1802
|
+
[_Ty],
|
|
1803
|
+
[0], 1
|
|
1804
|
+
];
|
|
1805
|
+
var ErrorsListItem$ = [3, n0, _ELI,
|
|
1806
|
+
0,
|
|
1807
|
+
[_P, _EC, _EM],
|
|
1808
|
+
[1, 0, 0]
|
|
1809
|
+
];
|
|
1810
|
+
var EventsDetectionJobFilter$ = [3, n0, _EDJFv,
|
|
1811
|
+
0,
|
|
1812
|
+
[_JN, _JS, _STB, _STA],
|
|
1813
|
+
[0, 0, 4, 4]
|
|
1814
|
+
];
|
|
1815
|
+
var EventsDetectionJobProperties$ = [3, n0, _EDJPv,
|
|
1816
|
+
0,
|
|
1817
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _LC, _DARA, _TETa],
|
|
1818
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 64 | 0]
|
|
1819
|
+
];
|
|
1820
|
+
var ExtractedCharactersListItem$ = [3, n0, _ECLI,
|
|
1821
|
+
0,
|
|
1822
|
+
[_P, _Co],
|
|
1823
|
+
[1, 1]
|
|
1824
|
+
];
|
|
1825
|
+
var FlywheelFilter$ = [3, n0, _FF,
|
|
1826
|
+
0,
|
|
1827
|
+
[_St, _CTA, _CTB],
|
|
1828
|
+
[0, 4, 4]
|
|
1829
|
+
];
|
|
1830
|
+
var FlywheelIterationFilter$ = [3, n0, _FIF,
|
|
1831
|
+
0,
|
|
1832
|
+
[_CTA, _CTB],
|
|
1833
|
+
[4, 4]
|
|
1834
|
+
];
|
|
1835
|
+
var FlywheelIterationProperties$ = [3, n0, _FIP,
|
|
1836
|
+
0,
|
|
1837
|
+
[_FA, _FII, _CT, _ET, _St, _M, _EMA, _EMM, _TMA, _TMM, _EMSP],
|
|
1838
|
+
[0, 0, 4, 4, 0, 0, 0, () => FlywheelModelEvaluationMetrics$, 0, () => FlywheelModelEvaluationMetrics$, 0]
|
|
1839
|
+
];
|
|
1840
|
+
var FlywheelModelEvaluationMetrics$ = [3, n0, _FMEM,
|
|
1841
|
+
0,
|
|
1842
|
+
[_AFS, _AP, _AR, _AA],
|
|
1843
|
+
[1, 1, 1, 1]
|
|
1844
|
+
];
|
|
1845
|
+
var FlywheelProperties$ = [3, n0, _FP,
|
|
1846
|
+
0,
|
|
1847
|
+
[_FA, _AMA, _DARA, _TC, _DLSU, _DSC, _St, _MT, _M, _CT, _LMT, _LFI],
|
|
1848
|
+
[0, 0, 0, () => TaskConfig$, 0, () => DataSecurityConfig$, 0, 0, 0, 4, 4, 0]
|
|
1849
|
+
];
|
|
1850
|
+
var FlywheelSummary$ = [3, n0, _FSl,
|
|
1851
|
+
0,
|
|
1852
|
+
[_FA, _AMA, _DLSU, _St, _MT, _M, _CT, _LMT, _LFI],
|
|
1853
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0]
|
|
1854
|
+
];
|
|
1855
|
+
var Geometry$ = [3, n0, _G,
|
|
1856
|
+
0,
|
|
1857
|
+
[_BB, _Po],
|
|
1858
|
+
[() => BoundingBox$, () => Polygon]
|
|
1859
|
+
];
|
|
1860
|
+
var ImportModelRequest$ = [3, n0, _IMR,
|
|
1861
|
+
0,
|
|
1862
|
+
[_SMA, _MN, _VN, _MKKI, _DARA, _Ta],
|
|
1863
|
+
[0, 0, 0, 0, 0, () => TagList], 1
|
|
1864
|
+
];
|
|
1865
|
+
var ImportModelResponse$ = [3, n0, _IMRm,
|
|
1866
|
+
0,
|
|
1867
|
+
[_MA],
|
|
1868
|
+
[0]
|
|
1869
|
+
];
|
|
1870
|
+
var InputDataConfig$ = [3, n0, _IDC,
|
|
1871
|
+
0,
|
|
1872
|
+
[_SU, _IF, _DRC],
|
|
1873
|
+
[0, 0, () => DocumentReaderConfig$], 1
|
|
1874
|
+
];
|
|
1875
|
+
var InvalidRequestDetail$ = [3, n0, _IRD,
|
|
1876
|
+
0,
|
|
1877
|
+
[_R],
|
|
1878
|
+
[0]
|
|
1879
|
+
];
|
|
1880
|
+
var KeyPhrase$ = [3, n0, _KPe,
|
|
1881
|
+
0,
|
|
1882
|
+
[_Sc, _T, _BO, _EO],
|
|
1883
|
+
[1, 0, 1, 1]
|
|
1884
|
+
];
|
|
1885
|
+
var KeyPhrasesDetectionJobFilter$ = [3, n0, _KPDJF,
|
|
1886
|
+
0,
|
|
1887
|
+
[_JN, _JS, _STB, _STA],
|
|
1888
|
+
[0, 0, 4, 4]
|
|
1889
|
+
];
|
|
1890
|
+
var KeyPhrasesDetectionJobProperties$ = [3, n0, _KPDJP,
|
|
1891
|
+
0,
|
|
1892
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _LC, _DARA, _VKKI, _VC],
|
|
1893
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, () => VpcConfig$]
|
|
1894
|
+
];
|
|
1895
|
+
var ListDatasetsRequest$ = [3, n0, _LDR,
|
|
1896
|
+
0,
|
|
1897
|
+
[_FA, _F, _NT, _MRa],
|
|
1898
|
+
[0, () => DatasetFilter$, 0, 1]
|
|
1899
|
+
];
|
|
1900
|
+
var ListDatasetsResponse$ = [3, n0, _LDRi,
|
|
1901
|
+
0,
|
|
1902
|
+
[_DPL, _NT],
|
|
1903
|
+
[() => DatasetPropertiesList, 0]
|
|
1904
|
+
];
|
|
1905
|
+
var ListDocumentClassificationJobsRequest$ = [3, n0, _LDCJR,
|
|
1906
|
+
0,
|
|
1907
|
+
[_F, _NT, _MRa],
|
|
1908
|
+
[() => DocumentClassificationJobFilter$, 0, 1]
|
|
1909
|
+
];
|
|
1910
|
+
var ListDocumentClassificationJobsResponse$ = [3, n0, _LDCJRi,
|
|
1911
|
+
0,
|
|
1912
|
+
[_DCJPL, _NT],
|
|
1913
|
+
[() => DocumentClassificationJobPropertiesList, 0]
|
|
1914
|
+
];
|
|
1915
|
+
var ListDocumentClassifiersRequest$ = [3, n0, _LDCR,
|
|
1916
|
+
0,
|
|
1917
|
+
[_F, _NT, _MRa],
|
|
1918
|
+
[() => DocumentClassifierFilter$, 0, 1]
|
|
1919
|
+
];
|
|
1920
|
+
var ListDocumentClassifiersResponse$ = [3, n0, _LDCRi,
|
|
1921
|
+
0,
|
|
1922
|
+
[_DCPL, _NT],
|
|
1923
|
+
[[() => DocumentClassifierPropertiesList, 0], 0]
|
|
1924
|
+
];
|
|
1925
|
+
var ListDocumentClassifierSummariesRequest$ = [3, n0, _LDCSR,
|
|
1926
|
+
0,
|
|
1927
|
+
[_NT, _MRa],
|
|
1928
|
+
[0, 1]
|
|
1929
|
+
];
|
|
1930
|
+
var ListDocumentClassifierSummariesResponse$ = [3, n0, _LDCSRi,
|
|
1931
|
+
0,
|
|
1932
|
+
[_DCSL, _NT],
|
|
1933
|
+
[() => DocumentClassifierSummariesList, 0]
|
|
1934
|
+
];
|
|
1935
|
+
var ListDominantLanguageDetectionJobsRequest$ = [3, n0, _LDLDJR,
|
|
1936
|
+
0,
|
|
1937
|
+
[_F, _NT, _MRa],
|
|
1938
|
+
[() => DominantLanguageDetectionJobFilter$, 0, 1]
|
|
1939
|
+
];
|
|
1940
|
+
var ListDominantLanguageDetectionJobsResponse$ = [3, n0, _LDLDJRi,
|
|
1941
|
+
0,
|
|
1942
|
+
[_DLDJPL, _NT],
|
|
1943
|
+
[() => DominantLanguageDetectionJobPropertiesList, 0]
|
|
1944
|
+
];
|
|
1945
|
+
var ListEndpointsRequest$ = [3, n0, _LER,
|
|
1946
|
+
0,
|
|
1947
|
+
[_F, _NT, _MRa],
|
|
1948
|
+
[() => EndpointFilter$, 0, 1]
|
|
1949
|
+
];
|
|
1950
|
+
var ListEndpointsResponse$ = [3, n0, _LERi,
|
|
1951
|
+
0,
|
|
1952
|
+
[_EPL, _NT],
|
|
1953
|
+
[() => EndpointPropertiesList, 0]
|
|
1954
|
+
];
|
|
1955
|
+
var ListEntitiesDetectionJobsRequest$ = [3, n0, _LEDJR,
|
|
1956
|
+
0,
|
|
1957
|
+
[_F, _NT, _MRa],
|
|
1958
|
+
[() => EntitiesDetectionJobFilter$, 0, 1]
|
|
1959
|
+
];
|
|
1960
|
+
var ListEntitiesDetectionJobsResponse$ = [3, n0, _LEDJRi,
|
|
1961
|
+
0,
|
|
1962
|
+
[_EDJPL, _NT],
|
|
1963
|
+
[() => EntitiesDetectionJobPropertiesList, 0]
|
|
1964
|
+
];
|
|
1965
|
+
var ListEntityRecognizersRequest$ = [3, n0, _LERR,
|
|
1966
|
+
0,
|
|
1967
|
+
[_F, _NT, _MRa],
|
|
1968
|
+
[() => EntityRecognizerFilter$, 0, 1]
|
|
1969
|
+
];
|
|
1970
|
+
var ListEntityRecognizersResponse$ = [3, n0, _LERRi,
|
|
1971
|
+
0,
|
|
1972
|
+
[_ERPL, _NT],
|
|
1973
|
+
[[() => EntityRecognizerPropertiesList, 0], 0]
|
|
1974
|
+
];
|
|
1975
|
+
var ListEntityRecognizerSummariesRequest$ = [3, n0, _LERSR,
|
|
1976
|
+
0,
|
|
1977
|
+
[_NT, _MRa],
|
|
1978
|
+
[0, 1]
|
|
1979
|
+
];
|
|
1980
|
+
var ListEntityRecognizerSummariesResponse$ = [3, n0, _LERSRi,
|
|
1981
|
+
0,
|
|
1982
|
+
[_ERSL, _NT],
|
|
1983
|
+
[() => EntityRecognizerSummariesList, 0]
|
|
1984
|
+
];
|
|
1985
|
+
var ListEventsDetectionJobsRequest$ = [3, n0, _LEDJRis,
|
|
1986
|
+
0,
|
|
1987
|
+
[_F, _NT, _MRa],
|
|
1988
|
+
[() => EventsDetectionJobFilter$, 0, 1]
|
|
1989
|
+
];
|
|
1990
|
+
var ListEventsDetectionJobsResponse$ = [3, n0, _LEDJRist,
|
|
1991
|
+
0,
|
|
1992
|
+
[_EDJPLv, _NT],
|
|
1993
|
+
[() => EventsDetectionJobPropertiesList, 0]
|
|
1994
|
+
];
|
|
1995
|
+
var ListFlywheelIterationHistoryRequest$ = [3, n0, _LFIHR,
|
|
1996
|
+
0,
|
|
1997
|
+
[_FA, _F, _NT, _MRa],
|
|
1998
|
+
[0, () => FlywheelIterationFilter$, 0, 1], 1
|
|
1999
|
+
];
|
|
2000
|
+
var ListFlywheelIterationHistoryResponse$ = [3, n0, _LFIHRi,
|
|
2001
|
+
0,
|
|
2002
|
+
[_FIPL, _NT],
|
|
2003
|
+
[() => FlywheelIterationPropertiesList, 0]
|
|
2004
|
+
];
|
|
2005
|
+
var ListFlywheelsRequest$ = [3, n0, _LFR,
|
|
2006
|
+
0,
|
|
2007
|
+
[_F, _NT, _MRa],
|
|
2008
|
+
[() => FlywheelFilter$, 0, 1]
|
|
2009
|
+
];
|
|
2010
|
+
var ListFlywheelsResponse$ = [3, n0, _LFRi,
|
|
2011
|
+
0,
|
|
2012
|
+
[_FSL, _NT],
|
|
2013
|
+
[() => FlywheelSummaryList, 0]
|
|
2014
|
+
];
|
|
2015
|
+
var ListKeyPhrasesDetectionJobsRequest$ = [3, n0, _LKPDJR,
|
|
2016
|
+
0,
|
|
2017
|
+
[_F, _NT, _MRa],
|
|
2018
|
+
[() => KeyPhrasesDetectionJobFilter$, 0, 1]
|
|
2019
|
+
];
|
|
2020
|
+
var ListKeyPhrasesDetectionJobsResponse$ = [3, n0, _LKPDJRi,
|
|
2021
|
+
0,
|
|
2022
|
+
[_KPDJPL, _NT],
|
|
2023
|
+
[() => KeyPhrasesDetectionJobPropertiesList, 0]
|
|
2024
|
+
];
|
|
2025
|
+
var ListPiiEntitiesDetectionJobsRequest$ = [3, n0, _LPEDJR,
|
|
2026
|
+
0,
|
|
2027
|
+
[_F, _NT, _MRa],
|
|
2028
|
+
[() => PiiEntitiesDetectionJobFilter$, 0, 1]
|
|
2029
|
+
];
|
|
2030
|
+
var ListPiiEntitiesDetectionJobsResponse$ = [3, n0, _LPEDJRi,
|
|
2031
|
+
0,
|
|
2032
|
+
[_PEDJPL, _NT],
|
|
2033
|
+
[() => PiiEntitiesDetectionJobPropertiesList, 0]
|
|
2034
|
+
];
|
|
2035
|
+
var ListSentimentDetectionJobsRequest$ = [3, n0, _LSDJR,
|
|
2036
|
+
0,
|
|
2037
|
+
[_F, _NT, _MRa],
|
|
2038
|
+
[() => SentimentDetectionJobFilter$, 0, 1]
|
|
2039
|
+
];
|
|
2040
|
+
var ListSentimentDetectionJobsResponse$ = [3, n0, _LSDJRi,
|
|
2041
|
+
0,
|
|
2042
|
+
[_SDJPL, _NT],
|
|
2043
|
+
[() => SentimentDetectionJobPropertiesList, 0]
|
|
2044
|
+
];
|
|
2045
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2046
|
+
0,
|
|
2047
|
+
[_RA],
|
|
2048
|
+
[0], 1
|
|
2049
|
+
];
|
|
2050
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2051
|
+
0,
|
|
2052
|
+
[_RA, _Ta],
|
|
2053
|
+
[0, () => TagList]
|
|
2054
|
+
];
|
|
2055
|
+
var ListTargetedSentimentDetectionJobsRequest$ = [3, n0, _LTSDJR,
|
|
2056
|
+
0,
|
|
2057
|
+
[_F, _NT, _MRa],
|
|
2058
|
+
[() => TargetedSentimentDetectionJobFilter$, 0, 1]
|
|
2059
|
+
];
|
|
2060
|
+
var ListTargetedSentimentDetectionJobsResponse$ = [3, n0, _LTSDJRi,
|
|
2061
|
+
0,
|
|
2062
|
+
[_TSDJPL, _NT],
|
|
2063
|
+
[() => TargetedSentimentDetectionJobPropertiesList, 0]
|
|
2064
|
+
];
|
|
2065
|
+
var ListTopicsDetectionJobsRequest$ = [3, n0, _LTDJR,
|
|
2066
|
+
0,
|
|
2067
|
+
[_F, _NT, _MRa],
|
|
2068
|
+
[() => TopicsDetectionJobFilter$, 0, 1]
|
|
2069
|
+
];
|
|
2070
|
+
var ListTopicsDetectionJobsResponse$ = [3, n0, _LTDJRi,
|
|
2071
|
+
0,
|
|
2072
|
+
[_TDJPL, _NT],
|
|
2073
|
+
[() => TopicsDetectionJobPropertiesList, 0]
|
|
2074
|
+
];
|
|
2075
|
+
var MentionSentiment$ = [3, n0, _MS,
|
|
2076
|
+
0,
|
|
2077
|
+
[_Se, _SS],
|
|
2078
|
+
[0, () => SentimentScore$]
|
|
2079
|
+
];
|
|
2080
|
+
var OutputDataConfig$ = [3, n0, _ODC,
|
|
2081
|
+
0,
|
|
2082
|
+
[_SU, _KKI],
|
|
2083
|
+
[0, 0], 1
|
|
2084
|
+
];
|
|
2085
|
+
var PartOfSpeechTag$ = [3, n0, _POST,
|
|
2086
|
+
0,
|
|
2087
|
+
[_Tag, _Sc],
|
|
2088
|
+
[0, 1]
|
|
2089
|
+
];
|
|
2090
|
+
var PiiEntitiesDetectionJobFilter$ = [3, n0, _PEDJF,
|
|
2091
|
+
0,
|
|
2092
|
+
[_JN, _JS, _STB, _STA],
|
|
2093
|
+
[0, 0, 4, 4]
|
|
2094
|
+
];
|
|
2095
|
+
var PiiEntitiesDetectionJobProperties$ = [3, n0, _PEDJP,
|
|
2096
|
+
0,
|
|
2097
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _RC, _LC, _DARA, _Mo],
|
|
2098
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => PiiOutputDataConfig$, () => RedactionConfig$, 0, 0, 0]
|
|
2099
|
+
];
|
|
2100
|
+
var PiiEntity$ = [3, n0, _PE,
|
|
2101
|
+
0,
|
|
2102
|
+
[_Sc, _Ty, _BO, _EO],
|
|
2103
|
+
[1, 0, 1, 1]
|
|
2104
|
+
];
|
|
2105
|
+
var PiiOutputDataConfig$ = [3, n0, _PODC,
|
|
2106
|
+
0,
|
|
2107
|
+
[_SU, _KKI],
|
|
2108
|
+
[0, 0], 1
|
|
2109
|
+
];
|
|
2110
|
+
var Point$ = [3, n0, _Poi,
|
|
2111
|
+
0,
|
|
2112
|
+
[_X, _Y],
|
|
2113
|
+
[1, 1]
|
|
2114
|
+
];
|
|
2115
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
2116
|
+
0,
|
|
2117
|
+
[_RA, _RP, _PRI],
|
|
2118
|
+
[0, 0, 0], 2
|
|
2119
|
+
];
|
|
2120
|
+
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
2121
|
+
0,
|
|
2122
|
+
[_PRI],
|
|
2123
|
+
[0]
|
|
2124
|
+
];
|
|
2125
|
+
var RedactionConfig$ = [3, n0, _RC,
|
|
2126
|
+
0,
|
|
2127
|
+
[_PET, _MM, _MC],
|
|
2128
|
+
[64 | 0, 0, 0]
|
|
2129
|
+
];
|
|
2130
|
+
var RelationshipsListItem$ = [3, n0, _RLI,
|
|
2131
|
+
0,
|
|
2132
|
+
[_Ids, _Ty],
|
|
2133
|
+
[64 | 0, 0]
|
|
2134
|
+
];
|
|
2135
|
+
var SentimentDetectionJobFilter$ = [3, n0, _SDJF,
|
|
2136
|
+
0,
|
|
2137
|
+
[_JN, _JS, _STB, _STA],
|
|
2138
|
+
[0, 0, 4, 4]
|
|
2139
|
+
];
|
|
2140
|
+
var SentimentDetectionJobProperties$ = [3, n0, _SDJP,
|
|
2141
|
+
0,
|
|
2142
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _LC, _DARA, _VKKI, _VC],
|
|
2143
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, () => VpcConfig$]
|
|
2144
|
+
];
|
|
2145
|
+
var SentimentScore$ = [3, n0, _SS,
|
|
2146
|
+
0,
|
|
2147
|
+
[_Pos, _Ne, _Neu, _Mi],
|
|
2148
|
+
[1, 1, 1, 1]
|
|
2149
|
+
];
|
|
2150
|
+
var StartDocumentClassificationJobRequest$ = [3, n0, _SDCJR,
|
|
2151
|
+
0,
|
|
2152
|
+
[_IDC, _ODC, _DARA, _JN, _DCA, _CRT, _VKKI, _VC, _Ta, _FA],
|
|
2153
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList, 0], 3
|
|
2154
|
+
];
|
|
2155
|
+
var StartDocumentClassificationJobResponse$ = [3, n0, _SDCJRt,
|
|
2156
|
+
0,
|
|
2157
|
+
[_JI, _JA, _JS, _DCA],
|
|
2158
|
+
[0, 0, 0, 0]
|
|
2159
|
+
];
|
|
2160
|
+
var StartDominantLanguageDetectionJobRequest$ = [3, n0, _SDLDJR,
|
|
2161
|
+
0,
|
|
2162
|
+
[_IDC, _ODC, _DARA, _JN, _CRT, _VKKI, _VC, _Ta],
|
|
2163
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList], 3
|
|
2164
|
+
];
|
|
2165
|
+
var StartDominantLanguageDetectionJobResponse$ = [3, n0, _SDLDJRt,
|
|
2166
|
+
0,
|
|
2167
|
+
[_JI, _JA, _JS],
|
|
2168
|
+
[0, 0, 0]
|
|
2169
|
+
];
|
|
2170
|
+
var StartEntitiesDetectionJobRequest$ = [3, n0, _SEDJR,
|
|
2171
|
+
0,
|
|
2172
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _ERA, _CRT, _VKKI, _VC, _Ta, _FA],
|
|
2173
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList, 0], 4
|
|
2174
|
+
];
|
|
2175
|
+
var StartEntitiesDetectionJobResponse$ = [3, n0, _SEDJRt,
|
|
2176
|
+
0,
|
|
2177
|
+
[_JI, _JA, _JS, _ERA],
|
|
2178
|
+
[0, 0, 0, 0]
|
|
2179
|
+
];
|
|
2180
|
+
var StartEventsDetectionJobRequest$ = [3, n0, _SEDJRta,
|
|
2181
|
+
0,
|
|
2182
|
+
[_IDC, _ODC, _DARA, _LC, _TETa, _JN, _CRT, _Ta],
|
|
2183
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 64 | 0, 0, [0, 4], () => TagList], 5
|
|
2184
|
+
];
|
|
2185
|
+
var StartEventsDetectionJobResponse$ = [3, n0, _SEDJRtar,
|
|
2186
|
+
0,
|
|
2187
|
+
[_JI, _JA, _JS],
|
|
2188
|
+
[0, 0, 0]
|
|
2189
|
+
];
|
|
2190
|
+
var StartFlywheelIterationRequest$ = [3, n0, _SFIR,
|
|
2191
|
+
0,
|
|
2192
|
+
[_FA, _CRT],
|
|
2193
|
+
[0, 0], 1
|
|
2194
|
+
];
|
|
2195
|
+
var StartFlywheelIterationResponse$ = [3, n0, _SFIRt,
|
|
2196
|
+
0,
|
|
2197
|
+
[_FA, _FII],
|
|
2198
|
+
[0, 0]
|
|
2199
|
+
];
|
|
2200
|
+
var StartKeyPhrasesDetectionJobRequest$ = [3, n0, _SKPDJR,
|
|
2201
|
+
0,
|
|
2202
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _VKKI, _VC, _Ta],
|
|
2203
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList], 4
|
|
2204
|
+
];
|
|
2205
|
+
var StartKeyPhrasesDetectionJobResponse$ = [3, n0, _SKPDJRt,
|
|
2206
|
+
0,
|
|
2207
|
+
[_JI, _JA, _JS],
|
|
2208
|
+
[0, 0, 0]
|
|
2209
|
+
];
|
|
2210
|
+
var StartPiiEntitiesDetectionJobRequest$ = [3, n0, _SPEDJR,
|
|
2211
|
+
0,
|
|
2212
|
+
[_IDC, _ODC, _Mo, _DARA, _LC, _RC, _JN, _CRT, _Ta],
|
|
2213
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, () => RedactionConfig$, 0, [0, 4], () => TagList], 5
|
|
2214
|
+
];
|
|
2215
|
+
var StartPiiEntitiesDetectionJobResponse$ = [3, n0, _SPEDJRt,
|
|
2216
|
+
0,
|
|
2217
|
+
[_JI, _JA, _JS],
|
|
2218
|
+
[0, 0, 0]
|
|
2219
|
+
];
|
|
2220
|
+
var StartSentimentDetectionJobRequest$ = [3, n0, _SSDJR,
|
|
2221
|
+
0,
|
|
2222
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _VKKI, _VC, _Ta],
|
|
2223
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList], 4
|
|
2224
|
+
];
|
|
2225
|
+
var StartSentimentDetectionJobResponse$ = [3, n0, _SSDJRt,
|
|
2226
|
+
0,
|
|
2227
|
+
[_JI, _JA, _JS],
|
|
2228
|
+
[0, 0, 0]
|
|
2229
|
+
];
|
|
2230
|
+
var StartTargetedSentimentDetectionJobRequest$ = [3, n0, _STSDJR,
|
|
2231
|
+
0,
|
|
2232
|
+
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _VKKI, _VC, _Ta],
|
|
2233
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0, () => VpcConfig$, () => TagList], 4
|
|
2234
|
+
];
|
|
2235
|
+
var StartTargetedSentimentDetectionJobResponse$ = [3, n0, _STSDJRt,
|
|
2236
|
+
0,
|
|
2237
|
+
[_JI, _JA, _JS],
|
|
2238
|
+
[0, 0, 0]
|
|
2239
|
+
];
|
|
2240
|
+
var StartTopicsDetectionJobRequest$ = [3, n0, _STDJR,
|
|
2241
|
+
0,
|
|
2242
|
+
[_IDC, _ODC, _DARA, _JN, _NOT, _CRT, _VKKI, _VC, _Ta],
|
|
2243
|
+
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 1, [0, 4], 0, () => VpcConfig$, () => TagList], 3
|
|
2244
|
+
];
|
|
2245
|
+
var StartTopicsDetectionJobResponse$ = [3, n0, _STDJRt,
|
|
2246
|
+
0,
|
|
2247
|
+
[_JI, _JA, _JS],
|
|
2248
|
+
[0, 0, 0]
|
|
2249
|
+
];
|
|
2250
|
+
var StopDominantLanguageDetectionJobRequest$ = [3, n0, _SDLDJRto,
|
|
2251
|
+
0,
|
|
2252
|
+
[_JI],
|
|
2253
|
+
[0], 1
|
|
2254
|
+
];
|
|
2255
|
+
var StopDominantLanguageDetectionJobResponse$ = [3, n0, _SDLDJRtop,
|
|
2256
|
+
0,
|
|
2257
|
+
[_JI, _JS],
|
|
2258
|
+
[0, 0]
|
|
2259
|
+
];
|
|
2260
|
+
var StopEntitiesDetectionJobRequest$ = [3, n0, _SEDJRto,
|
|
2261
|
+
0,
|
|
2262
|
+
[_JI],
|
|
2263
|
+
[0], 1
|
|
2264
|
+
];
|
|
2265
|
+
var StopEntitiesDetectionJobResponse$ = [3, n0, _SEDJRtop,
|
|
2266
|
+
0,
|
|
2267
|
+
[_JI, _JS],
|
|
2268
|
+
[0, 0]
|
|
2269
|
+
];
|
|
2270
|
+
var StopEventsDetectionJobRequest$ = [3, n0, _SEDJRtopv,
|
|
2271
|
+
0,
|
|
2272
|
+
[_JI],
|
|
2273
|
+
[0], 1
|
|
2274
|
+
];
|
|
2275
|
+
var StopEventsDetectionJobResponse$ = [3, n0, _SEDJRtopve,
|
|
2276
|
+
0,
|
|
2277
|
+
[_JI, _JS],
|
|
2278
|
+
[0, 0]
|
|
2279
|
+
];
|
|
2280
|
+
var StopKeyPhrasesDetectionJobRequest$ = [3, n0, _SKPDJRto,
|
|
2281
|
+
0,
|
|
2282
|
+
[_JI],
|
|
2283
|
+
[0], 1
|
|
2284
|
+
];
|
|
2285
|
+
var StopKeyPhrasesDetectionJobResponse$ = [3, n0, _SKPDJRtop,
|
|
2286
|
+
0,
|
|
2287
|
+
[_JI, _JS],
|
|
2288
|
+
[0, 0]
|
|
2289
|
+
];
|
|
2290
|
+
var StopPiiEntitiesDetectionJobRequest$ = [3, n0, _SPEDJRto,
|
|
2291
|
+
0,
|
|
2292
|
+
[_JI],
|
|
2293
|
+
[0], 1
|
|
2294
|
+
];
|
|
2295
|
+
var StopPiiEntitiesDetectionJobResponse$ = [3, n0, _SPEDJRtop,
|
|
2296
|
+
0,
|
|
2297
|
+
[_JI, _JS],
|
|
2298
|
+
[0, 0]
|
|
2299
|
+
];
|
|
2300
|
+
var StopSentimentDetectionJobRequest$ = [3, n0, _SSDJRto,
|
|
2301
|
+
0,
|
|
2302
|
+
[_JI],
|
|
2303
|
+
[0], 1
|
|
2304
|
+
];
|
|
2305
|
+
var StopSentimentDetectionJobResponse$ = [3, n0, _SSDJRtop,
|
|
2306
|
+
0,
|
|
2307
|
+
[_JI, _JS],
|
|
2308
|
+
[0, 0]
|
|
2309
|
+
];
|
|
2310
|
+
var StopTargetedSentimentDetectionJobRequest$ = [3, n0, _STSDJRto,
|
|
2311
|
+
0,
|
|
2312
|
+
[_JI],
|
|
2313
|
+
[0], 1
|
|
2314
|
+
];
|
|
2315
|
+
var StopTargetedSentimentDetectionJobResponse$ = [3, n0, _STSDJRtop,
|
|
2316
|
+
0,
|
|
2317
|
+
[_JI, _JS],
|
|
2318
|
+
[0, 0]
|
|
2319
|
+
];
|
|
2320
|
+
var StopTrainingDocumentClassifierRequest$ = [3, n0, _STDCR,
|
|
2321
|
+
0,
|
|
2322
|
+
[_DCA],
|
|
2323
|
+
[0], 1
|
|
2324
|
+
];
|
|
2325
|
+
var StopTrainingDocumentClassifierResponse$ = [3, n0, _STDCRt,
|
|
2326
|
+
0,
|
|
2327
|
+
[],
|
|
2328
|
+
[]
|
|
2329
|
+
];
|
|
2330
|
+
var StopTrainingEntityRecognizerRequest$ = [3, n0, _STERR,
|
|
2331
|
+
0,
|
|
2332
|
+
[_ERA],
|
|
2333
|
+
[0], 1
|
|
2334
|
+
];
|
|
2335
|
+
var StopTrainingEntityRecognizerResponse$ = [3, n0, _STERRt,
|
|
2336
|
+
0,
|
|
2337
|
+
[],
|
|
2338
|
+
[]
|
|
2339
|
+
];
|
|
2340
|
+
var SyntaxToken$ = [3, n0, _STy,
|
|
2341
|
+
0,
|
|
2342
|
+
[_TI, _T, _BO, _EO, _POS],
|
|
2343
|
+
[1, 0, 1, 1, () => PartOfSpeechTag$]
|
|
2344
|
+
];
|
|
2345
|
+
var Tag$ = [3, n0, _Tag,
|
|
2346
|
+
0,
|
|
2347
|
+
[_K, _V],
|
|
2348
|
+
[0, 0], 1
|
|
2349
|
+
];
|
|
2350
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2351
|
+
0,
|
|
2352
|
+
[_RA, _Ta],
|
|
2353
|
+
[0, () => TagList], 2
|
|
2354
|
+
];
|
|
2355
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2356
|
+
0,
|
|
2357
|
+
[],
|
|
2358
|
+
[]
|
|
2359
|
+
];
|
|
2360
|
+
var TargetedSentimentDetectionJobFilter$ = [3, n0, _TSDJF,
|
|
2361
|
+
0,
|
|
2362
|
+
[_JN, _JS, _STB, _STA],
|
|
2363
|
+
[0, 0, 4, 4]
|
|
2364
|
+
];
|
|
2365
|
+
var TargetedSentimentDetectionJobProperties$ = [3, n0, _TSDJP,
|
|
2366
|
+
0,
|
|
2367
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _LC, _DARA, _VKKI, _VC],
|
|
2368
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, () => VpcConfig$]
|
|
2369
|
+
];
|
|
2370
|
+
var TargetedSentimentEntity$ = [3, n0, _TSE,
|
|
2371
|
+
0,
|
|
2372
|
+
[_DMI, _Me],
|
|
2373
|
+
[64 | 1, () => ListOfMentions]
|
|
2374
|
+
];
|
|
2375
|
+
var TargetedSentimentMention$ = [3, n0, _TSM,
|
|
2376
|
+
0,
|
|
2377
|
+
[_Sc, _GS, _T, _Ty, _MS, _BO, _EO],
|
|
2378
|
+
[1, 1, 0, 0, () => MentionSentiment$, 1, 1]
|
|
2379
|
+
];
|
|
2380
|
+
var TaskConfig$ = [3, n0, _TC,
|
|
2381
|
+
0,
|
|
2382
|
+
[_LC, _DCC, _ERC],
|
|
2383
|
+
[0, () => DocumentClassificationConfig$, () => EntityRecognitionConfig$], 1
|
|
2384
|
+
];
|
|
2385
|
+
var TextSegment$ = [3, n0, _TSe,
|
|
2386
|
+
0,
|
|
2387
|
+
[_T],
|
|
2388
|
+
[[() => CustomerInputString, 0]], 1
|
|
2389
|
+
];
|
|
2390
|
+
var TopicsDetectionJobFilter$ = [3, n0, _TDJF,
|
|
2391
|
+
0,
|
|
2392
|
+
[_JN, _JS, _STB, _STA],
|
|
2393
|
+
[0, 0, 4, 4]
|
|
2394
|
+
];
|
|
2395
|
+
var TopicsDetectionJobProperties$ = [3, n0, _TDJP,
|
|
2396
|
+
0,
|
|
2397
|
+
[_JI, _JA, _JN, _JS, _M, _STu, _ET, _IDC, _ODC, _NOT, _DARA, _VKKI, _VC],
|
|
2398
|
+
[0, 0, 0, 0, 0, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 1, 0, 0, () => VpcConfig$]
|
|
2399
|
+
];
|
|
2400
|
+
var ToxicContent$ = [3, n0, _TCo,
|
|
2401
|
+
0,
|
|
2402
|
+
[_N, _Sc],
|
|
2403
|
+
[0, 1]
|
|
2404
|
+
];
|
|
2405
|
+
var ToxicLabels$ = [3, n0, _TLo,
|
|
2406
|
+
0,
|
|
2407
|
+
[_La, _Tox],
|
|
2408
|
+
[() => ListOfToxicContent, 1]
|
|
2409
|
+
];
|
|
2410
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2411
|
+
0,
|
|
2412
|
+
[_RA, _TK],
|
|
2413
|
+
[0, 64 | 0], 2
|
|
2414
|
+
];
|
|
2415
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2416
|
+
0,
|
|
2417
|
+
[],
|
|
2418
|
+
[]
|
|
2419
|
+
];
|
|
2420
|
+
var UpdateDataSecurityConfig$ = [3, n0, _UDSC,
|
|
2421
|
+
0,
|
|
2422
|
+
[_MKKI, _VKKI, _VC],
|
|
2423
|
+
[0, 0, () => VpcConfig$]
|
|
2424
|
+
];
|
|
2425
|
+
var UpdateEndpointRequest$ = [3, n0, _UER,
|
|
2426
|
+
0,
|
|
2427
|
+
[_EA, _DMA, _DIU, _DDARA, _FA],
|
|
2428
|
+
[0, 0, 1, 0, 0], 1
|
|
2429
|
+
];
|
|
2430
|
+
var UpdateEndpointResponse$ = [3, n0, _UERp,
|
|
2431
|
+
0,
|
|
2432
|
+
[_DMA],
|
|
2433
|
+
[0]
|
|
2434
|
+
];
|
|
2435
|
+
var UpdateFlywheelRequest$ = [3, n0, _UFR,
|
|
2436
|
+
0,
|
|
2437
|
+
[_FA, _AMA, _DARA, _DSC],
|
|
2438
|
+
[0, 0, 0, () => UpdateDataSecurityConfig$], 1
|
|
2439
|
+
];
|
|
2440
|
+
var UpdateFlywheelResponse$ = [3, n0, _UFRp,
|
|
2441
|
+
0,
|
|
2442
|
+
[_FP],
|
|
2443
|
+
[() => FlywheelProperties$]
|
|
2444
|
+
];
|
|
2445
|
+
var VpcConfig$ = [3, n0, _VC,
|
|
2446
|
+
0,
|
|
2447
|
+
[_SGI, _Su],
|
|
2448
|
+
[64 | 0, 64 | 0], 2
|
|
2449
|
+
];
|
|
2450
|
+
var WarningsListItem$ = [3, n0, _WLI,
|
|
2451
|
+
0,
|
|
2452
|
+
[_P, _WC, _WM],
|
|
2453
|
+
[1, 0, 0]
|
|
2454
|
+
];
|
|
2455
|
+
var BatchItemErrorList = [1, n0, _BIEL,
|
|
2456
|
+
0, () => BatchItemError$
|
|
2457
|
+
];
|
|
2458
|
+
var CustomerInputStringList = [1, n0, _CISL,
|
|
2459
|
+
8, [() => CustomerInputString,
|
|
2460
|
+
0]
|
|
2461
|
+
];
|
|
2462
|
+
var DatasetAugmentedManifestsList = [1, n0, _DAML,
|
|
2463
|
+
0, () => DatasetAugmentedManifestsListItem$
|
|
2464
|
+
];
|
|
2465
|
+
var DatasetPropertiesList = [1, n0, _DPL,
|
|
2466
|
+
0, () => DatasetProperties$
|
|
2467
|
+
];
|
|
2468
|
+
var DocumentClassificationJobPropertiesList = [1, n0, _DCJPL,
|
|
2469
|
+
0, () => DocumentClassificationJobProperties$
|
|
2470
|
+
];
|
|
2471
|
+
var DocumentClassifierAugmentedManifestsList = [1, n0, _DCAML,
|
|
2472
|
+
0, () => AugmentedManifestsListItem$
|
|
2473
|
+
];
|
|
2474
|
+
var DocumentClassifierPropertiesList = [1, n0, _DCPL,
|
|
2475
|
+
0, [() => DocumentClassifierProperties$,
|
|
2476
|
+
0]
|
|
2477
|
+
];
|
|
2478
|
+
var DocumentClassifierSummariesList = [1, n0, _DCSL,
|
|
2479
|
+
0, () => DocumentClassifierSummary$
|
|
2480
|
+
];
|
|
2481
|
+
var DominantLanguageDetectionJobPropertiesList = [1, n0, _DLDJPL,
|
|
2482
|
+
0, () => DominantLanguageDetectionJobProperties$
|
|
2483
|
+
];
|
|
2484
|
+
var EndpointPropertiesList = [1, n0, _EPL,
|
|
2485
|
+
0, () => EndpointProperties$
|
|
2486
|
+
];
|
|
2487
|
+
var EntitiesDetectionJobPropertiesList = [1, n0, _EDJPL,
|
|
2488
|
+
0, () => EntitiesDetectionJobProperties$
|
|
2489
|
+
];
|
|
2490
|
+
var EntityRecognizerAugmentedManifestsList = [1, n0, _ERAML,
|
|
2491
|
+
0, () => AugmentedManifestsListItem$
|
|
2492
|
+
];
|
|
2493
|
+
var EntityRecognizerMetadataEntityTypesList = [1, n0, _ERMETL,
|
|
2494
|
+
0, () => EntityRecognizerMetadataEntityTypesListItem$
|
|
2495
|
+
];
|
|
2496
|
+
var EntityRecognizerPropertiesList = [1, n0, _ERPL,
|
|
2497
|
+
0, [() => EntityRecognizerProperties$,
|
|
2498
|
+
0]
|
|
2499
|
+
];
|
|
2500
|
+
var EntityRecognizerSummariesList = [1, n0, _ERSL,
|
|
2501
|
+
0, () => EntityRecognizerSummary$
|
|
2502
|
+
];
|
|
2503
|
+
var EntityTypesList = [1, n0, _ETL,
|
|
2504
|
+
0, () => EntityTypesListItem$
|
|
2505
|
+
];
|
|
2506
|
+
var EventsDetectionJobPropertiesList = [1, n0, _EDJPLv,
|
|
2507
|
+
0, () => EventsDetectionJobProperties$
|
|
2508
|
+
];
|
|
2509
|
+
var FlywheelIterationPropertiesList = [1, n0, _FIPL,
|
|
2510
|
+
0, () => FlywheelIterationProperties$
|
|
2511
|
+
];
|
|
2512
|
+
var FlywheelSummaryList = [1, n0, _FSL,
|
|
2513
|
+
0, () => FlywheelSummary$
|
|
2514
|
+
];
|
|
2515
|
+
var KeyPhrasesDetectionJobPropertiesList = [1, n0, _KPDJPL,
|
|
2516
|
+
0, () => KeyPhrasesDetectionJobProperties$
|
|
2517
|
+
];
|
|
2518
|
+
var ListOfBlockReferences = [1, n0, _LOBR,
|
|
2519
|
+
0, () => BlockReference$
|
|
2520
|
+
];
|
|
2521
|
+
var ListOfBlocks = [1, n0, _LOB,
|
|
2522
|
+
0, () => Block$
|
|
2523
|
+
];
|
|
2524
|
+
var ListOfChildBlocks = [1, n0, _LOCB,
|
|
2525
|
+
0, () => ChildBlock$
|
|
2526
|
+
];
|
|
2527
|
+
var ListOfClasses = [1, n0, _LOC,
|
|
2528
|
+
0, () => DocumentClass$
|
|
2529
|
+
];
|
|
2530
|
+
var ListOfDetectDominantLanguageResult = [1, n0, _LODDLR,
|
|
2531
|
+
0, () => BatchDetectDominantLanguageItemResult$
|
|
2532
|
+
];
|
|
2533
|
+
var ListOfDetectEntitiesResult = [1, n0, _LODER,
|
|
2534
|
+
0, () => BatchDetectEntitiesItemResult$
|
|
2535
|
+
];
|
|
2536
|
+
var ListOfDetectKeyPhrasesResult = [1, n0, _LODKPR,
|
|
2537
|
+
0, () => BatchDetectKeyPhrasesItemResult$
|
|
2538
|
+
];
|
|
2539
|
+
var ListOfDetectSentimentResult = [1, n0, _LODSR,
|
|
2540
|
+
0, () => BatchDetectSentimentItemResult$
|
|
2541
|
+
];
|
|
2542
|
+
var ListOfDetectSyntaxResult = [1, n0, _LODSRi,
|
|
2543
|
+
0, () => BatchDetectSyntaxItemResult$
|
|
2544
|
+
];
|
|
2545
|
+
var ListOfDetectTargetedSentimentResult = [1, n0, _LODTSR,
|
|
2546
|
+
0, () => BatchDetectTargetedSentimentItemResult$
|
|
2547
|
+
];
|
|
2548
|
+
var ListOfDocumentType = [1, n0, _LODT,
|
|
2549
|
+
0, () => DocumentTypeListItem$
|
|
2550
|
+
];
|
|
2551
|
+
var ListOfDominantLanguages = [1, n0, _LODL,
|
|
2552
|
+
0, () => DominantLanguage$
|
|
2553
|
+
];
|
|
2554
|
+
var ListOfEntities = [1, n0, _LOE,
|
|
2555
|
+
0, () => Entity$
|
|
2556
|
+
];
|
|
2557
|
+
var ListOfEntityLabels = [1, n0, _LOEL,
|
|
2558
|
+
0, () => EntityLabel$
|
|
2559
|
+
];
|
|
2560
|
+
var ListOfErrors = [1, n0, _LOEi,
|
|
2561
|
+
0, () => ErrorsListItem$
|
|
2562
|
+
];
|
|
2563
|
+
var ListOfExtractedCharacters = [1, n0, _LOEC,
|
|
2564
|
+
0, () => ExtractedCharactersListItem$
|
|
2565
|
+
];
|
|
2566
|
+
var ListOfKeyPhrases = [1, n0, _LOKP,
|
|
2567
|
+
0, () => KeyPhrase$
|
|
2568
|
+
];
|
|
2569
|
+
var ListOfLabels = [1, n0, _LOL,
|
|
2570
|
+
0, () => DocumentLabel$
|
|
2571
|
+
];
|
|
2572
|
+
var ListOfMentions = [1, n0, _LOM,
|
|
2573
|
+
0, () => TargetedSentimentMention$
|
|
2574
|
+
];
|
|
2575
|
+
var ListOfPiiEntities = [1, n0, _LOPE,
|
|
2576
|
+
0, () => PiiEntity$
|
|
2577
|
+
];
|
|
2578
|
+
var ListOfRelationships = [1, n0, _LOR,
|
|
2579
|
+
0, () => RelationshipsListItem$
|
|
2580
|
+
];
|
|
2581
|
+
var ListOfSyntaxTokens = [1, n0, _LOST,
|
|
2582
|
+
0, () => SyntaxToken$
|
|
2583
|
+
];
|
|
2584
|
+
var ListOfTargetedSentimentEntities = [1, n0, _LOTSE,
|
|
2585
|
+
0, () => TargetedSentimentEntity$
|
|
2586
|
+
];
|
|
2587
|
+
var ListOfTextSegments = [1, n0, _LOTS,
|
|
2588
|
+
8, [() => TextSegment$,
|
|
2589
|
+
0]
|
|
2590
|
+
];
|
|
2591
|
+
var ListOfToxicContent = [1, n0, _LOTC,
|
|
2592
|
+
0, () => ToxicContent$
|
|
2593
|
+
];
|
|
2594
|
+
var ListOfToxicLabels = [1, n0, _LOTL,
|
|
2595
|
+
0, () => ToxicLabels$
|
|
2596
|
+
];
|
|
2597
|
+
var ListOfWarnings = [1, n0, _LOW,
|
|
2598
|
+
0, () => WarningsListItem$
|
|
2599
|
+
];
|
|
2600
|
+
var PiiEntitiesDetectionJobPropertiesList = [1, n0, _PEDJPL,
|
|
2601
|
+
0, () => PiiEntitiesDetectionJobProperties$
|
|
2602
|
+
];
|
|
2603
|
+
var Polygon = [1, n0, _Po,
|
|
2604
|
+
0, () => Point$
|
|
2605
|
+
];
|
|
2606
|
+
var SentimentDetectionJobPropertiesList = [1, n0, _SDJPL,
|
|
2607
|
+
0, () => SentimentDetectionJobProperties$
|
|
2608
|
+
];
|
|
2609
|
+
var TagList = [1, n0, _TLa,
|
|
2610
|
+
0, () => Tag$
|
|
2611
|
+
];
|
|
2612
|
+
var TargetedSentimentDetectionJobPropertiesList = [1, n0, _TSDJPL,
|
|
2613
|
+
0, () => TargetedSentimentDetectionJobProperties$
|
|
2614
|
+
];
|
|
2615
|
+
var TopicsDetectionJobPropertiesList = [1, n0, _TDJPL,
|
|
2616
|
+
0, () => TopicsDetectionJobProperties$
|
|
2617
|
+
];
|
|
2618
|
+
var BatchDetectDominantLanguage$ = [9, n0, _BDDL,
|
|
2619
|
+
0, () => BatchDetectDominantLanguageRequest$, () => BatchDetectDominantLanguageResponse$
|
|
2620
|
+
];
|
|
2621
|
+
var BatchDetectEntities$ = [9, n0, _BDE,
|
|
2622
|
+
0, () => BatchDetectEntitiesRequest$, () => BatchDetectEntitiesResponse$
|
|
2623
|
+
];
|
|
2624
|
+
var BatchDetectKeyPhrases$ = [9, n0, _BDKP,
|
|
2625
|
+
0, () => BatchDetectKeyPhrasesRequest$, () => BatchDetectKeyPhrasesResponse$
|
|
2626
|
+
];
|
|
2627
|
+
var BatchDetectSentiment$ = [9, n0, _BDS,
|
|
2628
|
+
0, () => BatchDetectSentimentRequest$, () => BatchDetectSentimentResponse$
|
|
2629
|
+
];
|
|
2630
|
+
var BatchDetectSyntax$ = [9, n0, _BDSa,
|
|
2631
|
+
0, () => BatchDetectSyntaxRequest$, () => BatchDetectSyntaxResponse$
|
|
2632
|
+
];
|
|
2633
|
+
var BatchDetectTargetedSentiment$ = [9, n0, _BDTS,
|
|
2634
|
+
0, () => BatchDetectTargetedSentimentRequest$, () => BatchDetectTargetedSentimentResponse$
|
|
2635
|
+
];
|
|
2636
|
+
var ClassifyDocument$ = [9, n0, _CD,
|
|
2637
|
+
0, () => ClassifyDocumentRequest$, () => ClassifyDocumentResponse$
|
|
2638
|
+
];
|
|
2639
|
+
var ContainsPiiEntities$ = [9, n0, _CPE,
|
|
2640
|
+
0, () => ContainsPiiEntitiesRequest$, () => ContainsPiiEntitiesResponse$
|
|
2641
|
+
];
|
|
2642
|
+
var CreateDataset$ = [9, n0, _CDr,
|
|
2643
|
+
0, () => CreateDatasetRequest$, () => CreateDatasetResponse$
|
|
2644
|
+
];
|
|
2645
|
+
var CreateDocumentClassifier$ = [9, n0, _CDC,
|
|
2646
|
+
0, () => CreateDocumentClassifierRequest$, () => CreateDocumentClassifierResponse$
|
|
2647
|
+
];
|
|
2648
|
+
var CreateEndpoint$ = [9, n0, _CE,
|
|
2649
|
+
0, () => CreateEndpointRequest$, () => CreateEndpointResponse$
|
|
2650
|
+
];
|
|
2651
|
+
var CreateEntityRecognizer$ = [9, n0, _CERre,
|
|
2652
|
+
0, () => CreateEntityRecognizerRequest$, () => CreateEntityRecognizerResponse$
|
|
2653
|
+
];
|
|
2654
|
+
var CreateFlywheel$ = [9, n0, _CF,
|
|
2655
|
+
0, () => CreateFlywheelRequest$, () => CreateFlywheelResponse$
|
|
2656
|
+
];
|
|
2657
|
+
var DeleteDocumentClassifier$ = [9, n0, _DDC,
|
|
2658
|
+
0, () => DeleteDocumentClassifierRequest$, () => DeleteDocumentClassifierResponse$
|
|
2659
|
+
];
|
|
2660
|
+
var DeleteEndpoint$ = [9, n0, _DE,
|
|
2661
|
+
0, () => DeleteEndpointRequest$, () => DeleteEndpointResponse$
|
|
2662
|
+
];
|
|
2663
|
+
var DeleteEntityRecognizer$ = [9, n0, _DERel,
|
|
2664
|
+
0, () => DeleteEntityRecognizerRequest$, () => DeleteEntityRecognizerResponse$
|
|
2665
|
+
];
|
|
2666
|
+
var DeleteFlywheel$ = [9, n0, _DFe,
|
|
2667
|
+
0, () => DeleteFlywheelRequest$, () => DeleteFlywheelResponse$
|
|
2668
|
+
];
|
|
2669
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
2670
|
+
0, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
2671
|
+
];
|
|
2672
|
+
var DescribeDataset$ = [9, n0, _DD,
|
|
2673
|
+
0, () => DescribeDatasetRequest$, () => DescribeDatasetResponse$
|
|
2674
|
+
];
|
|
2675
|
+
var DescribeDocumentClassificationJob$ = [9, n0, _DDCJ,
|
|
2676
|
+
0, () => DescribeDocumentClassificationJobRequest$, () => DescribeDocumentClassificationJobResponse$
|
|
2677
|
+
];
|
|
2678
|
+
var DescribeDocumentClassifier$ = [9, n0, _DDCe,
|
|
2679
|
+
0, () => DescribeDocumentClassifierRequest$, () => DescribeDocumentClassifierResponse$
|
|
2680
|
+
];
|
|
2681
|
+
var DescribeDominantLanguageDetectionJob$ = [9, n0, _DDLDJ,
|
|
2682
|
+
0, () => DescribeDominantLanguageDetectionJobRequest$, () => DescribeDominantLanguageDetectionJobResponse$
|
|
2683
|
+
];
|
|
2684
|
+
var DescribeEndpoint$ = [9, n0, _DEe,
|
|
2685
|
+
0, () => DescribeEndpointRequest$, () => DescribeEndpointResponse$
|
|
2686
|
+
];
|
|
2687
|
+
var DescribeEntitiesDetectionJob$ = [9, n0, _DEDJ,
|
|
2688
|
+
0, () => DescribeEntitiesDetectionJobRequest$, () => DescribeEntitiesDetectionJobResponse$
|
|
2689
|
+
];
|
|
2690
|
+
var DescribeEntityRecognizer$ = [9, n0, _DERescr,
|
|
2691
|
+
0, () => DescribeEntityRecognizerRequest$, () => DescribeEntityRecognizerResponse$
|
|
2692
|
+
];
|
|
2693
|
+
var DescribeEventsDetectionJob$ = [9, n0, _DEDJe,
|
|
2694
|
+
0, () => DescribeEventsDetectionJobRequest$, () => DescribeEventsDetectionJobResponse$
|
|
2695
|
+
];
|
|
2696
|
+
var DescribeFlywheel$ = [9, n0, _DFes,
|
|
2697
|
+
0, () => DescribeFlywheelRequest$, () => DescribeFlywheelResponse$
|
|
2698
|
+
];
|
|
2699
|
+
var DescribeFlywheelIteration$ = [9, n0, _DFI,
|
|
2700
|
+
0, () => DescribeFlywheelIterationRequest$, () => DescribeFlywheelIterationResponse$
|
|
2701
|
+
];
|
|
2702
|
+
var DescribeKeyPhrasesDetectionJob$ = [9, n0, _DKPDJ,
|
|
2703
|
+
0, () => DescribeKeyPhrasesDetectionJobRequest$, () => DescribeKeyPhrasesDetectionJobResponse$
|
|
2704
|
+
];
|
|
2705
|
+
var DescribePiiEntitiesDetectionJob$ = [9, n0, _DPEDJ,
|
|
2706
|
+
0, () => DescribePiiEntitiesDetectionJobRequest$, () => DescribePiiEntitiesDetectionJobResponse$
|
|
2707
|
+
];
|
|
2708
|
+
var DescribeResourcePolicy$ = [9, n0, _DRPe,
|
|
2709
|
+
0, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
|
|
2710
|
+
];
|
|
2711
|
+
var DescribeSentimentDetectionJob$ = [9, n0, _DSDJ,
|
|
2712
|
+
0, () => DescribeSentimentDetectionJobRequest$, () => DescribeSentimentDetectionJobResponse$
|
|
2713
|
+
];
|
|
2714
|
+
var DescribeTargetedSentimentDetectionJob$ = [9, n0, _DTSDJ,
|
|
2715
|
+
0, () => DescribeTargetedSentimentDetectionJobRequest$, () => DescribeTargetedSentimentDetectionJobResponse$
|
|
2716
|
+
];
|
|
2717
|
+
var DescribeTopicsDetectionJob$ = [9, n0, _DTDJ,
|
|
2718
|
+
0, () => DescribeTopicsDetectionJobRequest$, () => DescribeTopicsDetectionJobResponse$
|
|
2719
|
+
];
|
|
2720
|
+
var DetectDominantLanguage$ = [9, n0, _DDL,
|
|
2721
|
+
0, () => DetectDominantLanguageRequest$, () => DetectDominantLanguageResponse$
|
|
2722
|
+
];
|
|
2723
|
+
var DetectEntities$ = [9, n0, _DEet,
|
|
2724
|
+
0, () => DetectEntitiesRequest$, () => DetectEntitiesResponse$
|
|
2725
|
+
];
|
|
2726
|
+
var DetectKeyPhrases$ = [9, n0, _DKP,
|
|
2727
|
+
0, () => DetectKeyPhrasesRequest$, () => DetectKeyPhrasesResponse$
|
|
2728
|
+
];
|
|
2729
|
+
var DetectPiiEntities$ = [9, n0, _DPE,
|
|
2730
|
+
0, () => DetectPiiEntitiesRequest$, () => DetectPiiEntitiesResponse$
|
|
2731
|
+
];
|
|
2732
|
+
var DetectSentiment$ = [9, n0, _DS,
|
|
2733
|
+
0, () => DetectSentimentRequest$, () => DetectSentimentResponse$
|
|
2734
|
+
];
|
|
2735
|
+
var DetectSyntax$ = [9, n0, _DSe,
|
|
2736
|
+
0, () => DetectSyntaxRequest$, () => DetectSyntaxResponse$
|
|
2737
|
+
];
|
|
2738
|
+
var DetectTargetedSentiment$ = [9, n0, _DTS,
|
|
2739
|
+
0, () => DetectTargetedSentimentRequest$, () => DetectTargetedSentimentResponse$
|
|
2740
|
+
];
|
|
2741
|
+
var DetectToxicContent$ = [9, n0, _DTC,
|
|
2742
|
+
0, () => DetectToxicContentRequest$, () => DetectToxicContentResponse$
|
|
2743
|
+
];
|
|
2744
|
+
var ImportModel$ = [9, n0, _IM,
|
|
2745
|
+
0, () => ImportModelRequest$, () => ImportModelResponse$
|
|
2746
|
+
];
|
|
2747
|
+
var ListDatasets$ = [9, n0, _LDi,
|
|
2748
|
+
0, () => ListDatasetsRequest$, () => ListDatasetsResponse$
|
|
2749
|
+
];
|
|
2750
|
+
var ListDocumentClassificationJobs$ = [9, n0, _LDCJ,
|
|
2751
|
+
0, () => ListDocumentClassificationJobsRequest$, () => ListDocumentClassificationJobsResponse$
|
|
2752
|
+
];
|
|
2753
|
+
var ListDocumentClassifiers$ = [9, n0, _LDC,
|
|
2754
|
+
0, () => ListDocumentClassifiersRequest$, () => ListDocumentClassifiersResponse$
|
|
2755
|
+
];
|
|
2756
|
+
var ListDocumentClassifierSummaries$ = [9, n0, _LDCS,
|
|
2757
|
+
0, () => ListDocumentClassifierSummariesRequest$, () => ListDocumentClassifierSummariesResponse$
|
|
2758
|
+
];
|
|
2759
|
+
var ListDominantLanguageDetectionJobs$ = [9, n0, _LDLDJ,
|
|
2760
|
+
0, () => ListDominantLanguageDetectionJobsRequest$, () => ListDominantLanguageDetectionJobsResponse$
|
|
2761
|
+
];
|
|
2762
|
+
var ListEndpoints$ = [9, n0, _LE,
|
|
2763
|
+
0, () => ListEndpointsRequest$, () => ListEndpointsResponse$
|
|
2764
|
+
];
|
|
2765
|
+
var ListEntitiesDetectionJobs$ = [9, n0, _LEDJ,
|
|
2766
|
+
0, () => ListEntitiesDetectionJobsRequest$, () => ListEntitiesDetectionJobsResponse$
|
|
2767
|
+
];
|
|
2768
|
+
var ListEntityRecognizers$ = [9, n0, _LERis,
|
|
2769
|
+
0, () => ListEntityRecognizersRequest$, () => ListEntityRecognizersResponse$
|
|
2770
|
+
];
|
|
2771
|
+
var ListEntityRecognizerSummaries$ = [9, n0, _LERS,
|
|
2772
|
+
0, () => ListEntityRecognizerSummariesRequest$, () => ListEntityRecognizerSummariesResponse$
|
|
2773
|
+
];
|
|
2774
|
+
var ListEventsDetectionJobs$ = [9, n0, _LEDJi,
|
|
2775
|
+
0, () => ListEventsDetectionJobsRequest$, () => ListEventsDetectionJobsResponse$
|
|
2776
|
+
];
|
|
2777
|
+
var ListFlywheelIterationHistory$ = [9, n0, _LFIH,
|
|
2778
|
+
0, () => ListFlywheelIterationHistoryRequest$, () => ListFlywheelIterationHistoryResponse$
|
|
2779
|
+
];
|
|
2780
|
+
var ListFlywheels$ = [9, n0, _LF,
|
|
2781
|
+
0, () => ListFlywheelsRequest$, () => ListFlywheelsResponse$
|
|
2782
|
+
];
|
|
2783
|
+
var ListKeyPhrasesDetectionJobs$ = [9, n0, _LKPDJ,
|
|
2784
|
+
0, () => ListKeyPhrasesDetectionJobsRequest$, () => ListKeyPhrasesDetectionJobsResponse$
|
|
2785
|
+
];
|
|
2786
|
+
var ListPiiEntitiesDetectionJobs$ = [9, n0, _LPEDJ,
|
|
2787
|
+
0, () => ListPiiEntitiesDetectionJobsRequest$, () => ListPiiEntitiesDetectionJobsResponse$
|
|
2788
|
+
];
|
|
2789
|
+
var ListSentimentDetectionJobs$ = [9, n0, _LSDJ,
|
|
2790
|
+
0, () => ListSentimentDetectionJobsRequest$, () => ListSentimentDetectionJobsResponse$
|
|
2791
|
+
];
|
|
2792
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2793
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2794
|
+
];
|
|
2795
|
+
var ListTargetedSentimentDetectionJobs$ = [9, n0, _LTSDJ,
|
|
2796
|
+
0, () => ListTargetedSentimentDetectionJobsRequest$, () => ListTargetedSentimentDetectionJobsResponse$
|
|
2797
|
+
];
|
|
2798
|
+
var ListTopicsDetectionJobs$ = [9, n0, _LTDJ,
|
|
2799
|
+
0, () => ListTopicsDetectionJobsRequest$, () => ListTopicsDetectionJobsResponse$
|
|
2800
|
+
];
|
|
2801
|
+
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
2802
|
+
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
2803
|
+
];
|
|
2804
|
+
var StartDocumentClassificationJob$ = [9, n0, _SDCJ,
|
|
2805
|
+
0, () => StartDocumentClassificationJobRequest$, () => StartDocumentClassificationJobResponse$
|
|
2806
|
+
];
|
|
2807
|
+
var StartDominantLanguageDetectionJob$ = [9, n0, _SDLDJ,
|
|
2808
|
+
0, () => StartDominantLanguageDetectionJobRequest$, () => StartDominantLanguageDetectionJobResponse$
|
|
2809
|
+
];
|
|
2810
|
+
var StartEntitiesDetectionJob$ = [9, n0, _SEDJ,
|
|
2811
|
+
0, () => StartEntitiesDetectionJobRequest$, () => StartEntitiesDetectionJobResponse$
|
|
2812
|
+
];
|
|
2813
|
+
var StartEventsDetectionJob$ = [9, n0, _SEDJt,
|
|
2814
|
+
0, () => StartEventsDetectionJobRequest$, () => StartEventsDetectionJobResponse$
|
|
2815
|
+
];
|
|
2816
|
+
var StartFlywheelIteration$ = [9, n0, _SFI,
|
|
2817
|
+
0, () => StartFlywheelIterationRequest$, () => StartFlywheelIterationResponse$
|
|
2818
|
+
];
|
|
2819
|
+
var StartKeyPhrasesDetectionJob$ = [9, n0, _SKPDJ,
|
|
2820
|
+
0, () => StartKeyPhrasesDetectionJobRequest$, () => StartKeyPhrasesDetectionJobResponse$
|
|
2821
|
+
];
|
|
2822
|
+
var StartPiiEntitiesDetectionJob$ = [9, n0, _SPEDJ,
|
|
2823
|
+
0, () => StartPiiEntitiesDetectionJobRequest$, () => StartPiiEntitiesDetectionJobResponse$
|
|
2824
|
+
];
|
|
2825
|
+
var StartSentimentDetectionJob$ = [9, n0, _SSDJ,
|
|
2826
|
+
0, () => StartSentimentDetectionJobRequest$, () => StartSentimentDetectionJobResponse$
|
|
2827
|
+
];
|
|
2828
|
+
var StartTargetedSentimentDetectionJob$ = [9, n0, _STSDJ,
|
|
2829
|
+
0, () => StartTargetedSentimentDetectionJobRequest$, () => StartTargetedSentimentDetectionJobResponse$
|
|
2830
|
+
];
|
|
2831
|
+
var StartTopicsDetectionJob$ = [9, n0, _STDJ,
|
|
2832
|
+
0, () => StartTopicsDetectionJobRequest$, () => StartTopicsDetectionJobResponse$
|
|
2833
|
+
];
|
|
2834
|
+
var StopDominantLanguageDetectionJob$ = [9, n0, _SDLDJt,
|
|
2835
|
+
0, () => StopDominantLanguageDetectionJobRequest$, () => StopDominantLanguageDetectionJobResponse$
|
|
2836
|
+
];
|
|
2837
|
+
var StopEntitiesDetectionJob$ = [9, n0, _SEDJto,
|
|
2838
|
+
0, () => StopEntitiesDetectionJobRequest$, () => StopEntitiesDetectionJobResponse$
|
|
2839
|
+
];
|
|
2840
|
+
var StopEventsDetectionJob$ = [9, n0, _SEDJtop,
|
|
2841
|
+
0, () => StopEventsDetectionJobRequest$, () => StopEventsDetectionJobResponse$
|
|
2842
|
+
];
|
|
2843
|
+
var StopKeyPhrasesDetectionJob$ = [9, n0, _SKPDJt,
|
|
2844
|
+
0, () => StopKeyPhrasesDetectionJobRequest$, () => StopKeyPhrasesDetectionJobResponse$
|
|
2845
|
+
];
|
|
2846
|
+
var StopPiiEntitiesDetectionJob$ = [9, n0, _SPEDJt,
|
|
2847
|
+
0, () => StopPiiEntitiesDetectionJobRequest$, () => StopPiiEntitiesDetectionJobResponse$
|
|
2848
|
+
];
|
|
2849
|
+
var StopSentimentDetectionJob$ = [9, n0, _SSDJt,
|
|
2850
|
+
0, () => StopSentimentDetectionJobRequest$, () => StopSentimentDetectionJobResponse$
|
|
2851
|
+
];
|
|
2852
|
+
var StopTargetedSentimentDetectionJob$ = [9, n0, _STSDJt,
|
|
2853
|
+
0, () => StopTargetedSentimentDetectionJobRequest$, () => StopTargetedSentimentDetectionJobResponse$
|
|
2854
|
+
];
|
|
2855
|
+
var StopTrainingDocumentClassifier$ = [9, n0, _STDC,
|
|
2856
|
+
0, () => StopTrainingDocumentClassifierRequest$, () => StopTrainingDocumentClassifierResponse$
|
|
2857
|
+
];
|
|
2858
|
+
var StopTrainingEntityRecognizer$ = [9, n0, _STER,
|
|
2859
|
+
0, () => StopTrainingEntityRecognizerRequest$, () => StopTrainingEntityRecognizerResponse$
|
|
2860
|
+
];
|
|
2861
|
+
var TagResource$ = [9, n0, _TR,
|
|
2862
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2863
|
+
];
|
|
2864
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2865
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2866
|
+
];
|
|
2867
|
+
var UpdateEndpoint$ = [9, n0, _UE,
|
|
2868
|
+
0, () => UpdateEndpointRequest$, () => UpdateEndpointResponse$
|
|
2869
|
+
];
|
|
2870
|
+
var UpdateFlywheel$ = [9, n0, _UF,
|
|
2871
|
+
0, () => UpdateFlywheelRequest$, () => UpdateFlywheelResponse$
|
|
2872
|
+
];
|
|
2873
|
+
|
|
2874
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2875
|
+
return {
|
|
2876
|
+
apiVersion: "2017-11-27",
|
|
2877
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2878
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2879
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2880
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2881
|
+
extensions: config?.extensions ?? [],
|
|
2882
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultComprehendHttpAuthSchemeProvider,
|
|
2883
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2884
|
+
{
|
|
2885
|
+
schemeId: "aws.auth#sigv4",
|
|
2886
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2887
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2888
|
+
},
|
|
2889
|
+
],
|
|
2890
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2891
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2892
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2893
|
+
defaultNamespace: "com.amazonaws.comprehend",
|
|
2894
|
+
errorTypeRegistries,
|
|
2895
|
+
version: "2017-11-27",
|
|
2896
|
+
serviceTarget: "Comprehend_20171127",
|
|
2897
|
+
},
|
|
2898
|
+
serviceId: config?.serviceId ?? "Comprehend",
|
|
2899
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2900
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2901
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2902
|
+
};
|
|
2903
|
+
};
|
|
2904
|
+
|
|
2905
|
+
const getRuntimeConfig = (config) => {
|
|
2906
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2907
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2908
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2909
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2910
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2911
|
+
const loaderConfig = {
|
|
2912
|
+
profile: config?.profile,
|
|
2913
|
+
logger: clientSharedValues.logger,
|
|
2914
|
+
};
|
|
2915
|
+
return {
|
|
2916
|
+
...clientSharedValues,
|
|
2917
|
+
...config,
|
|
2918
|
+
runtime: "node",
|
|
2919
|
+
defaultsMode,
|
|
2920
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2921
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2922
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2923
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2924
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2925
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2926
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2927
|
+
retryMode: config?.retryMode ??
|
|
2928
|
+
loadConfig({
|
|
2929
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2930
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2931
|
+
}, config),
|
|
2932
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2933
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2934
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2935
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2936
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2937
|
+
};
|
|
2938
|
+
};
|
|
2939
|
+
|
|
34
2940
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2941
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2942
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1544,128 +4450,523 @@ const ToxicContentType = {
|
|
|
1544
4450
|
};
|
|
1545
4451
|
|
|
1546
4452
|
exports.AugmentedManifestsDocumentTypeFormat = AugmentedManifestsDocumentTypeFormat;
|
|
4453
|
+
exports.AugmentedManifestsListItem$ = AugmentedManifestsListItem$;
|
|
4454
|
+
exports.BatchDetectDominantLanguage$ = BatchDetectDominantLanguage$;
|
|
1547
4455
|
exports.BatchDetectDominantLanguageCommand = BatchDetectDominantLanguageCommand;
|
|
4456
|
+
exports.BatchDetectDominantLanguageItemResult$ = BatchDetectDominantLanguageItemResult$;
|
|
4457
|
+
exports.BatchDetectDominantLanguageRequest$ = BatchDetectDominantLanguageRequest$;
|
|
4458
|
+
exports.BatchDetectDominantLanguageResponse$ = BatchDetectDominantLanguageResponse$;
|
|
4459
|
+
exports.BatchDetectEntities$ = BatchDetectEntities$;
|
|
1548
4460
|
exports.BatchDetectEntitiesCommand = BatchDetectEntitiesCommand;
|
|
4461
|
+
exports.BatchDetectEntitiesItemResult$ = BatchDetectEntitiesItemResult$;
|
|
4462
|
+
exports.BatchDetectEntitiesRequest$ = BatchDetectEntitiesRequest$;
|
|
4463
|
+
exports.BatchDetectEntitiesResponse$ = BatchDetectEntitiesResponse$;
|
|
4464
|
+
exports.BatchDetectKeyPhrases$ = BatchDetectKeyPhrases$;
|
|
1549
4465
|
exports.BatchDetectKeyPhrasesCommand = BatchDetectKeyPhrasesCommand;
|
|
4466
|
+
exports.BatchDetectKeyPhrasesItemResult$ = BatchDetectKeyPhrasesItemResult$;
|
|
4467
|
+
exports.BatchDetectKeyPhrasesRequest$ = BatchDetectKeyPhrasesRequest$;
|
|
4468
|
+
exports.BatchDetectKeyPhrasesResponse$ = BatchDetectKeyPhrasesResponse$;
|
|
4469
|
+
exports.BatchDetectSentiment$ = BatchDetectSentiment$;
|
|
1550
4470
|
exports.BatchDetectSentimentCommand = BatchDetectSentimentCommand;
|
|
4471
|
+
exports.BatchDetectSentimentItemResult$ = BatchDetectSentimentItemResult$;
|
|
4472
|
+
exports.BatchDetectSentimentRequest$ = BatchDetectSentimentRequest$;
|
|
4473
|
+
exports.BatchDetectSentimentResponse$ = BatchDetectSentimentResponse$;
|
|
4474
|
+
exports.BatchDetectSyntax$ = BatchDetectSyntax$;
|
|
1551
4475
|
exports.BatchDetectSyntaxCommand = BatchDetectSyntaxCommand;
|
|
4476
|
+
exports.BatchDetectSyntaxItemResult$ = BatchDetectSyntaxItemResult$;
|
|
4477
|
+
exports.BatchDetectSyntaxRequest$ = BatchDetectSyntaxRequest$;
|
|
4478
|
+
exports.BatchDetectSyntaxResponse$ = BatchDetectSyntaxResponse$;
|
|
4479
|
+
exports.BatchDetectTargetedSentiment$ = BatchDetectTargetedSentiment$;
|
|
1552
4480
|
exports.BatchDetectTargetedSentimentCommand = BatchDetectTargetedSentimentCommand;
|
|
4481
|
+
exports.BatchDetectTargetedSentimentItemResult$ = BatchDetectTargetedSentimentItemResult$;
|
|
4482
|
+
exports.BatchDetectTargetedSentimentRequest$ = BatchDetectTargetedSentimentRequest$;
|
|
4483
|
+
exports.BatchDetectTargetedSentimentResponse$ = BatchDetectTargetedSentimentResponse$;
|
|
4484
|
+
exports.BatchItemError$ = BatchItemError$;
|
|
4485
|
+
exports.BatchSizeLimitExceededException = BatchSizeLimitExceededException;
|
|
4486
|
+
exports.BatchSizeLimitExceededException$ = BatchSizeLimitExceededException$;
|
|
4487
|
+
exports.Block$ = Block$;
|
|
4488
|
+
exports.BlockReference$ = BlockReference$;
|
|
1553
4489
|
exports.BlockType = BlockType;
|
|
4490
|
+
exports.BoundingBox$ = BoundingBox$;
|
|
4491
|
+
exports.ChildBlock$ = ChildBlock$;
|
|
4492
|
+
exports.ClassifierEvaluationMetrics$ = ClassifierEvaluationMetrics$;
|
|
4493
|
+
exports.ClassifierMetadata$ = ClassifierMetadata$;
|
|
4494
|
+
exports.ClassifyDocument$ = ClassifyDocument$;
|
|
1554
4495
|
exports.ClassifyDocumentCommand = ClassifyDocumentCommand;
|
|
4496
|
+
exports.ClassifyDocumentRequest$ = ClassifyDocumentRequest$;
|
|
4497
|
+
exports.ClassifyDocumentResponse$ = ClassifyDocumentResponse$;
|
|
1555
4498
|
exports.Comprehend = Comprehend;
|
|
1556
4499
|
exports.ComprehendClient = ComprehendClient;
|
|
4500
|
+
exports.ComprehendServiceException = ComprehendServiceException;
|
|
4501
|
+
exports.ComprehendServiceException$ = ComprehendServiceException$;
|
|
4502
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
4503
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
4504
|
+
exports.ContainsPiiEntities$ = ContainsPiiEntities$;
|
|
1557
4505
|
exports.ContainsPiiEntitiesCommand = ContainsPiiEntitiesCommand;
|
|
4506
|
+
exports.ContainsPiiEntitiesRequest$ = ContainsPiiEntitiesRequest$;
|
|
4507
|
+
exports.ContainsPiiEntitiesResponse$ = ContainsPiiEntitiesResponse$;
|
|
4508
|
+
exports.CreateDataset$ = CreateDataset$;
|
|
1558
4509
|
exports.CreateDatasetCommand = CreateDatasetCommand;
|
|
4510
|
+
exports.CreateDatasetRequest$ = CreateDatasetRequest$;
|
|
4511
|
+
exports.CreateDatasetResponse$ = CreateDatasetResponse$;
|
|
4512
|
+
exports.CreateDocumentClassifier$ = CreateDocumentClassifier$;
|
|
1559
4513
|
exports.CreateDocumentClassifierCommand = CreateDocumentClassifierCommand;
|
|
4514
|
+
exports.CreateDocumentClassifierRequest$ = CreateDocumentClassifierRequest$;
|
|
4515
|
+
exports.CreateDocumentClassifierResponse$ = CreateDocumentClassifierResponse$;
|
|
4516
|
+
exports.CreateEndpoint$ = CreateEndpoint$;
|
|
1560
4517
|
exports.CreateEndpointCommand = CreateEndpointCommand;
|
|
4518
|
+
exports.CreateEndpointRequest$ = CreateEndpointRequest$;
|
|
4519
|
+
exports.CreateEndpointResponse$ = CreateEndpointResponse$;
|
|
4520
|
+
exports.CreateEntityRecognizer$ = CreateEntityRecognizer$;
|
|
1561
4521
|
exports.CreateEntityRecognizerCommand = CreateEntityRecognizerCommand;
|
|
4522
|
+
exports.CreateEntityRecognizerRequest$ = CreateEntityRecognizerRequest$;
|
|
4523
|
+
exports.CreateEntityRecognizerResponse$ = CreateEntityRecognizerResponse$;
|
|
4524
|
+
exports.CreateFlywheel$ = CreateFlywheel$;
|
|
1562
4525
|
exports.CreateFlywheelCommand = CreateFlywheelCommand;
|
|
4526
|
+
exports.CreateFlywheelRequest$ = CreateFlywheelRequest$;
|
|
4527
|
+
exports.CreateFlywheelResponse$ = CreateFlywheelResponse$;
|
|
4528
|
+
exports.DataSecurityConfig$ = DataSecurityConfig$;
|
|
4529
|
+
exports.DatasetAugmentedManifestsListItem$ = DatasetAugmentedManifestsListItem$;
|
|
1563
4530
|
exports.DatasetDataFormat = DatasetDataFormat;
|
|
4531
|
+
exports.DatasetDocumentClassifierInputDataConfig$ = DatasetDocumentClassifierInputDataConfig$;
|
|
4532
|
+
exports.DatasetEntityRecognizerAnnotations$ = DatasetEntityRecognizerAnnotations$;
|
|
4533
|
+
exports.DatasetEntityRecognizerDocuments$ = DatasetEntityRecognizerDocuments$;
|
|
4534
|
+
exports.DatasetEntityRecognizerEntityList$ = DatasetEntityRecognizerEntityList$;
|
|
4535
|
+
exports.DatasetEntityRecognizerInputDataConfig$ = DatasetEntityRecognizerInputDataConfig$;
|
|
4536
|
+
exports.DatasetFilter$ = DatasetFilter$;
|
|
4537
|
+
exports.DatasetInputDataConfig$ = DatasetInputDataConfig$;
|
|
4538
|
+
exports.DatasetProperties$ = DatasetProperties$;
|
|
1564
4539
|
exports.DatasetStatus = DatasetStatus;
|
|
1565
4540
|
exports.DatasetType = DatasetType;
|
|
4541
|
+
exports.DeleteDocumentClassifier$ = DeleteDocumentClassifier$;
|
|
1566
4542
|
exports.DeleteDocumentClassifierCommand = DeleteDocumentClassifierCommand;
|
|
4543
|
+
exports.DeleteDocumentClassifierRequest$ = DeleteDocumentClassifierRequest$;
|
|
4544
|
+
exports.DeleteDocumentClassifierResponse$ = DeleteDocumentClassifierResponse$;
|
|
4545
|
+
exports.DeleteEndpoint$ = DeleteEndpoint$;
|
|
1567
4546
|
exports.DeleteEndpointCommand = DeleteEndpointCommand;
|
|
4547
|
+
exports.DeleteEndpointRequest$ = DeleteEndpointRequest$;
|
|
4548
|
+
exports.DeleteEndpointResponse$ = DeleteEndpointResponse$;
|
|
4549
|
+
exports.DeleteEntityRecognizer$ = DeleteEntityRecognizer$;
|
|
1568
4550
|
exports.DeleteEntityRecognizerCommand = DeleteEntityRecognizerCommand;
|
|
4551
|
+
exports.DeleteEntityRecognizerRequest$ = DeleteEntityRecognizerRequest$;
|
|
4552
|
+
exports.DeleteEntityRecognizerResponse$ = DeleteEntityRecognizerResponse$;
|
|
4553
|
+
exports.DeleteFlywheel$ = DeleteFlywheel$;
|
|
1569
4554
|
exports.DeleteFlywheelCommand = DeleteFlywheelCommand;
|
|
4555
|
+
exports.DeleteFlywheelRequest$ = DeleteFlywheelRequest$;
|
|
4556
|
+
exports.DeleteFlywheelResponse$ = DeleteFlywheelResponse$;
|
|
4557
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1570
4558
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
4559
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
4560
|
+
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
4561
|
+
exports.DescribeDataset$ = DescribeDataset$;
|
|
1571
4562
|
exports.DescribeDatasetCommand = DescribeDatasetCommand;
|
|
4563
|
+
exports.DescribeDatasetRequest$ = DescribeDatasetRequest$;
|
|
4564
|
+
exports.DescribeDatasetResponse$ = DescribeDatasetResponse$;
|
|
4565
|
+
exports.DescribeDocumentClassificationJob$ = DescribeDocumentClassificationJob$;
|
|
1572
4566
|
exports.DescribeDocumentClassificationJobCommand = DescribeDocumentClassificationJobCommand;
|
|
4567
|
+
exports.DescribeDocumentClassificationJobRequest$ = DescribeDocumentClassificationJobRequest$;
|
|
4568
|
+
exports.DescribeDocumentClassificationJobResponse$ = DescribeDocumentClassificationJobResponse$;
|
|
4569
|
+
exports.DescribeDocumentClassifier$ = DescribeDocumentClassifier$;
|
|
1573
4570
|
exports.DescribeDocumentClassifierCommand = DescribeDocumentClassifierCommand;
|
|
4571
|
+
exports.DescribeDocumentClassifierRequest$ = DescribeDocumentClassifierRequest$;
|
|
4572
|
+
exports.DescribeDocumentClassifierResponse$ = DescribeDocumentClassifierResponse$;
|
|
4573
|
+
exports.DescribeDominantLanguageDetectionJob$ = DescribeDominantLanguageDetectionJob$;
|
|
1574
4574
|
exports.DescribeDominantLanguageDetectionJobCommand = DescribeDominantLanguageDetectionJobCommand;
|
|
4575
|
+
exports.DescribeDominantLanguageDetectionJobRequest$ = DescribeDominantLanguageDetectionJobRequest$;
|
|
4576
|
+
exports.DescribeDominantLanguageDetectionJobResponse$ = DescribeDominantLanguageDetectionJobResponse$;
|
|
4577
|
+
exports.DescribeEndpoint$ = DescribeEndpoint$;
|
|
1575
4578
|
exports.DescribeEndpointCommand = DescribeEndpointCommand;
|
|
4579
|
+
exports.DescribeEndpointRequest$ = DescribeEndpointRequest$;
|
|
4580
|
+
exports.DescribeEndpointResponse$ = DescribeEndpointResponse$;
|
|
4581
|
+
exports.DescribeEntitiesDetectionJob$ = DescribeEntitiesDetectionJob$;
|
|
1576
4582
|
exports.DescribeEntitiesDetectionJobCommand = DescribeEntitiesDetectionJobCommand;
|
|
4583
|
+
exports.DescribeEntitiesDetectionJobRequest$ = DescribeEntitiesDetectionJobRequest$;
|
|
4584
|
+
exports.DescribeEntitiesDetectionJobResponse$ = DescribeEntitiesDetectionJobResponse$;
|
|
4585
|
+
exports.DescribeEntityRecognizer$ = DescribeEntityRecognizer$;
|
|
1577
4586
|
exports.DescribeEntityRecognizerCommand = DescribeEntityRecognizerCommand;
|
|
4587
|
+
exports.DescribeEntityRecognizerRequest$ = DescribeEntityRecognizerRequest$;
|
|
4588
|
+
exports.DescribeEntityRecognizerResponse$ = DescribeEntityRecognizerResponse$;
|
|
4589
|
+
exports.DescribeEventsDetectionJob$ = DescribeEventsDetectionJob$;
|
|
1578
4590
|
exports.DescribeEventsDetectionJobCommand = DescribeEventsDetectionJobCommand;
|
|
4591
|
+
exports.DescribeEventsDetectionJobRequest$ = DescribeEventsDetectionJobRequest$;
|
|
4592
|
+
exports.DescribeEventsDetectionJobResponse$ = DescribeEventsDetectionJobResponse$;
|
|
4593
|
+
exports.DescribeFlywheel$ = DescribeFlywheel$;
|
|
1579
4594
|
exports.DescribeFlywheelCommand = DescribeFlywheelCommand;
|
|
4595
|
+
exports.DescribeFlywheelIteration$ = DescribeFlywheelIteration$;
|
|
1580
4596
|
exports.DescribeFlywheelIterationCommand = DescribeFlywheelIterationCommand;
|
|
4597
|
+
exports.DescribeFlywheelIterationRequest$ = DescribeFlywheelIterationRequest$;
|
|
4598
|
+
exports.DescribeFlywheelIterationResponse$ = DescribeFlywheelIterationResponse$;
|
|
4599
|
+
exports.DescribeFlywheelRequest$ = DescribeFlywheelRequest$;
|
|
4600
|
+
exports.DescribeFlywheelResponse$ = DescribeFlywheelResponse$;
|
|
4601
|
+
exports.DescribeKeyPhrasesDetectionJob$ = DescribeKeyPhrasesDetectionJob$;
|
|
1581
4602
|
exports.DescribeKeyPhrasesDetectionJobCommand = DescribeKeyPhrasesDetectionJobCommand;
|
|
4603
|
+
exports.DescribeKeyPhrasesDetectionJobRequest$ = DescribeKeyPhrasesDetectionJobRequest$;
|
|
4604
|
+
exports.DescribeKeyPhrasesDetectionJobResponse$ = DescribeKeyPhrasesDetectionJobResponse$;
|
|
4605
|
+
exports.DescribePiiEntitiesDetectionJob$ = DescribePiiEntitiesDetectionJob$;
|
|
1582
4606
|
exports.DescribePiiEntitiesDetectionJobCommand = DescribePiiEntitiesDetectionJobCommand;
|
|
4607
|
+
exports.DescribePiiEntitiesDetectionJobRequest$ = DescribePiiEntitiesDetectionJobRequest$;
|
|
4608
|
+
exports.DescribePiiEntitiesDetectionJobResponse$ = DescribePiiEntitiesDetectionJobResponse$;
|
|
4609
|
+
exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
|
|
1583
4610
|
exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
|
|
4611
|
+
exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
|
|
4612
|
+
exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
|
|
4613
|
+
exports.DescribeSentimentDetectionJob$ = DescribeSentimentDetectionJob$;
|
|
1584
4614
|
exports.DescribeSentimentDetectionJobCommand = DescribeSentimentDetectionJobCommand;
|
|
4615
|
+
exports.DescribeSentimentDetectionJobRequest$ = DescribeSentimentDetectionJobRequest$;
|
|
4616
|
+
exports.DescribeSentimentDetectionJobResponse$ = DescribeSentimentDetectionJobResponse$;
|
|
4617
|
+
exports.DescribeTargetedSentimentDetectionJob$ = DescribeTargetedSentimentDetectionJob$;
|
|
1585
4618
|
exports.DescribeTargetedSentimentDetectionJobCommand = DescribeTargetedSentimentDetectionJobCommand;
|
|
4619
|
+
exports.DescribeTargetedSentimentDetectionJobRequest$ = DescribeTargetedSentimentDetectionJobRequest$;
|
|
4620
|
+
exports.DescribeTargetedSentimentDetectionJobResponse$ = DescribeTargetedSentimentDetectionJobResponse$;
|
|
4621
|
+
exports.DescribeTopicsDetectionJob$ = DescribeTopicsDetectionJob$;
|
|
1586
4622
|
exports.DescribeTopicsDetectionJobCommand = DescribeTopicsDetectionJobCommand;
|
|
4623
|
+
exports.DescribeTopicsDetectionJobRequest$ = DescribeTopicsDetectionJobRequest$;
|
|
4624
|
+
exports.DescribeTopicsDetectionJobResponse$ = DescribeTopicsDetectionJobResponse$;
|
|
4625
|
+
exports.DetectDominantLanguage$ = DetectDominantLanguage$;
|
|
1587
4626
|
exports.DetectDominantLanguageCommand = DetectDominantLanguageCommand;
|
|
4627
|
+
exports.DetectDominantLanguageRequest$ = DetectDominantLanguageRequest$;
|
|
4628
|
+
exports.DetectDominantLanguageResponse$ = DetectDominantLanguageResponse$;
|
|
4629
|
+
exports.DetectEntities$ = DetectEntities$;
|
|
1588
4630
|
exports.DetectEntitiesCommand = DetectEntitiesCommand;
|
|
4631
|
+
exports.DetectEntitiesRequest$ = DetectEntitiesRequest$;
|
|
4632
|
+
exports.DetectEntitiesResponse$ = DetectEntitiesResponse$;
|
|
4633
|
+
exports.DetectKeyPhrases$ = DetectKeyPhrases$;
|
|
1589
4634
|
exports.DetectKeyPhrasesCommand = DetectKeyPhrasesCommand;
|
|
4635
|
+
exports.DetectKeyPhrasesRequest$ = DetectKeyPhrasesRequest$;
|
|
4636
|
+
exports.DetectKeyPhrasesResponse$ = DetectKeyPhrasesResponse$;
|
|
4637
|
+
exports.DetectPiiEntities$ = DetectPiiEntities$;
|
|
1590
4638
|
exports.DetectPiiEntitiesCommand = DetectPiiEntitiesCommand;
|
|
4639
|
+
exports.DetectPiiEntitiesRequest$ = DetectPiiEntitiesRequest$;
|
|
4640
|
+
exports.DetectPiiEntitiesResponse$ = DetectPiiEntitiesResponse$;
|
|
4641
|
+
exports.DetectSentiment$ = DetectSentiment$;
|
|
1591
4642
|
exports.DetectSentimentCommand = DetectSentimentCommand;
|
|
4643
|
+
exports.DetectSentimentRequest$ = DetectSentimentRequest$;
|
|
4644
|
+
exports.DetectSentimentResponse$ = DetectSentimentResponse$;
|
|
4645
|
+
exports.DetectSyntax$ = DetectSyntax$;
|
|
1592
4646
|
exports.DetectSyntaxCommand = DetectSyntaxCommand;
|
|
4647
|
+
exports.DetectSyntaxRequest$ = DetectSyntaxRequest$;
|
|
4648
|
+
exports.DetectSyntaxResponse$ = DetectSyntaxResponse$;
|
|
4649
|
+
exports.DetectTargetedSentiment$ = DetectTargetedSentiment$;
|
|
1593
4650
|
exports.DetectTargetedSentimentCommand = DetectTargetedSentimentCommand;
|
|
4651
|
+
exports.DetectTargetedSentimentRequest$ = DetectTargetedSentimentRequest$;
|
|
4652
|
+
exports.DetectTargetedSentimentResponse$ = DetectTargetedSentimentResponse$;
|
|
4653
|
+
exports.DetectToxicContent$ = DetectToxicContent$;
|
|
1594
4654
|
exports.DetectToxicContentCommand = DetectToxicContentCommand;
|
|
4655
|
+
exports.DetectToxicContentRequest$ = DetectToxicContentRequest$;
|
|
4656
|
+
exports.DetectToxicContentResponse$ = DetectToxicContentResponse$;
|
|
4657
|
+
exports.DocumentClass$ = DocumentClass$;
|
|
4658
|
+
exports.DocumentClassificationConfig$ = DocumentClassificationConfig$;
|
|
4659
|
+
exports.DocumentClassificationJobFilter$ = DocumentClassificationJobFilter$;
|
|
4660
|
+
exports.DocumentClassificationJobProperties$ = DocumentClassificationJobProperties$;
|
|
1595
4661
|
exports.DocumentClassifierDataFormat = DocumentClassifierDataFormat;
|
|
1596
4662
|
exports.DocumentClassifierDocumentTypeFormat = DocumentClassifierDocumentTypeFormat;
|
|
4663
|
+
exports.DocumentClassifierDocuments$ = DocumentClassifierDocuments$;
|
|
4664
|
+
exports.DocumentClassifierFilter$ = DocumentClassifierFilter$;
|
|
4665
|
+
exports.DocumentClassifierInputDataConfig$ = DocumentClassifierInputDataConfig$;
|
|
1597
4666
|
exports.DocumentClassifierMode = DocumentClassifierMode;
|
|
4667
|
+
exports.DocumentClassifierOutputDataConfig$ = DocumentClassifierOutputDataConfig$;
|
|
4668
|
+
exports.DocumentClassifierProperties$ = DocumentClassifierProperties$;
|
|
4669
|
+
exports.DocumentClassifierSummary$ = DocumentClassifierSummary$;
|
|
4670
|
+
exports.DocumentLabel$ = DocumentLabel$;
|
|
4671
|
+
exports.DocumentMetadata$ = DocumentMetadata$;
|
|
1598
4672
|
exports.DocumentReadAction = DocumentReadAction;
|
|
1599
4673
|
exports.DocumentReadFeatureTypes = DocumentReadFeatureTypes;
|
|
1600
4674
|
exports.DocumentReadMode = DocumentReadMode;
|
|
4675
|
+
exports.DocumentReaderConfig$ = DocumentReaderConfig$;
|
|
1601
4676
|
exports.DocumentType = DocumentType;
|
|
4677
|
+
exports.DocumentTypeListItem$ = DocumentTypeListItem$;
|
|
4678
|
+
exports.DominantLanguage$ = DominantLanguage$;
|
|
4679
|
+
exports.DominantLanguageDetectionJobFilter$ = DominantLanguageDetectionJobFilter$;
|
|
4680
|
+
exports.DominantLanguageDetectionJobProperties$ = DominantLanguageDetectionJobProperties$;
|
|
4681
|
+
exports.EndpointFilter$ = EndpointFilter$;
|
|
4682
|
+
exports.EndpointProperties$ = EndpointProperties$;
|
|
1602
4683
|
exports.EndpointStatus = EndpointStatus;
|
|
4684
|
+
exports.EntitiesDetectionJobFilter$ = EntitiesDetectionJobFilter$;
|
|
4685
|
+
exports.EntitiesDetectionJobProperties$ = EntitiesDetectionJobProperties$;
|
|
4686
|
+
exports.Entity$ = Entity$;
|
|
4687
|
+
exports.EntityLabel$ = EntityLabel$;
|
|
4688
|
+
exports.EntityRecognitionConfig$ = EntityRecognitionConfig$;
|
|
4689
|
+
exports.EntityRecognizerAnnotations$ = EntityRecognizerAnnotations$;
|
|
1603
4690
|
exports.EntityRecognizerDataFormat = EntityRecognizerDataFormat;
|
|
4691
|
+
exports.EntityRecognizerDocuments$ = EntityRecognizerDocuments$;
|
|
4692
|
+
exports.EntityRecognizerEntityList$ = EntityRecognizerEntityList$;
|
|
4693
|
+
exports.EntityRecognizerEvaluationMetrics$ = EntityRecognizerEvaluationMetrics$;
|
|
4694
|
+
exports.EntityRecognizerFilter$ = EntityRecognizerFilter$;
|
|
4695
|
+
exports.EntityRecognizerInputDataConfig$ = EntityRecognizerInputDataConfig$;
|
|
4696
|
+
exports.EntityRecognizerMetadata$ = EntityRecognizerMetadata$;
|
|
4697
|
+
exports.EntityRecognizerMetadataEntityTypesListItem$ = EntityRecognizerMetadataEntityTypesListItem$;
|
|
4698
|
+
exports.EntityRecognizerOutputDataConfig$ = EntityRecognizerOutputDataConfig$;
|
|
4699
|
+
exports.EntityRecognizerProperties$ = EntityRecognizerProperties$;
|
|
4700
|
+
exports.EntityRecognizerSummary$ = EntityRecognizerSummary$;
|
|
1604
4701
|
exports.EntityType = EntityType;
|
|
4702
|
+
exports.EntityTypesEvaluationMetrics$ = EntityTypesEvaluationMetrics$;
|
|
4703
|
+
exports.EntityTypesListItem$ = EntityTypesListItem$;
|
|
4704
|
+
exports.ErrorsListItem$ = ErrorsListItem$;
|
|
4705
|
+
exports.EventsDetectionJobFilter$ = EventsDetectionJobFilter$;
|
|
4706
|
+
exports.EventsDetectionJobProperties$ = EventsDetectionJobProperties$;
|
|
4707
|
+
exports.ExtractedCharactersListItem$ = ExtractedCharactersListItem$;
|
|
4708
|
+
exports.FlywheelFilter$ = FlywheelFilter$;
|
|
4709
|
+
exports.FlywheelIterationFilter$ = FlywheelIterationFilter$;
|
|
4710
|
+
exports.FlywheelIterationProperties$ = FlywheelIterationProperties$;
|
|
1605
4711
|
exports.FlywheelIterationStatus = FlywheelIterationStatus;
|
|
4712
|
+
exports.FlywheelModelEvaluationMetrics$ = FlywheelModelEvaluationMetrics$;
|
|
4713
|
+
exports.FlywheelProperties$ = FlywheelProperties$;
|
|
1606
4714
|
exports.FlywheelStatus = FlywheelStatus;
|
|
4715
|
+
exports.FlywheelSummary$ = FlywheelSummary$;
|
|
4716
|
+
exports.Geometry$ = Geometry$;
|
|
4717
|
+
exports.ImportModel$ = ImportModel$;
|
|
1607
4718
|
exports.ImportModelCommand = ImportModelCommand;
|
|
4719
|
+
exports.ImportModelRequest$ = ImportModelRequest$;
|
|
4720
|
+
exports.ImportModelResponse$ = ImportModelResponse$;
|
|
4721
|
+
exports.InputDataConfig$ = InputDataConfig$;
|
|
1608
4722
|
exports.InputFormat = InputFormat;
|
|
4723
|
+
exports.InternalServerException = InternalServerException;
|
|
4724
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
4725
|
+
exports.InvalidFilterException = InvalidFilterException;
|
|
4726
|
+
exports.InvalidFilterException$ = InvalidFilterException$;
|
|
4727
|
+
exports.InvalidRequestDetail$ = InvalidRequestDetail$;
|
|
1609
4728
|
exports.InvalidRequestDetailReason = InvalidRequestDetailReason;
|
|
4729
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
4730
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1610
4731
|
exports.InvalidRequestReason = InvalidRequestReason;
|
|
4732
|
+
exports.JobNotFoundException = JobNotFoundException;
|
|
4733
|
+
exports.JobNotFoundException$ = JobNotFoundException$;
|
|
1611
4734
|
exports.JobStatus = JobStatus;
|
|
4735
|
+
exports.KeyPhrase$ = KeyPhrase$;
|
|
4736
|
+
exports.KeyPhrasesDetectionJobFilter$ = KeyPhrasesDetectionJobFilter$;
|
|
4737
|
+
exports.KeyPhrasesDetectionJobProperties$ = KeyPhrasesDetectionJobProperties$;
|
|
4738
|
+
exports.KmsKeyValidationException = KmsKeyValidationException;
|
|
4739
|
+
exports.KmsKeyValidationException$ = KmsKeyValidationException$;
|
|
1612
4740
|
exports.LanguageCode = LanguageCode;
|
|
4741
|
+
exports.ListDatasets$ = ListDatasets$;
|
|
1613
4742
|
exports.ListDatasetsCommand = ListDatasetsCommand;
|
|
4743
|
+
exports.ListDatasetsRequest$ = ListDatasetsRequest$;
|
|
4744
|
+
exports.ListDatasetsResponse$ = ListDatasetsResponse$;
|
|
4745
|
+
exports.ListDocumentClassificationJobs$ = ListDocumentClassificationJobs$;
|
|
1614
4746
|
exports.ListDocumentClassificationJobsCommand = ListDocumentClassificationJobsCommand;
|
|
4747
|
+
exports.ListDocumentClassificationJobsRequest$ = ListDocumentClassificationJobsRequest$;
|
|
4748
|
+
exports.ListDocumentClassificationJobsResponse$ = ListDocumentClassificationJobsResponse$;
|
|
4749
|
+
exports.ListDocumentClassifierSummaries$ = ListDocumentClassifierSummaries$;
|
|
1615
4750
|
exports.ListDocumentClassifierSummariesCommand = ListDocumentClassifierSummariesCommand;
|
|
4751
|
+
exports.ListDocumentClassifierSummariesRequest$ = ListDocumentClassifierSummariesRequest$;
|
|
4752
|
+
exports.ListDocumentClassifierSummariesResponse$ = ListDocumentClassifierSummariesResponse$;
|
|
4753
|
+
exports.ListDocumentClassifiers$ = ListDocumentClassifiers$;
|
|
1616
4754
|
exports.ListDocumentClassifiersCommand = ListDocumentClassifiersCommand;
|
|
4755
|
+
exports.ListDocumentClassifiersRequest$ = ListDocumentClassifiersRequest$;
|
|
4756
|
+
exports.ListDocumentClassifiersResponse$ = ListDocumentClassifiersResponse$;
|
|
4757
|
+
exports.ListDominantLanguageDetectionJobs$ = ListDominantLanguageDetectionJobs$;
|
|
1617
4758
|
exports.ListDominantLanguageDetectionJobsCommand = ListDominantLanguageDetectionJobsCommand;
|
|
4759
|
+
exports.ListDominantLanguageDetectionJobsRequest$ = ListDominantLanguageDetectionJobsRequest$;
|
|
4760
|
+
exports.ListDominantLanguageDetectionJobsResponse$ = ListDominantLanguageDetectionJobsResponse$;
|
|
4761
|
+
exports.ListEndpoints$ = ListEndpoints$;
|
|
1618
4762
|
exports.ListEndpointsCommand = ListEndpointsCommand;
|
|
4763
|
+
exports.ListEndpointsRequest$ = ListEndpointsRequest$;
|
|
4764
|
+
exports.ListEndpointsResponse$ = ListEndpointsResponse$;
|
|
4765
|
+
exports.ListEntitiesDetectionJobs$ = ListEntitiesDetectionJobs$;
|
|
1619
4766
|
exports.ListEntitiesDetectionJobsCommand = ListEntitiesDetectionJobsCommand;
|
|
4767
|
+
exports.ListEntitiesDetectionJobsRequest$ = ListEntitiesDetectionJobsRequest$;
|
|
4768
|
+
exports.ListEntitiesDetectionJobsResponse$ = ListEntitiesDetectionJobsResponse$;
|
|
4769
|
+
exports.ListEntityRecognizerSummaries$ = ListEntityRecognizerSummaries$;
|
|
1620
4770
|
exports.ListEntityRecognizerSummariesCommand = ListEntityRecognizerSummariesCommand;
|
|
4771
|
+
exports.ListEntityRecognizerSummariesRequest$ = ListEntityRecognizerSummariesRequest$;
|
|
4772
|
+
exports.ListEntityRecognizerSummariesResponse$ = ListEntityRecognizerSummariesResponse$;
|
|
4773
|
+
exports.ListEntityRecognizers$ = ListEntityRecognizers$;
|
|
1621
4774
|
exports.ListEntityRecognizersCommand = ListEntityRecognizersCommand;
|
|
4775
|
+
exports.ListEntityRecognizersRequest$ = ListEntityRecognizersRequest$;
|
|
4776
|
+
exports.ListEntityRecognizersResponse$ = ListEntityRecognizersResponse$;
|
|
4777
|
+
exports.ListEventsDetectionJobs$ = ListEventsDetectionJobs$;
|
|
1622
4778
|
exports.ListEventsDetectionJobsCommand = ListEventsDetectionJobsCommand;
|
|
4779
|
+
exports.ListEventsDetectionJobsRequest$ = ListEventsDetectionJobsRequest$;
|
|
4780
|
+
exports.ListEventsDetectionJobsResponse$ = ListEventsDetectionJobsResponse$;
|
|
4781
|
+
exports.ListFlywheelIterationHistory$ = ListFlywheelIterationHistory$;
|
|
1623
4782
|
exports.ListFlywheelIterationHistoryCommand = ListFlywheelIterationHistoryCommand;
|
|
4783
|
+
exports.ListFlywheelIterationHistoryRequest$ = ListFlywheelIterationHistoryRequest$;
|
|
4784
|
+
exports.ListFlywheelIterationHistoryResponse$ = ListFlywheelIterationHistoryResponse$;
|
|
4785
|
+
exports.ListFlywheels$ = ListFlywheels$;
|
|
1624
4786
|
exports.ListFlywheelsCommand = ListFlywheelsCommand;
|
|
4787
|
+
exports.ListFlywheelsRequest$ = ListFlywheelsRequest$;
|
|
4788
|
+
exports.ListFlywheelsResponse$ = ListFlywheelsResponse$;
|
|
4789
|
+
exports.ListKeyPhrasesDetectionJobs$ = ListKeyPhrasesDetectionJobs$;
|
|
1625
4790
|
exports.ListKeyPhrasesDetectionJobsCommand = ListKeyPhrasesDetectionJobsCommand;
|
|
4791
|
+
exports.ListKeyPhrasesDetectionJobsRequest$ = ListKeyPhrasesDetectionJobsRequest$;
|
|
4792
|
+
exports.ListKeyPhrasesDetectionJobsResponse$ = ListKeyPhrasesDetectionJobsResponse$;
|
|
4793
|
+
exports.ListPiiEntitiesDetectionJobs$ = ListPiiEntitiesDetectionJobs$;
|
|
1626
4794
|
exports.ListPiiEntitiesDetectionJobsCommand = ListPiiEntitiesDetectionJobsCommand;
|
|
4795
|
+
exports.ListPiiEntitiesDetectionJobsRequest$ = ListPiiEntitiesDetectionJobsRequest$;
|
|
4796
|
+
exports.ListPiiEntitiesDetectionJobsResponse$ = ListPiiEntitiesDetectionJobsResponse$;
|
|
4797
|
+
exports.ListSentimentDetectionJobs$ = ListSentimentDetectionJobs$;
|
|
1627
4798
|
exports.ListSentimentDetectionJobsCommand = ListSentimentDetectionJobsCommand;
|
|
4799
|
+
exports.ListSentimentDetectionJobsRequest$ = ListSentimentDetectionJobsRequest$;
|
|
4800
|
+
exports.ListSentimentDetectionJobsResponse$ = ListSentimentDetectionJobsResponse$;
|
|
4801
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1628
4802
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4803
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4804
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4805
|
+
exports.ListTargetedSentimentDetectionJobs$ = ListTargetedSentimentDetectionJobs$;
|
|
1629
4806
|
exports.ListTargetedSentimentDetectionJobsCommand = ListTargetedSentimentDetectionJobsCommand;
|
|
4807
|
+
exports.ListTargetedSentimentDetectionJobsRequest$ = ListTargetedSentimentDetectionJobsRequest$;
|
|
4808
|
+
exports.ListTargetedSentimentDetectionJobsResponse$ = ListTargetedSentimentDetectionJobsResponse$;
|
|
4809
|
+
exports.ListTopicsDetectionJobs$ = ListTopicsDetectionJobs$;
|
|
1630
4810
|
exports.ListTopicsDetectionJobsCommand = ListTopicsDetectionJobsCommand;
|
|
4811
|
+
exports.ListTopicsDetectionJobsRequest$ = ListTopicsDetectionJobsRequest$;
|
|
4812
|
+
exports.ListTopicsDetectionJobsResponse$ = ListTopicsDetectionJobsResponse$;
|
|
4813
|
+
exports.MentionSentiment$ = MentionSentiment$;
|
|
1631
4814
|
exports.ModelStatus = ModelStatus;
|
|
1632
4815
|
exports.ModelType = ModelType;
|
|
4816
|
+
exports.OutputDataConfig$ = OutputDataConfig$;
|
|
1633
4817
|
exports.PageBasedErrorCode = PageBasedErrorCode;
|
|
1634
4818
|
exports.PageBasedWarningCode = PageBasedWarningCode;
|
|
4819
|
+
exports.PartOfSpeechTag$ = PartOfSpeechTag$;
|
|
1635
4820
|
exports.PartOfSpeechTagType = PartOfSpeechTagType;
|
|
4821
|
+
exports.PiiEntitiesDetectionJobFilter$ = PiiEntitiesDetectionJobFilter$;
|
|
4822
|
+
exports.PiiEntitiesDetectionJobProperties$ = PiiEntitiesDetectionJobProperties$;
|
|
1636
4823
|
exports.PiiEntitiesDetectionMaskMode = PiiEntitiesDetectionMaskMode;
|
|
1637
4824
|
exports.PiiEntitiesDetectionMode = PiiEntitiesDetectionMode;
|
|
4825
|
+
exports.PiiEntity$ = PiiEntity$;
|
|
1638
4826
|
exports.PiiEntityType = PiiEntityType;
|
|
4827
|
+
exports.PiiOutputDataConfig$ = PiiOutputDataConfig$;
|
|
4828
|
+
exports.Point$ = Point$;
|
|
4829
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1639
4830
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
4831
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
4832
|
+
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
4833
|
+
exports.RedactionConfig$ = RedactionConfig$;
|
|
1640
4834
|
exports.RelationshipType = RelationshipType;
|
|
4835
|
+
exports.RelationshipsListItem$ = RelationshipsListItem$;
|
|
4836
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
4837
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
4838
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
4839
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
4840
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4841
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4842
|
+
exports.ResourceUnavailableException = ResourceUnavailableException;
|
|
4843
|
+
exports.ResourceUnavailableException$ = ResourceUnavailableException$;
|
|
4844
|
+
exports.SentimentDetectionJobFilter$ = SentimentDetectionJobFilter$;
|
|
4845
|
+
exports.SentimentDetectionJobProperties$ = SentimentDetectionJobProperties$;
|
|
4846
|
+
exports.SentimentScore$ = SentimentScore$;
|
|
1641
4847
|
exports.SentimentType = SentimentType;
|
|
1642
4848
|
exports.Split = Split;
|
|
4849
|
+
exports.StartDocumentClassificationJob$ = StartDocumentClassificationJob$;
|
|
1643
4850
|
exports.StartDocumentClassificationJobCommand = StartDocumentClassificationJobCommand;
|
|
4851
|
+
exports.StartDocumentClassificationJobRequest$ = StartDocumentClassificationJobRequest$;
|
|
4852
|
+
exports.StartDocumentClassificationJobResponse$ = StartDocumentClassificationJobResponse$;
|
|
4853
|
+
exports.StartDominantLanguageDetectionJob$ = StartDominantLanguageDetectionJob$;
|
|
1644
4854
|
exports.StartDominantLanguageDetectionJobCommand = StartDominantLanguageDetectionJobCommand;
|
|
4855
|
+
exports.StartDominantLanguageDetectionJobRequest$ = StartDominantLanguageDetectionJobRequest$;
|
|
4856
|
+
exports.StartDominantLanguageDetectionJobResponse$ = StartDominantLanguageDetectionJobResponse$;
|
|
4857
|
+
exports.StartEntitiesDetectionJob$ = StartEntitiesDetectionJob$;
|
|
1645
4858
|
exports.StartEntitiesDetectionJobCommand = StartEntitiesDetectionJobCommand;
|
|
4859
|
+
exports.StartEntitiesDetectionJobRequest$ = StartEntitiesDetectionJobRequest$;
|
|
4860
|
+
exports.StartEntitiesDetectionJobResponse$ = StartEntitiesDetectionJobResponse$;
|
|
4861
|
+
exports.StartEventsDetectionJob$ = StartEventsDetectionJob$;
|
|
1646
4862
|
exports.StartEventsDetectionJobCommand = StartEventsDetectionJobCommand;
|
|
4863
|
+
exports.StartEventsDetectionJobRequest$ = StartEventsDetectionJobRequest$;
|
|
4864
|
+
exports.StartEventsDetectionJobResponse$ = StartEventsDetectionJobResponse$;
|
|
4865
|
+
exports.StartFlywheelIteration$ = StartFlywheelIteration$;
|
|
1647
4866
|
exports.StartFlywheelIterationCommand = StartFlywheelIterationCommand;
|
|
4867
|
+
exports.StartFlywheelIterationRequest$ = StartFlywheelIterationRequest$;
|
|
4868
|
+
exports.StartFlywheelIterationResponse$ = StartFlywheelIterationResponse$;
|
|
4869
|
+
exports.StartKeyPhrasesDetectionJob$ = StartKeyPhrasesDetectionJob$;
|
|
1648
4870
|
exports.StartKeyPhrasesDetectionJobCommand = StartKeyPhrasesDetectionJobCommand;
|
|
4871
|
+
exports.StartKeyPhrasesDetectionJobRequest$ = StartKeyPhrasesDetectionJobRequest$;
|
|
4872
|
+
exports.StartKeyPhrasesDetectionJobResponse$ = StartKeyPhrasesDetectionJobResponse$;
|
|
4873
|
+
exports.StartPiiEntitiesDetectionJob$ = StartPiiEntitiesDetectionJob$;
|
|
1649
4874
|
exports.StartPiiEntitiesDetectionJobCommand = StartPiiEntitiesDetectionJobCommand;
|
|
4875
|
+
exports.StartPiiEntitiesDetectionJobRequest$ = StartPiiEntitiesDetectionJobRequest$;
|
|
4876
|
+
exports.StartPiiEntitiesDetectionJobResponse$ = StartPiiEntitiesDetectionJobResponse$;
|
|
4877
|
+
exports.StartSentimentDetectionJob$ = StartSentimentDetectionJob$;
|
|
1650
4878
|
exports.StartSentimentDetectionJobCommand = StartSentimentDetectionJobCommand;
|
|
4879
|
+
exports.StartSentimentDetectionJobRequest$ = StartSentimentDetectionJobRequest$;
|
|
4880
|
+
exports.StartSentimentDetectionJobResponse$ = StartSentimentDetectionJobResponse$;
|
|
4881
|
+
exports.StartTargetedSentimentDetectionJob$ = StartTargetedSentimentDetectionJob$;
|
|
1651
4882
|
exports.StartTargetedSentimentDetectionJobCommand = StartTargetedSentimentDetectionJobCommand;
|
|
4883
|
+
exports.StartTargetedSentimentDetectionJobRequest$ = StartTargetedSentimentDetectionJobRequest$;
|
|
4884
|
+
exports.StartTargetedSentimentDetectionJobResponse$ = StartTargetedSentimentDetectionJobResponse$;
|
|
4885
|
+
exports.StartTopicsDetectionJob$ = StartTopicsDetectionJob$;
|
|
1652
4886
|
exports.StartTopicsDetectionJobCommand = StartTopicsDetectionJobCommand;
|
|
4887
|
+
exports.StartTopicsDetectionJobRequest$ = StartTopicsDetectionJobRequest$;
|
|
4888
|
+
exports.StartTopicsDetectionJobResponse$ = StartTopicsDetectionJobResponse$;
|
|
4889
|
+
exports.StopDominantLanguageDetectionJob$ = StopDominantLanguageDetectionJob$;
|
|
1653
4890
|
exports.StopDominantLanguageDetectionJobCommand = StopDominantLanguageDetectionJobCommand;
|
|
4891
|
+
exports.StopDominantLanguageDetectionJobRequest$ = StopDominantLanguageDetectionJobRequest$;
|
|
4892
|
+
exports.StopDominantLanguageDetectionJobResponse$ = StopDominantLanguageDetectionJobResponse$;
|
|
4893
|
+
exports.StopEntitiesDetectionJob$ = StopEntitiesDetectionJob$;
|
|
1654
4894
|
exports.StopEntitiesDetectionJobCommand = StopEntitiesDetectionJobCommand;
|
|
4895
|
+
exports.StopEntitiesDetectionJobRequest$ = StopEntitiesDetectionJobRequest$;
|
|
4896
|
+
exports.StopEntitiesDetectionJobResponse$ = StopEntitiesDetectionJobResponse$;
|
|
4897
|
+
exports.StopEventsDetectionJob$ = StopEventsDetectionJob$;
|
|
1655
4898
|
exports.StopEventsDetectionJobCommand = StopEventsDetectionJobCommand;
|
|
4899
|
+
exports.StopEventsDetectionJobRequest$ = StopEventsDetectionJobRequest$;
|
|
4900
|
+
exports.StopEventsDetectionJobResponse$ = StopEventsDetectionJobResponse$;
|
|
4901
|
+
exports.StopKeyPhrasesDetectionJob$ = StopKeyPhrasesDetectionJob$;
|
|
1656
4902
|
exports.StopKeyPhrasesDetectionJobCommand = StopKeyPhrasesDetectionJobCommand;
|
|
4903
|
+
exports.StopKeyPhrasesDetectionJobRequest$ = StopKeyPhrasesDetectionJobRequest$;
|
|
4904
|
+
exports.StopKeyPhrasesDetectionJobResponse$ = StopKeyPhrasesDetectionJobResponse$;
|
|
4905
|
+
exports.StopPiiEntitiesDetectionJob$ = StopPiiEntitiesDetectionJob$;
|
|
1657
4906
|
exports.StopPiiEntitiesDetectionJobCommand = StopPiiEntitiesDetectionJobCommand;
|
|
4907
|
+
exports.StopPiiEntitiesDetectionJobRequest$ = StopPiiEntitiesDetectionJobRequest$;
|
|
4908
|
+
exports.StopPiiEntitiesDetectionJobResponse$ = StopPiiEntitiesDetectionJobResponse$;
|
|
4909
|
+
exports.StopSentimentDetectionJob$ = StopSentimentDetectionJob$;
|
|
1658
4910
|
exports.StopSentimentDetectionJobCommand = StopSentimentDetectionJobCommand;
|
|
4911
|
+
exports.StopSentimentDetectionJobRequest$ = StopSentimentDetectionJobRequest$;
|
|
4912
|
+
exports.StopSentimentDetectionJobResponse$ = StopSentimentDetectionJobResponse$;
|
|
4913
|
+
exports.StopTargetedSentimentDetectionJob$ = StopTargetedSentimentDetectionJob$;
|
|
1659
4914
|
exports.StopTargetedSentimentDetectionJobCommand = StopTargetedSentimentDetectionJobCommand;
|
|
4915
|
+
exports.StopTargetedSentimentDetectionJobRequest$ = StopTargetedSentimentDetectionJobRequest$;
|
|
4916
|
+
exports.StopTargetedSentimentDetectionJobResponse$ = StopTargetedSentimentDetectionJobResponse$;
|
|
4917
|
+
exports.StopTrainingDocumentClassifier$ = StopTrainingDocumentClassifier$;
|
|
1660
4918
|
exports.StopTrainingDocumentClassifierCommand = StopTrainingDocumentClassifierCommand;
|
|
4919
|
+
exports.StopTrainingDocumentClassifierRequest$ = StopTrainingDocumentClassifierRequest$;
|
|
4920
|
+
exports.StopTrainingDocumentClassifierResponse$ = StopTrainingDocumentClassifierResponse$;
|
|
4921
|
+
exports.StopTrainingEntityRecognizer$ = StopTrainingEntityRecognizer$;
|
|
1661
4922
|
exports.StopTrainingEntityRecognizerCommand = StopTrainingEntityRecognizerCommand;
|
|
4923
|
+
exports.StopTrainingEntityRecognizerRequest$ = StopTrainingEntityRecognizerRequest$;
|
|
4924
|
+
exports.StopTrainingEntityRecognizerResponse$ = StopTrainingEntityRecognizerResponse$;
|
|
1662
4925
|
exports.SyntaxLanguageCode = SyntaxLanguageCode;
|
|
4926
|
+
exports.SyntaxToken$ = SyntaxToken$;
|
|
4927
|
+
exports.Tag$ = Tag$;
|
|
4928
|
+
exports.TagResource$ = TagResource$;
|
|
1663
4929
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4930
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4931
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4932
|
+
exports.TargetedSentimentDetectionJobFilter$ = TargetedSentimentDetectionJobFilter$;
|
|
4933
|
+
exports.TargetedSentimentDetectionJobProperties$ = TargetedSentimentDetectionJobProperties$;
|
|
4934
|
+
exports.TargetedSentimentEntity$ = TargetedSentimentEntity$;
|
|
1664
4935
|
exports.TargetedSentimentEntityType = TargetedSentimentEntityType;
|
|
4936
|
+
exports.TargetedSentimentMention$ = TargetedSentimentMention$;
|
|
4937
|
+
exports.TaskConfig$ = TaskConfig$;
|
|
4938
|
+
exports.TextSegment$ = TextSegment$;
|
|
4939
|
+
exports.TextSizeLimitExceededException = TextSizeLimitExceededException;
|
|
4940
|
+
exports.TextSizeLimitExceededException$ = TextSizeLimitExceededException$;
|
|
4941
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
4942
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
4943
|
+
exports.TooManyTagKeysException = TooManyTagKeysException;
|
|
4944
|
+
exports.TooManyTagKeysException$ = TooManyTagKeysException$;
|
|
4945
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
4946
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
4947
|
+
exports.TopicsDetectionJobFilter$ = TopicsDetectionJobFilter$;
|
|
4948
|
+
exports.TopicsDetectionJobProperties$ = TopicsDetectionJobProperties$;
|
|
4949
|
+
exports.ToxicContent$ = ToxicContent$;
|
|
1665
4950
|
exports.ToxicContentType = ToxicContentType;
|
|
4951
|
+
exports.ToxicLabels$ = ToxicLabels$;
|
|
4952
|
+
exports.UnsupportedLanguageException = UnsupportedLanguageException;
|
|
4953
|
+
exports.UnsupportedLanguageException$ = UnsupportedLanguageException$;
|
|
4954
|
+
exports.UntagResource$ = UntagResource$;
|
|
1666
4955
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4956
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4957
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4958
|
+
exports.UpdateDataSecurityConfig$ = UpdateDataSecurityConfig$;
|
|
4959
|
+
exports.UpdateEndpoint$ = UpdateEndpoint$;
|
|
1667
4960
|
exports.UpdateEndpointCommand = UpdateEndpointCommand;
|
|
4961
|
+
exports.UpdateEndpointRequest$ = UpdateEndpointRequest$;
|
|
4962
|
+
exports.UpdateEndpointResponse$ = UpdateEndpointResponse$;
|
|
4963
|
+
exports.UpdateFlywheel$ = UpdateFlywheel$;
|
|
1668
4964
|
exports.UpdateFlywheelCommand = UpdateFlywheelCommand;
|
|
4965
|
+
exports.UpdateFlywheelRequest$ = UpdateFlywheelRequest$;
|
|
4966
|
+
exports.UpdateFlywheelResponse$ = UpdateFlywheelResponse$;
|
|
4967
|
+
exports.VpcConfig$ = VpcConfig$;
|
|
4968
|
+
exports.WarningsListItem$ = WarningsListItem$;
|
|
4969
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1669
4970
|
exports.paginateListDatasets = paginateListDatasets;
|
|
1670
4971
|
exports.paginateListDocumentClassificationJobs = paginateListDocumentClassificationJobs;
|
|
1671
4972
|
exports.paginateListDocumentClassifierSummaries = paginateListDocumentClassifierSummaries;
|