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