@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
@@ -0,0 +1,555 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AugmentedManifestsDocumentTypeFormat: {
6
+ readonly PLAIN_TEXT_DOCUMENT: "PLAIN_TEXT_DOCUMENT";
7
+ readonly SEMI_STRUCTURED_DOCUMENT: "SEMI_STRUCTURED_DOCUMENT";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type AugmentedManifestsDocumentTypeFormat = (typeof AugmentedManifestsDocumentTypeFormat)[keyof typeof AugmentedManifestsDocumentTypeFormat];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const Split: {
18
+ readonly TEST: "TEST";
19
+ readonly TRAIN: "TRAIN";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type Split = (typeof Split)[keyof typeof Split];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const InvalidRequestDetailReason: {
30
+ readonly DOCUMENT_SIZE_EXCEEDED: "DOCUMENT_SIZE_EXCEEDED";
31
+ readonly PAGE_LIMIT_EXCEEDED: "PAGE_LIMIT_EXCEEDED";
32
+ readonly TEXTRACT_ACCESS_DENIED: "TEXTRACT_ACCESS_DENIED";
33
+ readonly UNSUPPORTED_DOC_TYPE: "UNSUPPORTED_DOC_TYPE";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type InvalidRequestDetailReason = (typeof InvalidRequestDetailReason)[keyof typeof InvalidRequestDetailReason];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const InvalidRequestReason: {
44
+ readonly INVALID_DOCUMENT: "INVALID_DOCUMENT";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type InvalidRequestReason = (typeof InvalidRequestReason)[keyof typeof InvalidRequestReason];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const LanguageCode: {
55
+ readonly AR: "ar";
56
+ readonly DE: "de";
57
+ readonly EN: "en";
58
+ readonly ES: "es";
59
+ readonly FR: "fr";
60
+ readonly HI: "hi";
61
+ readonly IT: "it";
62
+ readonly JA: "ja";
63
+ readonly KO: "ko";
64
+ readonly PT: "pt";
65
+ readonly ZH: "zh";
66
+ readonly ZH_TW: "zh-TW";
67
+ };
68
+ /**
69
+ * @public
70
+ */
71
+ export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
72
+ /**
73
+ * @public
74
+ * @enum
75
+ */
76
+ export declare const EntityType: {
77
+ readonly COMMERCIAL_ITEM: "COMMERCIAL_ITEM";
78
+ readonly DATE: "DATE";
79
+ readonly EVENT: "EVENT";
80
+ readonly LOCATION: "LOCATION";
81
+ readonly ORGANIZATION: "ORGANIZATION";
82
+ readonly OTHER: "OTHER";
83
+ readonly PERSON: "PERSON";
84
+ readonly QUANTITY: "QUANTITY";
85
+ readonly TITLE: "TITLE";
86
+ };
87
+ /**
88
+ * @public
89
+ */
90
+ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
91
+ /**
92
+ * @public
93
+ * @enum
94
+ */
95
+ export declare const SentimentType: {
96
+ readonly MIXED: "MIXED";
97
+ readonly NEGATIVE: "NEGATIVE";
98
+ readonly NEUTRAL: "NEUTRAL";
99
+ readonly POSITIVE: "POSITIVE";
100
+ };
101
+ /**
102
+ * @public
103
+ */
104
+ export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType];
105
+ /**
106
+ * @public
107
+ * @enum
108
+ */
109
+ export declare const SyntaxLanguageCode: {
110
+ readonly DE: "de";
111
+ readonly EN: "en";
112
+ readonly ES: "es";
113
+ readonly FR: "fr";
114
+ readonly IT: "it";
115
+ readonly PT: "pt";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type SyntaxLanguageCode = (typeof SyntaxLanguageCode)[keyof typeof SyntaxLanguageCode];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const PartOfSpeechTagType: {
126
+ readonly ADJ: "ADJ";
127
+ readonly ADP: "ADP";
128
+ readonly ADV: "ADV";
129
+ readonly AUX: "AUX";
130
+ readonly CCONJ: "CCONJ";
131
+ readonly CONJ: "CONJ";
132
+ readonly DET: "DET";
133
+ readonly INTJ: "INTJ";
134
+ readonly NOUN: "NOUN";
135
+ readonly NUM: "NUM";
136
+ readonly O: "O";
137
+ readonly PART: "PART";
138
+ readonly PRON: "PRON";
139
+ readonly PROPN: "PROPN";
140
+ readonly PUNCT: "PUNCT";
141
+ readonly SCONJ: "SCONJ";
142
+ readonly SYM: "SYM";
143
+ readonly VERB: "VERB";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type PartOfSpeechTagType = (typeof PartOfSpeechTagType)[keyof typeof PartOfSpeechTagType];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const TargetedSentimentEntityType: {
154
+ readonly ATTRIBUTE: "ATTRIBUTE";
155
+ readonly BOOK: "BOOK";
156
+ readonly BRAND: "BRAND";
157
+ readonly COMMERCIAL_ITEM: "COMMERCIAL_ITEM";
158
+ readonly DATE: "DATE";
159
+ readonly EVENT: "EVENT";
160
+ readonly FACILITY: "FACILITY";
161
+ readonly GAME: "GAME";
162
+ readonly LOCATION: "LOCATION";
163
+ readonly MOVIE: "MOVIE";
164
+ readonly MUSIC: "MUSIC";
165
+ readonly ORGANIZATION: "ORGANIZATION";
166
+ readonly OTHER: "OTHER";
167
+ readonly PERSON: "PERSON";
168
+ readonly PERSONAL_TITLE: "PERSONAL_TITLE";
169
+ readonly QUANTITY: "QUANTITY";
170
+ readonly SOFTWARE: "SOFTWARE";
171
+ };
172
+ /**
173
+ * @public
174
+ */
175
+ export type TargetedSentimentEntityType = (typeof TargetedSentimentEntityType)[keyof typeof TargetedSentimentEntityType];
176
+ /**
177
+ * @public
178
+ * @enum
179
+ */
180
+ export declare const BlockType: {
181
+ readonly LINE: "LINE";
182
+ readonly WORD: "WORD";
183
+ };
184
+ /**
185
+ * @public
186
+ */
187
+ export type BlockType = (typeof BlockType)[keyof typeof BlockType];
188
+ /**
189
+ * @public
190
+ * @enum
191
+ */
192
+ export declare const RelationshipType: {
193
+ readonly CHILD: "CHILD";
194
+ };
195
+ /**
196
+ * @public
197
+ */
198
+ export type RelationshipType = (typeof RelationshipType)[keyof typeof RelationshipType];
199
+ /**
200
+ * @public
201
+ * @enum
202
+ */
203
+ export declare const DocumentReadAction: {
204
+ readonly TEXTRACT_ANALYZE_DOCUMENT: "TEXTRACT_ANALYZE_DOCUMENT";
205
+ readonly TEXTRACT_DETECT_DOCUMENT_TEXT: "TEXTRACT_DETECT_DOCUMENT_TEXT";
206
+ };
207
+ /**
208
+ * @public
209
+ */
210
+ export type DocumentReadAction = (typeof DocumentReadAction)[keyof typeof DocumentReadAction];
211
+ /**
212
+ * @public
213
+ * @enum
214
+ */
215
+ export declare const DocumentReadMode: {
216
+ readonly FORCE_DOCUMENT_READ_ACTION: "FORCE_DOCUMENT_READ_ACTION";
217
+ readonly SERVICE_DEFAULT: "SERVICE_DEFAULT";
218
+ };
219
+ /**
220
+ * @public
221
+ */
222
+ export type DocumentReadMode = (typeof DocumentReadMode)[keyof typeof DocumentReadMode];
223
+ /**
224
+ * @public
225
+ * @enum
226
+ */
227
+ export declare const DocumentReadFeatureTypes: {
228
+ readonly FORMS: "FORMS";
229
+ readonly TABLES: "TABLES";
230
+ };
231
+ /**
232
+ * @public
233
+ */
234
+ export type DocumentReadFeatureTypes = (typeof DocumentReadFeatureTypes)[keyof typeof DocumentReadFeatureTypes];
235
+ /**
236
+ * @public
237
+ * @enum
238
+ */
239
+ export declare const DocumentType: {
240
+ readonly IMAGE: "IMAGE";
241
+ readonly MS_WORD: "MS_WORD";
242
+ readonly NATIVE_PDF: "NATIVE_PDF";
243
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
244
+ readonly SCANNED_PDF: "SCANNED_PDF";
245
+ readonly TEXTRACT_ANALYZE_DOCUMENT_JSON: "TEXTRACT_ANALYZE_DOCUMENT_JSON";
246
+ readonly TEXTRACT_DETECT_DOCUMENT_TEXT_JSON: "TEXTRACT_DETECT_DOCUMENT_TEXT_JSON";
247
+ };
248
+ /**
249
+ * @public
250
+ */
251
+ export type DocumentType = (typeof DocumentType)[keyof typeof DocumentType];
252
+ /**
253
+ * @public
254
+ * @enum
255
+ */
256
+ export declare const PageBasedErrorCode: {
257
+ readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
258
+ readonly PAGE_CHARACTERS_EXCEEDED: "PAGE_CHARACTERS_EXCEEDED";
259
+ readonly PAGE_SIZE_EXCEEDED: "PAGE_SIZE_EXCEEDED";
260
+ readonly TEXTRACT_BAD_PAGE: "TEXTRACT_BAD_PAGE";
261
+ readonly TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED: "TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED";
262
+ };
263
+ /**
264
+ * @public
265
+ */
266
+ export type PageBasedErrorCode = (typeof PageBasedErrorCode)[keyof typeof PageBasedErrorCode];
267
+ /**
268
+ * @public
269
+ * @enum
270
+ */
271
+ export declare const PageBasedWarningCode: {
272
+ readonly INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL: "INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL";
273
+ readonly INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL: "INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL";
274
+ };
275
+ /**
276
+ * @public
277
+ */
278
+ export type PageBasedWarningCode = (typeof PageBasedWarningCode)[keyof typeof PageBasedWarningCode];
279
+ /**
280
+ * @public
281
+ * @enum
282
+ */
283
+ export declare const PiiEntityType: {
284
+ readonly ADDRESS: "ADDRESS";
285
+ readonly AGE: "AGE";
286
+ readonly ALL: "ALL";
287
+ readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY";
288
+ readonly AWS_SECRET_KEY: "AWS_SECRET_KEY";
289
+ readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
290
+ readonly BANK_ROUTING: "BANK_ROUTING";
291
+ readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER";
292
+ readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER";
293
+ readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
294
+ readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
295
+ readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
296
+ readonly DATE_TIME: "DATE_TIME";
297
+ readonly DRIVER_ID: "DRIVER_ID";
298
+ readonly EMAIL: "EMAIL";
299
+ readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER";
300
+ readonly IN_AADHAAR: "IN_AADHAAR";
301
+ readonly IN_NREGA: "IN_NREGA";
302
+ readonly IN_PERMANENT_ACCOUNT_NUMBER: "IN_PERMANENT_ACCOUNT_NUMBER";
303
+ readonly IN_VOTER_NUMBER: "IN_VOTER_NUMBER";
304
+ readonly IP_ADDRESS: "IP_ADDRESS";
305
+ readonly LICENSE_PLATE: "LICENSE_PLATE";
306
+ readonly MAC_ADDRESS: "MAC_ADDRESS";
307
+ readonly NAME: "NAME";
308
+ readonly PASSPORT_NUMBER: "PASSPORT_NUMBER";
309
+ readonly PASSWORD: "PASSWORD";
310
+ readonly PHONE: "PHONE";
311
+ readonly PIN: "PIN";
312
+ readonly SSN: "SSN";
313
+ readonly SWIFT_CODE: "SWIFT_CODE";
314
+ readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER";
315
+ readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER";
316
+ readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
317
+ readonly URL: "URL";
318
+ readonly USERNAME: "USERNAME";
319
+ readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER";
320
+ readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER";
321
+ };
322
+ /**
323
+ * @public
324
+ */
325
+ export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
326
+ /**
327
+ * @public
328
+ * @enum
329
+ */
330
+ export declare const DatasetType: {
331
+ readonly TEST: "TEST";
332
+ readonly TRAIN: "TRAIN";
333
+ };
334
+ /**
335
+ * @public
336
+ */
337
+ export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
338
+ /**
339
+ * @public
340
+ * @enum
341
+ */
342
+ export declare const DatasetDataFormat: {
343
+ readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
344
+ readonly COMPREHEND_CSV: "COMPREHEND_CSV";
345
+ };
346
+ /**
347
+ * @public
348
+ */
349
+ export type DatasetDataFormat = (typeof DatasetDataFormat)[keyof typeof DatasetDataFormat];
350
+ /**
351
+ * @public
352
+ * @enum
353
+ */
354
+ export declare const InputFormat: {
355
+ readonly ONE_DOC_PER_FILE: "ONE_DOC_PER_FILE";
356
+ readonly ONE_DOC_PER_LINE: "ONE_DOC_PER_LINE";
357
+ };
358
+ /**
359
+ * @public
360
+ */
361
+ export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
362
+ /**
363
+ * @public
364
+ * @enum
365
+ */
366
+ export declare const DocumentClassifierDataFormat: {
367
+ readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
368
+ readonly COMPREHEND_CSV: "COMPREHEND_CSV";
369
+ };
370
+ /**
371
+ * @public
372
+ */
373
+ export type DocumentClassifierDataFormat = (typeof DocumentClassifierDataFormat)[keyof typeof DocumentClassifierDataFormat];
374
+ /**
375
+ * @public
376
+ * @enum
377
+ */
378
+ export declare const DocumentClassifierDocumentTypeFormat: {
379
+ readonly PLAIN_TEXT_DOCUMENT: "PLAIN_TEXT_DOCUMENT";
380
+ readonly SEMI_STRUCTURED_DOCUMENT: "SEMI_STRUCTURED_DOCUMENT";
381
+ };
382
+ /**
383
+ * @public
384
+ */
385
+ export type DocumentClassifierDocumentTypeFormat = (typeof DocumentClassifierDocumentTypeFormat)[keyof typeof DocumentClassifierDocumentTypeFormat];
386
+ /**
387
+ * @public
388
+ * @enum
389
+ */
390
+ export declare const DocumentClassifierMode: {
391
+ readonly MULTI_CLASS: "MULTI_CLASS";
392
+ readonly MULTI_LABEL: "MULTI_LABEL";
393
+ };
394
+ /**
395
+ * @public
396
+ */
397
+ export type DocumentClassifierMode = (typeof DocumentClassifierMode)[keyof typeof DocumentClassifierMode];
398
+ /**
399
+ * @public
400
+ * @enum
401
+ */
402
+ export declare const EntityRecognizerDataFormat: {
403
+ readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
404
+ readonly COMPREHEND_CSV: "COMPREHEND_CSV";
405
+ };
406
+ /**
407
+ * @public
408
+ */
409
+ export type EntityRecognizerDataFormat = (typeof EntityRecognizerDataFormat)[keyof typeof EntityRecognizerDataFormat];
410
+ /**
411
+ * @public
412
+ * @enum
413
+ */
414
+ export declare const ModelType: {
415
+ readonly DOCUMENT_CLASSIFIER: "DOCUMENT_CLASSIFIER";
416
+ readonly ENTITY_RECOGNIZER: "ENTITY_RECOGNIZER";
417
+ };
418
+ /**
419
+ * @public
420
+ */
421
+ export type ModelType = (typeof ModelType)[keyof typeof ModelType];
422
+ /**
423
+ * @public
424
+ * @enum
425
+ */
426
+ export declare const DatasetStatus: {
427
+ readonly COMPLETED: "COMPLETED";
428
+ readonly CREATING: "CREATING";
429
+ readonly FAILED: "FAILED";
430
+ };
431
+ /**
432
+ * @public
433
+ */
434
+ export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
435
+ /**
436
+ * @public
437
+ * @enum
438
+ */
439
+ export declare const JobStatus: {
440
+ readonly COMPLETED: "COMPLETED";
441
+ readonly FAILED: "FAILED";
442
+ readonly IN_PROGRESS: "IN_PROGRESS";
443
+ readonly STOPPED: "STOPPED";
444
+ readonly STOP_REQUESTED: "STOP_REQUESTED";
445
+ readonly SUBMITTED: "SUBMITTED";
446
+ };
447
+ /**
448
+ * @public
449
+ */
450
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
451
+ /**
452
+ * @public
453
+ * @enum
454
+ */
455
+ export declare const ModelStatus: {
456
+ readonly DELETING: "DELETING";
457
+ readonly IN_ERROR: "IN_ERROR";
458
+ readonly STOPPED: "STOPPED";
459
+ readonly STOP_REQUESTED: "STOP_REQUESTED";
460
+ readonly SUBMITTED: "SUBMITTED";
461
+ readonly TRAINED: "TRAINED";
462
+ readonly TRAINED_WITH_WARNING: "TRAINED_WITH_WARNING";
463
+ readonly TRAINING: "TRAINING";
464
+ };
465
+ /**
466
+ * @public
467
+ */
468
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
469
+ /**
470
+ * @public
471
+ * @enum
472
+ */
473
+ export declare const EndpointStatus: {
474
+ readonly CREATING: "CREATING";
475
+ readonly DELETING: "DELETING";
476
+ readonly FAILED: "FAILED";
477
+ readonly IN_SERVICE: "IN_SERVICE";
478
+ readonly UPDATING: "UPDATING";
479
+ };
480
+ /**
481
+ * @public
482
+ */
483
+ export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
484
+ /**
485
+ * @public
486
+ * @enum
487
+ */
488
+ export declare const FlywheelStatus: {
489
+ readonly ACTIVE: "ACTIVE";
490
+ readonly CREATING: "CREATING";
491
+ readonly DELETING: "DELETING";
492
+ readonly FAILED: "FAILED";
493
+ readonly UPDATING: "UPDATING";
494
+ };
495
+ /**
496
+ * @public
497
+ */
498
+ export type FlywheelStatus = (typeof FlywheelStatus)[keyof typeof FlywheelStatus];
499
+ /**
500
+ * @public
501
+ * @enum
502
+ */
503
+ export declare const FlywheelIterationStatus: {
504
+ readonly COMPLETED: "COMPLETED";
505
+ readonly EVALUATING: "EVALUATING";
506
+ readonly FAILED: "FAILED";
507
+ readonly STOPPED: "STOPPED";
508
+ readonly STOP_REQUESTED: "STOP_REQUESTED";
509
+ readonly TRAINING: "TRAINING";
510
+ };
511
+ /**
512
+ * @public
513
+ */
514
+ export type FlywheelIterationStatus = (typeof FlywheelIterationStatus)[keyof typeof FlywheelIterationStatus];
515
+ /**
516
+ * @public
517
+ * @enum
518
+ */
519
+ export declare const PiiEntitiesDetectionMode: {
520
+ readonly ONLY_OFFSETS: "ONLY_OFFSETS";
521
+ readonly ONLY_REDACTION: "ONLY_REDACTION";
522
+ };
523
+ /**
524
+ * @public
525
+ */
526
+ export type PiiEntitiesDetectionMode = (typeof PiiEntitiesDetectionMode)[keyof typeof PiiEntitiesDetectionMode];
527
+ /**
528
+ * @public
529
+ * @enum
530
+ */
531
+ export declare const PiiEntitiesDetectionMaskMode: {
532
+ readonly MASK: "MASK";
533
+ readonly REPLACE_WITH_PII_ENTITY_TYPE: "REPLACE_WITH_PII_ENTITY_TYPE";
534
+ };
535
+ /**
536
+ * @public
537
+ */
538
+ export type PiiEntitiesDetectionMaskMode = (typeof PiiEntitiesDetectionMaskMode)[keyof typeof PiiEntitiesDetectionMaskMode];
539
+ /**
540
+ * @public
541
+ * @enum
542
+ */
543
+ export declare const ToxicContentType: {
544
+ readonly GRAPHIC: "GRAPHIC";
545
+ readonly HARASSMENT_OR_ABUSE: "HARASSMENT_OR_ABUSE";
546
+ readonly HATE_SPEECH: "HATE_SPEECH";
547
+ readonly INSULT: "INSULT";
548
+ readonly PROFANITY: "PROFANITY";
549
+ readonly SEXUAL: "SEXUAL";
550
+ readonly VIOLENCE_OR_THREAT: "VIOLENCE_OR_THREAT";
551
+ };
552
+ /**
553
+ * @public
554
+ */
555
+ export type ToxicContentType = (typeof ToxicContentType)[keyof typeof ToxicContentType];