@aws-sdk/client-comprehend 3.934.0 → 3.936.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.
Files changed (45) hide show
  1. package/dist-cjs/index.js +281 -281
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +267 -0
  4. package/dist-es/models/errors.js +229 -0
  5. package/dist-es/models/models_0.js +1 -468
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/StopEntitiesDetectionJobCommand.d.ts +1 -1
  8. package/dist-types/commands/StopEventsDetectionJobCommand.d.ts +1 -1
  9. package/dist-types/commands/StopKeyPhrasesDetectionJobCommand.d.ts +1 -1
  10. package/dist-types/commands/StopPiiEntitiesDetectionJobCommand.d.ts +1 -1
  11. package/dist-types/commands/StopSentimentDetectionJobCommand.d.ts +1 -1
  12. package/dist-types/commands/StopTargetedSentimentDetectionJobCommand.d.ts +1 -1
  13. package/dist-types/commands/StopTrainingDocumentClassifierCommand.d.ts +1 -1
  14. package/dist-types/commands/StopTrainingEntityRecognizerCommand.d.ts +1 -1
  15. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  16. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateEndpointCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateFlywheelCommand.d.ts +1 -1
  19. package/dist-types/index.d.ts +3 -1
  20. package/dist-types/models/enums.d.ts +555 -0
  21. package/dist-types/models/errors.d.ts +230 -0
  22. package/dist-types/models/models_0.d.ts +352 -757
  23. package/dist-types/ts3.4/commands/StopEntitiesDetectionJobCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/commands/StopEventsDetectionJobCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/StopKeyPhrasesDetectionJobCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/StopPiiEntitiesDetectionJobCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/StopSentimentDetectionJobCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/StopTargetedSentimentDetectionJobCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/StopTrainingDocumentClassifierCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/StopTrainingEntityRecognizerCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/UpdateFlywheelCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/index.d.ts +3 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +326 -0
  37. package/dist-types/ts3.4/models/errors.d.ts +140 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +121 -445
  39. package/package.json +19 -19
  40. package/dist-es/models/index.js +0 -2
  41. package/dist-es/models/models_1.js +0 -29
  42. package/dist-types/models/index.d.ts +0 -2
  43. package/dist-types/models/models_1.d.ts +0 -380
  44. package/dist-types/ts3.4/models/index.d.ts +0 -2
  45. package/dist-types/ts3.4/models/models_1.d.ts +0 -106
@@ -1,468 +1 @@
1
- import { ComprehendServiceException as __BaseException } from "./ComprehendServiceException";
2
- export const AugmentedManifestsDocumentTypeFormat = {
3
- PLAIN_TEXT_DOCUMENT: "PLAIN_TEXT_DOCUMENT",
4
- SEMI_STRUCTURED_DOCUMENT: "SEMI_STRUCTURED_DOCUMENT",
5
- };
6
- export const Split = {
7
- TEST: "TEST",
8
- TRAIN: "TRAIN",
9
- };
10
- export class BatchSizeLimitExceededException extends __BaseException {
11
- name = "BatchSizeLimitExceededException";
12
- $fault = "client";
13
- Message;
14
- constructor(opts) {
15
- super({
16
- name: "BatchSizeLimitExceededException",
17
- $fault: "client",
18
- ...opts,
19
- });
20
- Object.setPrototypeOf(this, BatchSizeLimitExceededException.prototype);
21
- this.Message = opts.Message;
22
- }
23
- }
24
- export class InternalServerException extends __BaseException {
25
- name = "InternalServerException";
26
- $fault = "server";
27
- Message;
28
- constructor(opts) {
29
- super({
30
- name: "InternalServerException",
31
- $fault: "server",
32
- ...opts,
33
- });
34
- Object.setPrototypeOf(this, InternalServerException.prototype);
35
- this.Message = opts.Message;
36
- }
37
- }
38
- export const InvalidRequestDetailReason = {
39
- DOCUMENT_SIZE_EXCEEDED: "DOCUMENT_SIZE_EXCEEDED",
40
- PAGE_LIMIT_EXCEEDED: "PAGE_LIMIT_EXCEEDED",
41
- TEXTRACT_ACCESS_DENIED: "TEXTRACT_ACCESS_DENIED",
42
- UNSUPPORTED_DOC_TYPE: "UNSUPPORTED_DOC_TYPE",
43
- };
44
- export const InvalidRequestReason = {
45
- INVALID_DOCUMENT: "INVALID_DOCUMENT",
46
- };
47
- export class InvalidRequestException extends __BaseException {
48
- name = "InvalidRequestException";
49
- $fault = "client";
50
- Message;
51
- Reason;
52
- Detail;
53
- constructor(opts) {
54
- super({
55
- name: "InvalidRequestException",
56
- $fault: "client",
57
- ...opts,
58
- });
59
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
60
- this.Message = opts.Message;
61
- this.Reason = opts.Reason;
62
- this.Detail = opts.Detail;
63
- }
64
- }
65
- export class TextSizeLimitExceededException extends __BaseException {
66
- name = "TextSizeLimitExceededException";
67
- $fault = "client";
68
- Message;
69
- constructor(opts) {
70
- super({
71
- name: "TextSizeLimitExceededException",
72
- $fault: "client",
73
- ...opts,
74
- });
75
- Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
76
- this.Message = opts.Message;
77
- }
78
- }
79
- export const LanguageCode = {
80
- AR: "ar",
81
- DE: "de",
82
- EN: "en",
83
- ES: "es",
84
- FR: "fr",
85
- HI: "hi",
86
- IT: "it",
87
- JA: "ja",
88
- KO: "ko",
89
- PT: "pt",
90
- ZH: "zh",
91
- ZH_TW: "zh-TW",
92
- };
93
- export const EntityType = {
94
- COMMERCIAL_ITEM: "COMMERCIAL_ITEM",
95
- DATE: "DATE",
96
- EVENT: "EVENT",
97
- LOCATION: "LOCATION",
98
- ORGANIZATION: "ORGANIZATION",
99
- OTHER: "OTHER",
100
- PERSON: "PERSON",
101
- QUANTITY: "QUANTITY",
102
- TITLE: "TITLE",
103
- };
104
- export class UnsupportedLanguageException extends __BaseException {
105
- name = "UnsupportedLanguageException";
106
- $fault = "client";
107
- Message;
108
- constructor(opts) {
109
- super({
110
- name: "UnsupportedLanguageException",
111
- $fault: "client",
112
- ...opts,
113
- });
114
- Object.setPrototypeOf(this, UnsupportedLanguageException.prototype);
115
- this.Message = opts.Message;
116
- }
117
- }
118
- export const SentimentType = {
119
- MIXED: "MIXED",
120
- NEGATIVE: "NEGATIVE",
121
- NEUTRAL: "NEUTRAL",
122
- POSITIVE: "POSITIVE",
123
- };
124
- export const SyntaxLanguageCode = {
125
- DE: "de",
126
- EN: "en",
127
- ES: "es",
128
- FR: "fr",
129
- IT: "it",
130
- PT: "pt",
131
- };
132
- export const PartOfSpeechTagType = {
133
- ADJ: "ADJ",
134
- ADP: "ADP",
135
- ADV: "ADV",
136
- AUX: "AUX",
137
- CCONJ: "CCONJ",
138
- CONJ: "CONJ",
139
- DET: "DET",
140
- INTJ: "INTJ",
141
- NOUN: "NOUN",
142
- NUM: "NUM",
143
- O: "O",
144
- PART: "PART",
145
- PRON: "PRON",
146
- PROPN: "PROPN",
147
- PUNCT: "PUNCT",
148
- SCONJ: "SCONJ",
149
- SYM: "SYM",
150
- VERB: "VERB",
151
- };
152
- export const TargetedSentimentEntityType = {
153
- ATTRIBUTE: "ATTRIBUTE",
154
- BOOK: "BOOK",
155
- BRAND: "BRAND",
156
- COMMERCIAL_ITEM: "COMMERCIAL_ITEM",
157
- DATE: "DATE",
158
- EVENT: "EVENT",
159
- FACILITY: "FACILITY",
160
- GAME: "GAME",
161
- LOCATION: "LOCATION",
162
- MOVIE: "MOVIE",
163
- MUSIC: "MUSIC",
164
- ORGANIZATION: "ORGANIZATION",
165
- OTHER: "OTHER",
166
- PERSON: "PERSON",
167
- PERSONAL_TITLE: "PERSONAL_TITLE",
168
- QUANTITY: "QUANTITY",
169
- SOFTWARE: "SOFTWARE",
170
- };
171
- export const BlockType = {
172
- LINE: "LINE",
173
- WORD: "WORD",
174
- };
175
- export const RelationshipType = {
176
- CHILD: "CHILD",
177
- };
178
- export const DocumentReadAction = {
179
- TEXTRACT_ANALYZE_DOCUMENT: "TEXTRACT_ANALYZE_DOCUMENT",
180
- TEXTRACT_DETECT_DOCUMENT_TEXT: "TEXTRACT_DETECT_DOCUMENT_TEXT",
181
- };
182
- export const DocumentReadMode = {
183
- FORCE_DOCUMENT_READ_ACTION: "FORCE_DOCUMENT_READ_ACTION",
184
- SERVICE_DEFAULT: "SERVICE_DEFAULT",
185
- };
186
- export const DocumentReadFeatureTypes = {
187
- FORMS: "FORMS",
188
- TABLES: "TABLES",
189
- };
190
- export const DocumentType = {
191
- IMAGE: "IMAGE",
192
- MS_WORD: "MS_WORD",
193
- NATIVE_PDF: "NATIVE_PDF",
194
- PLAIN_TEXT: "PLAIN_TEXT",
195
- SCANNED_PDF: "SCANNED_PDF",
196
- TEXTRACT_ANALYZE_DOCUMENT_JSON: "TEXTRACT_ANALYZE_DOCUMENT_JSON",
197
- TEXTRACT_DETECT_DOCUMENT_TEXT_JSON: "TEXTRACT_DETECT_DOCUMENT_TEXT_JSON",
198
- };
199
- export const PageBasedErrorCode = {
200
- INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
201
- PAGE_CHARACTERS_EXCEEDED: "PAGE_CHARACTERS_EXCEEDED",
202
- PAGE_SIZE_EXCEEDED: "PAGE_SIZE_EXCEEDED",
203
- TEXTRACT_BAD_PAGE: "TEXTRACT_BAD_PAGE",
204
- TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED: "TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED",
205
- };
206
- export const PageBasedWarningCode = {
207
- INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL: "INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL",
208
- INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL: "INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL",
209
- };
210
- export class ResourceUnavailableException extends __BaseException {
211
- name = "ResourceUnavailableException";
212
- $fault = "client";
213
- Message;
214
- constructor(opts) {
215
- super({
216
- name: "ResourceUnavailableException",
217
- $fault: "client",
218
- ...opts,
219
- });
220
- Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
221
- this.Message = opts.Message;
222
- }
223
- }
224
- export const PiiEntityType = {
225
- ADDRESS: "ADDRESS",
226
- AGE: "AGE",
227
- ALL: "ALL",
228
- AWS_ACCESS_KEY: "AWS_ACCESS_KEY",
229
- AWS_SECRET_KEY: "AWS_SECRET_KEY",
230
- BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER",
231
- BANK_ROUTING: "BANK_ROUTING",
232
- CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER",
233
- CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER",
234
- CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV",
235
- CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY",
236
- CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER",
237
- DATE_TIME: "DATE_TIME",
238
- DRIVER_ID: "DRIVER_ID",
239
- EMAIL: "EMAIL",
240
- INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER",
241
- IN_AADHAAR: "IN_AADHAAR",
242
- IN_NREGA: "IN_NREGA",
243
- IN_PERMANENT_ACCOUNT_NUMBER: "IN_PERMANENT_ACCOUNT_NUMBER",
244
- IN_VOTER_NUMBER: "IN_VOTER_NUMBER",
245
- IP_ADDRESS: "IP_ADDRESS",
246
- LICENSE_PLATE: "LICENSE_PLATE",
247
- MAC_ADDRESS: "MAC_ADDRESS",
248
- NAME: "NAME",
249
- PASSPORT_NUMBER: "PASSPORT_NUMBER",
250
- PASSWORD: "PASSWORD",
251
- PHONE: "PHONE",
252
- PIN: "PIN",
253
- SSN: "SSN",
254
- SWIFT_CODE: "SWIFT_CODE",
255
- UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER",
256
- UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER",
257
- UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER",
258
- URL: "URL",
259
- USERNAME: "USERNAME",
260
- US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER",
261
- VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER",
262
- };
263
- export const DatasetType = {
264
- TEST: "TEST",
265
- TRAIN: "TRAIN",
266
- };
267
- export const DatasetDataFormat = {
268
- AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST",
269
- COMPREHEND_CSV: "COMPREHEND_CSV",
270
- };
271
- export const InputFormat = {
272
- ONE_DOC_PER_FILE: "ONE_DOC_PER_FILE",
273
- ONE_DOC_PER_LINE: "ONE_DOC_PER_LINE",
274
- };
275
- export class ResourceInUseException extends __BaseException {
276
- name = "ResourceInUseException";
277
- $fault = "client";
278
- Message;
279
- constructor(opts) {
280
- super({
281
- name: "ResourceInUseException",
282
- $fault: "client",
283
- ...opts,
284
- });
285
- Object.setPrototypeOf(this, ResourceInUseException.prototype);
286
- this.Message = opts.Message;
287
- }
288
- }
289
- export class ResourceLimitExceededException extends __BaseException {
290
- name = "ResourceLimitExceededException";
291
- $fault = "client";
292
- Message;
293
- constructor(opts) {
294
- super({
295
- name: "ResourceLimitExceededException",
296
- $fault: "client",
297
- ...opts,
298
- });
299
- Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
300
- this.Message = opts.Message;
301
- }
302
- }
303
- export class ResourceNotFoundException extends __BaseException {
304
- name = "ResourceNotFoundException";
305
- $fault = "client";
306
- Message;
307
- constructor(opts) {
308
- super({
309
- name: "ResourceNotFoundException",
310
- $fault: "client",
311
- ...opts,
312
- });
313
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
314
- this.Message = opts.Message;
315
- }
316
- }
317
- export class TooManyRequestsException extends __BaseException {
318
- name = "TooManyRequestsException";
319
- $fault = "client";
320
- Message;
321
- constructor(opts) {
322
- super({
323
- name: "TooManyRequestsException",
324
- $fault: "client",
325
- ...opts,
326
- });
327
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
328
- this.Message = opts.Message;
329
- }
330
- }
331
- export class TooManyTagsException extends __BaseException {
332
- name = "TooManyTagsException";
333
- $fault = "client";
334
- Message;
335
- constructor(opts) {
336
- super({
337
- name: "TooManyTagsException",
338
- $fault: "client",
339
- ...opts,
340
- });
341
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
342
- this.Message = opts.Message;
343
- }
344
- }
345
- export const DocumentClassifierDataFormat = {
346
- AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST",
347
- COMPREHEND_CSV: "COMPREHEND_CSV",
348
- };
349
- export const DocumentClassifierDocumentTypeFormat = {
350
- PLAIN_TEXT_DOCUMENT: "PLAIN_TEXT_DOCUMENT",
351
- SEMI_STRUCTURED_DOCUMENT: "SEMI_STRUCTURED_DOCUMENT",
352
- };
353
- export const DocumentClassifierMode = {
354
- MULTI_CLASS: "MULTI_CLASS",
355
- MULTI_LABEL: "MULTI_LABEL",
356
- };
357
- export class KmsKeyValidationException extends __BaseException {
358
- name = "KmsKeyValidationException";
359
- $fault = "client";
360
- Message;
361
- constructor(opts) {
362
- super({
363
- name: "KmsKeyValidationException",
364
- $fault: "client",
365
- ...opts,
366
- });
367
- Object.setPrototypeOf(this, KmsKeyValidationException.prototype);
368
- this.Message = opts.Message;
369
- }
370
- }
371
- export const EntityRecognizerDataFormat = {
372
- AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST",
373
- COMPREHEND_CSV: "COMPREHEND_CSV",
374
- };
375
- export const ModelType = {
376
- DOCUMENT_CLASSIFIER: "DOCUMENT_CLASSIFIER",
377
- ENTITY_RECOGNIZER: "ENTITY_RECOGNIZER",
378
- };
379
- export const DatasetStatus = {
380
- COMPLETED: "COMPLETED",
381
- CREATING: "CREATING",
382
- FAILED: "FAILED",
383
- };
384
- export const JobStatus = {
385
- COMPLETED: "COMPLETED",
386
- FAILED: "FAILED",
387
- IN_PROGRESS: "IN_PROGRESS",
388
- STOPPED: "STOPPED",
389
- STOP_REQUESTED: "STOP_REQUESTED",
390
- SUBMITTED: "SUBMITTED",
391
- };
392
- export class JobNotFoundException extends __BaseException {
393
- name = "JobNotFoundException";
394
- $fault = "client";
395
- Message;
396
- constructor(opts) {
397
- super({
398
- name: "JobNotFoundException",
399
- $fault: "client",
400
- ...opts,
401
- });
402
- Object.setPrototypeOf(this, JobNotFoundException.prototype);
403
- this.Message = opts.Message;
404
- }
405
- }
406
- export const ModelStatus = {
407
- DELETING: "DELETING",
408
- IN_ERROR: "IN_ERROR",
409
- STOPPED: "STOPPED",
410
- STOP_REQUESTED: "STOP_REQUESTED",
411
- SUBMITTED: "SUBMITTED",
412
- TRAINED: "TRAINED",
413
- TRAINED_WITH_WARNING: "TRAINED_WITH_WARNING",
414
- TRAINING: "TRAINING",
415
- };
416
- export const EndpointStatus = {
417
- CREATING: "CREATING",
418
- DELETING: "DELETING",
419
- FAILED: "FAILED",
420
- IN_SERVICE: "IN_SERVICE",
421
- UPDATING: "UPDATING",
422
- };
423
- export const FlywheelStatus = {
424
- ACTIVE: "ACTIVE",
425
- CREATING: "CREATING",
426
- DELETING: "DELETING",
427
- FAILED: "FAILED",
428
- UPDATING: "UPDATING",
429
- };
430
- export const FlywheelIterationStatus = {
431
- COMPLETED: "COMPLETED",
432
- EVALUATING: "EVALUATING",
433
- FAILED: "FAILED",
434
- STOPPED: "STOPPED",
435
- STOP_REQUESTED: "STOP_REQUESTED",
436
- TRAINING: "TRAINING",
437
- };
438
- export const PiiEntitiesDetectionMode = {
439
- ONLY_OFFSETS: "ONLY_OFFSETS",
440
- ONLY_REDACTION: "ONLY_REDACTION",
441
- };
442
- export const PiiEntitiesDetectionMaskMode = {
443
- MASK: "MASK",
444
- REPLACE_WITH_PII_ENTITY_TYPE: "REPLACE_WITH_PII_ENTITY_TYPE",
445
- };
446
- export const ToxicContentType = {
447
- GRAPHIC: "GRAPHIC",
448
- HARASSMENT_OR_ABUSE: "HARASSMENT_OR_ABUSE",
449
- HATE_SPEECH: "HATE_SPEECH",
450
- INSULT: "INSULT",
451
- PROFANITY: "PROFANITY",
452
- SEXUAL: "SEXUAL",
453
- VIOLENCE_OR_THREAT: "VIOLENCE_OR_THREAT",
454
- };
455
- export class InvalidFilterException extends __BaseException {
456
- name = "InvalidFilterException";
457
- $fault = "client";
458
- Message;
459
- constructor(opts) {
460
- super({
461
- name: "InvalidFilterException",
462
- $fault: "client",
463
- ...opts,
464
- });
465
- Object.setPrototypeOf(this, InvalidFilterException.prototype);
466
- this.Message = opts.Message;
467
- }
468
- }
1
+ export {};
@@ -607,7 +607,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.comprehend";
607
607
  const n0 = "com.amazonaws.comprehend";
608
608
  import { TypeRegistry } from "@smithy/core/schema";
609
609
  import { ComprehendServiceException as __ComprehendServiceException } from "../models/ComprehendServiceException";
610
- import { BatchSizeLimitExceededException as __BatchSizeLimitExceededException, ConcurrentModificationException as __ConcurrentModificationException, InternalServerException as __InternalServerException, InvalidFilterException as __InvalidFilterException, InvalidRequestException as __InvalidRequestException, JobNotFoundException as __JobNotFoundException, KmsKeyValidationException as __KmsKeyValidationException, ResourceInUseException as __ResourceInUseException, ResourceLimitExceededException as __ResourceLimitExceededException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, TextSizeLimitExceededException as __TextSizeLimitExceededException, TooManyRequestsException as __TooManyRequestsException, TooManyTagKeysException as __TooManyTagKeysException, TooManyTagsException as __TooManyTagsException, UnsupportedLanguageException as __UnsupportedLanguageException, } from "../models/index";
610
+ import { BatchSizeLimitExceededException as __BatchSizeLimitExceededException, ConcurrentModificationException as __ConcurrentModificationException, InternalServerException as __InternalServerException, InvalidFilterException as __InvalidFilterException, InvalidRequestException as __InvalidRequestException, JobNotFoundException as __JobNotFoundException, KmsKeyValidationException as __KmsKeyValidationException, ResourceInUseException as __ResourceInUseException, ResourceLimitExceededException as __ResourceLimitExceededException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, TextSizeLimitExceededException as __TextSizeLimitExceededException, TooManyRequestsException as __TooManyRequestsException, TooManyTagKeysException as __TooManyTagKeysException, TooManyTagsException as __TooManyTagsException, UnsupportedLanguageException as __UnsupportedLanguageException, } from "../models/errors";
611
611
  export var CustomerInputString = [0, n0, _CIS, 8, 0];
612
612
  export var AugmentedManifestsListItem = [
613
613
  3,
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse } from "../models/models_1";
4
+ import { StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopEventsDetectionJobRequest, StopEventsDetectionJobResponse } from "../models/models_1";
4
+ import { StopEventsDetectionJobRequest, StopEventsDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse } from "../models/models_1";
4
+ import { StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse } from "../models/models_1";
4
+ import { StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse } from "../models/models_1";
4
+ import { StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopTargetedSentimentDetectionJobRequest, StopTargetedSentimentDetectionJobResponse } from "../models/models_1";
4
+ import { StopTargetedSentimentDetectionJobRequest, StopTargetedSentimentDetectionJobResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse } from "../models/models_1";
4
+ import { StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse } from "../models/models_1";
4
+ import { StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
4
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1";
4
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_1";
4
+ import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient";
4
- import { UpdateFlywheelRequest, UpdateFlywheelResponse } from "../models/models_1";
4
+ import { UpdateFlywheelRequest, UpdateFlywheelResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -13,5 +13,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
13
13
  export type { ComprehendExtensionConfiguration } from "./extensionConfiguration";
14
14
  export * from "./commands";
15
15
  export * from "./pagination";
16
- export * from "./models";
16
+ export * from "./models/enums";
17
+ export * from "./models/errors";
18
+ export type * from "./models/models_0";
17
19
  export { ComprehendServiceException } from "./models/ComprehendServiceException";