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