@aws-sdk/client-translate 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Translate.d.ts +274 -80
- package/dist-types/ts3.4/TranslateClient.d.ts +219 -88
- package/dist-types/ts3.4/commands/CreateParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteTerminologyCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetParallelDataCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTerminologyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ImportTerminologyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListLanguagesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListParallelDataCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTerminologiesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTextTranslationJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TranslateTextCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TranslateServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +766 -689
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListLanguagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListParallelDataPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTerminologiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTextTranslationJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,689 +1,766 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
|
|
3
|
-
|
|
4
|
-
export interface Term {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
export declare class LimitExceededException extends __BaseException {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
export
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
export interface
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
export interface
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
export declare enum
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
export interface ParallelDataDataLocation {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
export interface
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
|
|
3
|
+
|
|
4
|
+
export interface Term {
|
|
5
|
+
SourceText?: string;
|
|
6
|
+
|
|
7
|
+
TargetText?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface AppliedTerminology {
|
|
11
|
+
Name?: string;
|
|
12
|
+
|
|
13
|
+
Terms?: Term[];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export declare class ConflictException extends __BaseException {
|
|
17
|
+
readonly name: "ConflictException";
|
|
18
|
+
readonly $fault: "client";
|
|
19
|
+
Message?: string;
|
|
20
|
+
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
export declare enum EncryptionKeyType {
|
|
24
|
+
KMS = "KMS",
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface EncryptionKey {
|
|
28
|
+
Type: EncryptionKeyType | string | undefined;
|
|
29
|
+
|
|
30
|
+
Id: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
export declare enum ParallelDataFormat {
|
|
33
|
+
CSV = "CSV",
|
|
34
|
+
TMX = "TMX",
|
|
35
|
+
TSV = "TSV",
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ParallelDataConfig {
|
|
39
|
+
S3Uri: string | undefined;
|
|
40
|
+
|
|
41
|
+
Format: ParallelDataFormat | string | undefined;
|
|
42
|
+
}
|
|
43
|
+
export interface CreateParallelDataRequest {
|
|
44
|
+
Name: string | undefined;
|
|
45
|
+
|
|
46
|
+
Description?: string;
|
|
47
|
+
|
|
48
|
+
ParallelDataConfig: ParallelDataConfig | undefined;
|
|
49
|
+
|
|
50
|
+
EncryptionKey?: EncryptionKey;
|
|
51
|
+
|
|
52
|
+
ClientToken?: string;
|
|
53
|
+
}
|
|
54
|
+
export declare enum ParallelDataStatus {
|
|
55
|
+
ACTIVE = "ACTIVE",
|
|
56
|
+
CREATING = "CREATING",
|
|
57
|
+
DELETING = "DELETING",
|
|
58
|
+
FAILED = "FAILED",
|
|
59
|
+
UPDATING = "UPDATING",
|
|
60
|
+
}
|
|
61
|
+
export interface CreateParallelDataResponse {
|
|
62
|
+
Name?: string;
|
|
63
|
+
|
|
64
|
+
Status?: ParallelDataStatus | string;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export declare class InternalServerException extends __BaseException {
|
|
68
|
+
readonly name: "InternalServerException";
|
|
69
|
+
readonly $fault: "server";
|
|
70
|
+
Message?: string;
|
|
71
|
+
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
78
|
+
readonly name: "InvalidParameterValueException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
Message?: string;
|
|
81
|
+
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
88
|
+
readonly name: "InvalidRequestException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string;
|
|
91
|
+
|
|
92
|
+
constructor(
|
|
93
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export declare class LimitExceededException extends __BaseException {
|
|
98
|
+
readonly name: "LimitExceededException";
|
|
99
|
+
readonly $fault: "client";
|
|
100
|
+
Message?: string;
|
|
101
|
+
|
|
102
|
+
constructor(
|
|
103
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
108
|
+
readonly name: "TooManyRequestsException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
Message?: string;
|
|
111
|
+
|
|
112
|
+
constructor(
|
|
113
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
118
|
+
readonly name: "ConcurrentModificationException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
Message?: string;
|
|
121
|
+
|
|
122
|
+
constructor(
|
|
123
|
+
opts: __ExceptionOptionType<
|
|
124
|
+
ConcurrentModificationException,
|
|
125
|
+
__BaseException
|
|
126
|
+
>
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
export interface DeleteParallelDataRequest {
|
|
130
|
+
Name: string | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface DeleteParallelDataResponse {
|
|
133
|
+
Name?: string;
|
|
134
|
+
|
|
135
|
+
Status?: ParallelDataStatus | string;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
139
|
+
readonly name: "ResourceNotFoundException";
|
|
140
|
+
readonly $fault: "client";
|
|
141
|
+
Message?: string;
|
|
142
|
+
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
export interface DeleteTerminologyRequest {
|
|
148
|
+
Name: string | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface DescribeTextTranslationJobRequest {
|
|
151
|
+
JobId: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface InputDataConfig {
|
|
155
|
+
S3Uri: string | undefined;
|
|
156
|
+
|
|
157
|
+
ContentType: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface JobDetails {
|
|
161
|
+
TranslatedDocumentsCount?: number;
|
|
162
|
+
|
|
163
|
+
DocumentsWithErrorsCount?: number;
|
|
164
|
+
|
|
165
|
+
InputDocumentsCount?: number;
|
|
166
|
+
}
|
|
167
|
+
export declare enum JobStatus {
|
|
168
|
+
COMPLETED = "COMPLETED",
|
|
169
|
+
COMPLETED_WITH_ERROR = "COMPLETED_WITH_ERROR",
|
|
170
|
+
FAILED = "FAILED",
|
|
171
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
172
|
+
STOPPED = "STOPPED",
|
|
173
|
+
STOP_REQUESTED = "STOP_REQUESTED",
|
|
174
|
+
SUBMITTED = "SUBMITTED",
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export interface OutputDataConfig {
|
|
178
|
+
S3Uri: string | undefined;
|
|
179
|
+
|
|
180
|
+
EncryptionKey?: EncryptionKey;
|
|
181
|
+
}
|
|
182
|
+
export declare enum Formality {
|
|
183
|
+
FORMAL = "FORMAL",
|
|
184
|
+
INFORMAL = "INFORMAL",
|
|
185
|
+
}
|
|
186
|
+
export declare enum Profanity {
|
|
187
|
+
MASK = "MASK",
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface TranslationSettings {
|
|
191
|
+
Formality?: Formality | string;
|
|
192
|
+
|
|
193
|
+
Profanity?: Profanity | string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export interface TextTranslationJobProperties {
|
|
197
|
+
JobId?: string;
|
|
198
|
+
|
|
199
|
+
JobName?: string;
|
|
200
|
+
|
|
201
|
+
JobStatus?: JobStatus | string;
|
|
202
|
+
|
|
203
|
+
JobDetails?: JobDetails;
|
|
204
|
+
|
|
205
|
+
SourceLanguageCode?: string;
|
|
206
|
+
|
|
207
|
+
TargetLanguageCodes?: string[];
|
|
208
|
+
|
|
209
|
+
TerminologyNames?: string[];
|
|
210
|
+
|
|
211
|
+
ParallelDataNames?: string[];
|
|
212
|
+
|
|
213
|
+
Message?: string;
|
|
214
|
+
|
|
215
|
+
SubmittedTime?: Date;
|
|
216
|
+
|
|
217
|
+
EndTime?: Date;
|
|
218
|
+
|
|
219
|
+
InputDataConfig?: InputDataConfig;
|
|
220
|
+
|
|
221
|
+
OutputDataConfig?: OutputDataConfig;
|
|
222
|
+
|
|
223
|
+
DataAccessRoleArn?: string;
|
|
224
|
+
|
|
225
|
+
Settings?: TranslationSettings;
|
|
226
|
+
}
|
|
227
|
+
export interface DescribeTextTranslationJobResponse {
|
|
228
|
+
TextTranslationJobProperties?: TextTranslationJobProperties;
|
|
229
|
+
}
|
|
230
|
+
export interface GetParallelDataRequest {
|
|
231
|
+
Name: string | undefined;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export interface ParallelDataDataLocation {
|
|
235
|
+
RepositoryType: string | undefined;
|
|
236
|
+
|
|
237
|
+
Location: string | undefined;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface ParallelDataProperties {
|
|
241
|
+
Name?: string;
|
|
242
|
+
|
|
243
|
+
Arn?: string;
|
|
244
|
+
|
|
245
|
+
Description?: string;
|
|
246
|
+
|
|
247
|
+
Status?: ParallelDataStatus | string;
|
|
248
|
+
|
|
249
|
+
SourceLanguageCode?: string;
|
|
250
|
+
|
|
251
|
+
TargetLanguageCodes?: string[];
|
|
252
|
+
|
|
253
|
+
ParallelDataConfig?: ParallelDataConfig;
|
|
254
|
+
|
|
255
|
+
Message?: string;
|
|
256
|
+
|
|
257
|
+
ImportedDataSize?: number;
|
|
258
|
+
|
|
259
|
+
ImportedRecordCount?: number;
|
|
260
|
+
|
|
261
|
+
FailedRecordCount?: number;
|
|
262
|
+
|
|
263
|
+
SkippedRecordCount?: number;
|
|
264
|
+
|
|
265
|
+
EncryptionKey?: EncryptionKey;
|
|
266
|
+
|
|
267
|
+
CreatedAt?: Date;
|
|
268
|
+
|
|
269
|
+
LastUpdatedAt?: Date;
|
|
270
|
+
|
|
271
|
+
LatestUpdateAttemptStatus?: ParallelDataStatus | string;
|
|
272
|
+
|
|
273
|
+
LatestUpdateAttemptAt?: Date;
|
|
274
|
+
}
|
|
275
|
+
export interface GetParallelDataResponse {
|
|
276
|
+
ParallelDataProperties?: ParallelDataProperties;
|
|
277
|
+
|
|
278
|
+
DataLocation?: ParallelDataDataLocation;
|
|
279
|
+
|
|
280
|
+
AuxiliaryDataLocation?: ParallelDataDataLocation;
|
|
281
|
+
|
|
282
|
+
LatestUpdateAttemptAuxiliaryDataLocation?: ParallelDataDataLocation;
|
|
283
|
+
}
|
|
284
|
+
export declare enum TerminologyDataFormat {
|
|
285
|
+
CSV = "CSV",
|
|
286
|
+
TMX = "TMX",
|
|
287
|
+
TSV = "TSV",
|
|
288
|
+
}
|
|
289
|
+
export interface GetTerminologyRequest {
|
|
290
|
+
Name: string | undefined;
|
|
291
|
+
|
|
292
|
+
TerminologyDataFormat?: TerminologyDataFormat | string;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export interface TerminologyDataLocation {
|
|
296
|
+
RepositoryType: string | undefined;
|
|
297
|
+
|
|
298
|
+
Location: string | undefined;
|
|
299
|
+
}
|
|
300
|
+
export declare enum Directionality {
|
|
301
|
+
MULTI = "MULTI",
|
|
302
|
+
UNI = "UNI",
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export interface TerminologyProperties {
|
|
306
|
+
Name?: string;
|
|
307
|
+
|
|
308
|
+
Description?: string;
|
|
309
|
+
|
|
310
|
+
Arn?: string;
|
|
311
|
+
|
|
312
|
+
SourceLanguageCode?: string;
|
|
313
|
+
|
|
314
|
+
TargetLanguageCodes?: string[];
|
|
315
|
+
|
|
316
|
+
EncryptionKey?: EncryptionKey;
|
|
317
|
+
|
|
318
|
+
SizeBytes?: number;
|
|
319
|
+
|
|
320
|
+
TermCount?: number;
|
|
321
|
+
|
|
322
|
+
CreatedAt?: Date;
|
|
323
|
+
|
|
324
|
+
LastUpdatedAt?: Date;
|
|
325
|
+
|
|
326
|
+
Directionality?: Directionality | string;
|
|
327
|
+
|
|
328
|
+
Message?: string;
|
|
329
|
+
|
|
330
|
+
SkippedTermCount?: number;
|
|
331
|
+
|
|
332
|
+
Format?: TerminologyDataFormat | string;
|
|
333
|
+
}
|
|
334
|
+
export interface GetTerminologyResponse {
|
|
335
|
+
TerminologyProperties?: TerminologyProperties;
|
|
336
|
+
|
|
337
|
+
TerminologyDataLocation?: TerminologyDataLocation;
|
|
338
|
+
|
|
339
|
+
AuxiliaryDataLocation?: TerminologyDataLocation;
|
|
340
|
+
}
|
|
341
|
+
export declare enum MergeStrategy {
|
|
342
|
+
OVERWRITE = "OVERWRITE",
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export interface TerminologyData {
|
|
346
|
+
File: Uint8Array | undefined;
|
|
347
|
+
|
|
348
|
+
Format: TerminologyDataFormat | string | undefined;
|
|
349
|
+
|
|
350
|
+
Directionality?: Directionality | string;
|
|
351
|
+
}
|
|
352
|
+
export interface ImportTerminologyRequest {
|
|
353
|
+
Name: string | undefined;
|
|
354
|
+
|
|
355
|
+
MergeStrategy: MergeStrategy | string | undefined;
|
|
356
|
+
|
|
357
|
+
Description?: string;
|
|
358
|
+
|
|
359
|
+
TerminologyData: TerminologyData | undefined;
|
|
360
|
+
|
|
361
|
+
EncryptionKey?: EncryptionKey;
|
|
362
|
+
}
|
|
363
|
+
export interface ImportTerminologyResponse {
|
|
364
|
+
TerminologyProperties?: TerminologyProperties;
|
|
365
|
+
|
|
366
|
+
AuxiliaryDataLocation?: TerminologyDataLocation;
|
|
367
|
+
}
|
|
368
|
+
export declare enum DisplayLanguageCode {
|
|
369
|
+
DE = "de",
|
|
370
|
+
EN = "en",
|
|
371
|
+
ES = "es",
|
|
372
|
+
FR = "fr",
|
|
373
|
+
IT = "it",
|
|
374
|
+
JA = "ja",
|
|
375
|
+
KO = "ko",
|
|
376
|
+
PT = "pt",
|
|
377
|
+
ZH = "zh",
|
|
378
|
+
ZH_TW = "zh-TW",
|
|
379
|
+
}
|
|
380
|
+
export interface ListLanguagesRequest {
|
|
381
|
+
DisplayLanguageCode?: DisplayLanguageCode | string;
|
|
382
|
+
|
|
383
|
+
NextToken?: string;
|
|
384
|
+
|
|
385
|
+
MaxResults?: number;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
export interface Language {
|
|
389
|
+
LanguageName: string | undefined;
|
|
390
|
+
|
|
391
|
+
LanguageCode: string | undefined;
|
|
392
|
+
}
|
|
393
|
+
export interface ListLanguagesResponse {
|
|
394
|
+
Languages?: Language[];
|
|
395
|
+
|
|
396
|
+
DisplayLanguageCode?: DisplayLanguageCode | string;
|
|
397
|
+
|
|
398
|
+
NextToken?: string;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export declare class UnsupportedDisplayLanguageCodeException extends __BaseException {
|
|
402
|
+
readonly name: "UnsupportedDisplayLanguageCodeException";
|
|
403
|
+
readonly $fault: "client";
|
|
404
|
+
Message?: string;
|
|
405
|
+
|
|
406
|
+
DisplayLanguageCode?: string;
|
|
407
|
+
|
|
408
|
+
constructor(
|
|
409
|
+
opts: __ExceptionOptionType<
|
|
410
|
+
UnsupportedDisplayLanguageCodeException,
|
|
411
|
+
__BaseException
|
|
412
|
+
>
|
|
413
|
+
);
|
|
414
|
+
}
|
|
415
|
+
export interface ListParallelDataRequest {
|
|
416
|
+
NextToken?: string;
|
|
417
|
+
|
|
418
|
+
MaxResults?: number;
|
|
419
|
+
}
|
|
420
|
+
export interface ListParallelDataResponse {
|
|
421
|
+
ParallelDataPropertiesList?: ParallelDataProperties[];
|
|
422
|
+
|
|
423
|
+
NextToken?: string;
|
|
424
|
+
}
|
|
425
|
+
export interface ListTerminologiesRequest {
|
|
426
|
+
NextToken?: string;
|
|
427
|
+
|
|
428
|
+
MaxResults?: number;
|
|
429
|
+
}
|
|
430
|
+
export interface ListTerminologiesResponse {
|
|
431
|
+
TerminologyPropertiesList?: TerminologyProperties[];
|
|
432
|
+
|
|
433
|
+
NextToken?: string;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export declare class InvalidFilterException extends __BaseException {
|
|
437
|
+
readonly name: "InvalidFilterException";
|
|
438
|
+
readonly $fault: "client";
|
|
439
|
+
Message?: string;
|
|
440
|
+
|
|
441
|
+
constructor(
|
|
442
|
+
opts: __ExceptionOptionType<InvalidFilterException, __BaseException>
|
|
443
|
+
);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export interface TextTranslationJobFilter {
|
|
447
|
+
JobName?: string;
|
|
448
|
+
|
|
449
|
+
JobStatus?: JobStatus | string;
|
|
450
|
+
|
|
451
|
+
SubmittedBeforeTime?: Date;
|
|
452
|
+
|
|
453
|
+
SubmittedAfterTime?: Date;
|
|
454
|
+
}
|
|
455
|
+
export interface ListTextTranslationJobsRequest {
|
|
456
|
+
Filter?: TextTranslationJobFilter;
|
|
457
|
+
|
|
458
|
+
NextToken?: string;
|
|
459
|
+
|
|
460
|
+
MaxResults?: number;
|
|
461
|
+
}
|
|
462
|
+
export interface ListTextTranslationJobsResponse {
|
|
463
|
+
TextTranslationJobPropertiesList?: TextTranslationJobProperties[];
|
|
464
|
+
|
|
465
|
+
NextToken?: string;
|
|
466
|
+
}
|
|
467
|
+
export interface StartTextTranslationJobRequest {
|
|
468
|
+
JobName?: string;
|
|
469
|
+
|
|
470
|
+
InputDataConfig: InputDataConfig | undefined;
|
|
471
|
+
|
|
472
|
+
OutputDataConfig: OutputDataConfig | undefined;
|
|
473
|
+
|
|
474
|
+
DataAccessRoleArn: string | undefined;
|
|
475
|
+
|
|
476
|
+
SourceLanguageCode: string | undefined;
|
|
477
|
+
|
|
478
|
+
TargetLanguageCodes: string[] | undefined;
|
|
479
|
+
|
|
480
|
+
TerminologyNames?: string[];
|
|
481
|
+
|
|
482
|
+
ParallelDataNames?: string[];
|
|
483
|
+
|
|
484
|
+
ClientToken?: string;
|
|
485
|
+
|
|
486
|
+
Settings?: TranslationSettings;
|
|
487
|
+
}
|
|
488
|
+
export interface StartTextTranslationJobResponse {
|
|
489
|
+
JobId?: string;
|
|
490
|
+
|
|
491
|
+
JobStatus?: JobStatus | string;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
export declare class UnsupportedLanguagePairException extends __BaseException {
|
|
495
|
+
readonly name: "UnsupportedLanguagePairException";
|
|
496
|
+
readonly $fault: "client";
|
|
497
|
+
Message?: string;
|
|
498
|
+
|
|
499
|
+
SourceLanguageCode?: string;
|
|
500
|
+
|
|
501
|
+
TargetLanguageCode?: string;
|
|
502
|
+
|
|
503
|
+
constructor(
|
|
504
|
+
opts: __ExceptionOptionType<
|
|
505
|
+
UnsupportedLanguagePairException,
|
|
506
|
+
__BaseException
|
|
507
|
+
>
|
|
508
|
+
);
|
|
509
|
+
}
|
|
510
|
+
export interface StopTextTranslationJobRequest {
|
|
511
|
+
JobId: string | undefined;
|
|
512
|
+
}
|
|
513
|
+
export interface StopTextTranslationJobResponse {
|
|
514
|
+
JobId?: string;
|
|
515
|
+
|
|
516
|
+
JobStatus?: JobStatus | string;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
export declare class DetectedLanguageLowConfidenceException extends __BaseException {
|
|
520
|
+
readonly name: "DetectedLanguageLowConfidenceException";
|
|
521
|
+
readonly $fault: "client";
|
|
522
|
+
Message?: string;
|
|
523
|
+
|
|
524
|
+
DetectedLanguageCode?: string;
|
|
525
|
+
|
|
526
|
+
constructor(
|
|
527
|
+
opts: __ExceptionOptionType<
|
|
528
|
+
DetectedLanguageLowConfidenceException,
|
|
529
|
+
__BaseException
|
|
530
|
+
>
|
|
531
|
+
);
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
535
|
+
readonly name: "ServiceUnavailableException";
|
|
536
|
+
readonly $fault: "server";
|
|
537
|
+
Message?: string;
|
|
538
|
+
|
|
539
|
+
constructor(
|
|
540
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
541
|
+
);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export declare class TextSizeLimitExceededException extends __BaseException {
|
|
545
|
+
readonly name: "TextSizeLimitExceededException";
|
|
546
|
+
readonly $fault: "client";
|
|
547
|
+
Message?: string;
|
|
548
|
+
|
|
549
|
+
constructor(
|
|
550
|
+
opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
|
|
551
|
+
);
|
|
552
|
+
}
|
|
553
|
+
export interface TranslateTextRequest {
|
|
554
|
+
Text: string | undefined;
|
|
555
|
+
|
|
556
|
+
TerminologyNames?: string[];
|
|
557
|
+
|
|
558
|
+
SourceLanguageCode: string | undefined;
|
|
559
|
+
|
|
560
|
+
TargetLanguageCode: string | undefined;
|
|
561
|
+
|
|
562
|
+
Settings?: TranslationSettings;
|
|
563
|
+
}
|
|
564
|
+
export interface TranslateTextResponse {
|
|
565
|
+
TranslatedText: string | undefined;
|
|
566
|
+
|
|
567
|
+
SourceLanguageCode: string | undefined;
|
|
568
|
+
|
|
569
|
+
TargetLanguageCode: string | undefined;
|
|
570
|
+
|
|
571
|
+
AppliedTerminologies?: AppliedTerminology[];
|
|
572
|
+
|
|
573
|
+
AppliedSettings?: TranslationSettings;
|
|
574
|
+
}
|
|
575
|
+
export interface UpdateParallelDataRequest {
|
|
576
|
+
Name: string | undefined;
|
|
577
|
+
|
|
578
|
+
Description?: string;
|
|
579
|
+
|
|
580
|
+
ParallelDataConfig: ParallelDataConfig | undefined;
|
|
581
|
+
|
|
582
|
+
ClientToken?: string;
|
|
583
|
+
}
|
|
584
|
+
export interface UpdateParallelDataResponse {
|
|
585
|
+
Name?: string;
|
|
586
|
+
|
|
587
|
+
Status?: ParallelDataStatus | string;
|
|
588
|
+
|
|
589
|
+
LatestUpdateAttemptStatus?: ParallelDataStatus | string;
|
|
590
|
+
|
|
591
|
+
LatestUpdateAttemptAt?: Date;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
export declare const TermFilterSensitiveLog: (obj: Term) => any;
|
|
595
|
+
|
|
596
|
+
export declare const AppliedTerminologyFilterSensitiveLog: (
|
|
597
|
+
obj: AppliedTerminology
|
|
598
|
+
) => any;
|
|
599
|
+
|
|
600
|
+
export declare const EncryptionKeyFilterSensitiveLog: (
|
|
601
|
+
obj: EncryptionKey
|
|
602
|
+
) => any;
|
|
603
|
+
|
|
604
|
+
export declare const ParallelDataConfigFilterSensitiveLog: (
|
|
605
|
+
obj: ParallelDataConfig
|
|
606
|
+
) => any;
|
|
607
|
+
|
|
608
|
+
export declare const CreateParallelDataRequestFilterSensitiveLog: (
|
|
609
|
+
obj: CreateParallelDataRequest
|
|
610
|
+
) => any;
|
|
611
|
+
|
|
612
|
+
export declare const CreateParallelDataResponseFilterSensitiveLog: (
|
|
613
|
+
obj: CreateParallelDataResponse
|
|
614
|
+
) => any;
|
|
615
|
+
|
|
616
|
+
export declare const DeleteParallelDataRequestFilterSensitiveLog: (
|
|
617
|
+
obj: DeleteParallelDataRequest
|
|
618
|
+
) => any;
|
|
619
|
+
|
|
620
|
+
export declare const DeleteParallelDataResponseFilterSensitiveLog: (
|
|
621
|
+
obj: DeleteParallelDataResponse
|
|
622
|
+
) => any;
|
|
623
|
+
|
|
624
|
+
export declare const DeleteTerminologyRequestFilterSensitiveLog: (
|
|
625
|
+
obj: DeleteTerminologyRequest
|
|
626
|
+
) => any;
|
|
627
|
+
|
|
628
|
+
export declare const DescribeTextTranslationJobRequestFilterSensitiveLog: (
|
|
629
|
+
obj: DescribeTextTranslationJobRequest
|
|
630
|
+
) => any;
|
|
631
|
+
|
|
632
|
+
export declare const InputDataConfigFilterSensitiveLog: (
|
|
633
|
+
obj: InputDataConfig
|
|
634
|
+
) => any;
|
|
635
|
+
|
|
636
|
+
export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
|
|
637
|
+
|
|
638
|
+
export declare const OutputDataConfigFilterSensitiveLog: (
|
|
639
|
+
obj: OutputDataConfig
|
|
640
|
+
) => any;
|
|
641
|
+
|
|
642
|
+
export declare const TranslationSettingsFilterSensitiveLog: (
|
|
643
|
+
obj: TranslationSettings
|
|
644
|
+
) => any;
|
|
645
|
+
|
|
646
|
+
export declare const TextTranslationJobPropertiesFilterSensitiveLog: (
|
|
647
|
+
obj: TextTranslationJobProperties
|
|
648
|
+
) => any;
|
|
649
|
+
|
|
650
|
+
export declare const DescribeTextTranslationJobResponseFilterSensitiveLog: (
|
|
651
|
+
obj: DescribeTextTranslationJobResponse
|
|
652
|
+
) => any;
|
|
653
|
+
|
|
654
|
+
export declare const GetParallelDataRequestFilterSensitiveLog: (
|
|
655
|
+
obj: GetParallelDataRequest
|
|
656
|
+
) => any;
|
|
657
|
+
|
|
658
|
+
export declare const ParallelDataDataLocationFilterSensitiveLog: (
|
|
659
|
+
obj: ParallelDataDataLocation
|
|
660
|
+
) => any;
|
|
661
|
+
|
|
662
|
+
export declare const ParallelDataPropertiesFilterSensitiveLog: (
|
|
663
|
+
obj: ParallelDataProperties
|
|
664
|
+
) => any;
|
|
665
|
+
|
|
666
|
+
export declare const GetParallelDataResponseFilterSensitiveLog: (
|
|
667
|
+
obj: GetParallelDataResponse
|
|
668
|
+
) => any;
|
|
669
|
+
|
|
670
|
+
export declare const GetTerminologyRequestFilterSensitiveLog: (
|
|
671
|
+
obj: GetTerminologyRequest
|
|
672
|
+
) => any;
|
|
673
|
+
|
|
674
|
+
export declare const TerminologyDataLocationFilterSensitiveLog: (
|
|
675
|
+
obj: TerminologyDataLocation
|
|
676
|
+
) => any;
|
|
677
|
+
|
|
678
|
+
export declare const TerminologyPropertiesFilterSensitiveLog: (
|
|
679
|
+
obj: TerminologyProperties
|
|
680
|
+
) => any;
|
|
681
|
+
|
|
682
|
+
export declare const GetTerminologyResponseFilterSensitiveLog: (
|
|
683
|
+
obj: GetTerminologyResponse
|
|
684
|
+
) => any;
|
|
685
|
+
|
|
686
|
+
export declare const TerminologyDataFilterSensitiveLog: (
|
|
687
|
+
obj: TerminologyData
|
|
688
|
+
) => any;
|
|
689
|
+
|
|
690
|
+
export declare const ImportTerminologyRequestFilterSensitiveLog: (
|
|
691
|
+
obj: ImportTerminologyRequest
|
|
692
|
+
) => any;
|
|
693
|
+
|
|
694
|
+
export declare const ImportTerminologyResponseFilterSensitiveLog: (
|
|
695
|
+
obj: ImportTerminologyResponse
|
|
696
|
+
) => any;
|
|
697
|
+
|
|
698
|
+
export declare const ListLanguagesRequestFilterSensitiveLog: (
|
|
699
|
+
obj: ListLanguagesRequest
|
|
700
|
+
) => any;
|
|
701
|
+
|
|
702
|
+
export declare const LanguageFilterSensitiveLog: (obj: Language) => any;
|
|
703
|
+
|
|
704
|
+
export declare const ListLanguagesResponseFilterSensitiveLog: (
|
|
705
|
+
obj: ListLanguagesResponse
|
|
706
|
+
) => any;
|
|
707
|
+
|
|
708
|
+
export declare const ListParallelDataRequestFilterSensitiveLog: (
|
|
709
|
+
obj: ListParallelDataRequest
|
|
710
|
+
) => any;
|
|
711
|
+
|
|
712
|
+
export declare const ListParallelDataResponseFilterSensitiveLog: (
|
|
713
|
+
obj: ListParallelDataResponse
|
|
714
|
+
) => any;
|
|
715
|
+
|
|
716
|
+
export declare const ListTerminologiesRequestFilterSensitiveLog: (
|
|
717
|
+
obj: ListTerminologiesRequest
|
|
718
|
+
) => any;
|
|
719
|
+
|
|
720
|
+
export declare const ListTerminologiesResponseFilterSensitiveLog: (
|
|
721
|
+
obj: ListTerminologiesResponse
|
|
722
|
+
) => any;
|
|
723
|
+
|
|
724
|
+
export declare const TextTranslationJobFilterFilterSensitiveLog: (
|
|
725
|
+
obj: TextTranslationJobFilter
|
|
726
|
+
) => any;
|
|
727
|
+
|
|
728
|
+
export declare const ListTextTranslationJobsRequestFilterSensitiveLog: (
|
|
729
|
+
obj: ListTextTranslationJobsRequest
|
|
730
|
+
) => any;
|
|
731
|
+
|
|
732
|
+
export declare const ListTextTranslationJobsResponseFilterSensitiveLog: (
|
|
733
|
+
obj: ListTextTranslationJobsResponse
|
|
734
|
+
) => any;
|
|
735
|
+
|
|
736
|
+
export declare const StartTextTranslationJobRequestFilterSensitiveLog: (
|
|
737
|
+
obj: StartTextTranslationJobRequest
|
|
738
|
+
) => any;
|
|
739
|
+
|
|
740
|
+
export declare const StartTextTranslationJobResponseFilterSensitiveLog: (
|
|
741
|
+
obj: StartTextTranslationJobResponse
|
|
742
|
+
) => any;
|
|
743
|
+
|
|
744
|
+
export declare const StopTextTranslationJobRequestFilterSensitiveLog: (
|
|
745
|
+
obj: StopTextTranslationJobRequest
|
|
746
|
+
) => any;
|
|
747
|
+
|
|
748
|
+
export declare const StopTextTranslationJobResponseFilterSensitiveLog: (
|
|
749
|
+
obj: StopTextTranslationJobResponse
|
|
750
|
+
) => any;
|
|
751
|
+
|
|
752
|
+
export declare const TranslateTextRequestFilterSensitiveLog: (
|
|
753
|
+
obj: TranslateTextRequest
|
|
754
|
+
) => any;
|
|
755
|
+
|
|
756
|
+
export declare const TranslateTextResponseFilterSensitiveLog: (
|
|
757
|
+
obj: TranslateTextResponse
|
|
758
|
+
) => any;
|
|
759
|
+
|
|
760
|
+
export declare const UpdateParallelDataRequestFilterSensitiveLog: (
|
|
761
|
+
obj: UpdateParallelDataRequest
|
|
762
|
+
) => any;
|
|
763
|
+
|
|
764
|
+
export declare const UpdateParallelDataResponseFilterSensitiveLog: (
|
|
765
|
+
obj: UpdateParallelDataResponse
|
|
766
|
+
) => any;
|