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