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