@aws-sdk/client-translate 3.295.0 → 3.297.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 (28) hide show
  1. package/dist-types/Translate.d.ts +19 -0
  2. package/dist-types/TranslateClient.d.ts +24 -4
  3. package/dist-types/commands/CreateParallelDataCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteParallelDataCommand.d.ts +16 -0
  5. package/dist-types/commands/DeleteTerminologyCommand.d.ts +16 -0
  6. package/dist-types/commands/DescribeTextTranslationJobCommand.d.ts +16 -0
  7. package/dist-types/commands/GetParallelDataCommand.d.ts +16 -0
  8. package/dist-types/commands/GetTerminologyCommand.d.ts +16 -0
  9. package/dist-types/commands/ImportTerminologyCommand.d.ts +16 -0
  10. package/dist-types/commands/ListLanguagesCommand.d.ts +16 -0
  11. package/dist-types/commands/ListParallelDataCommand.d.ts +16 -0
  12. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  13. package/dist-types/commands/ListTerminologiesCommand.d.ts +16 -0
  14. package/dist-types/commands/ListTextTranslationJobsCommand.d.ts +16 -0
  15. package/dist-types/commands/StartTextTranslationJobCommand.d.ts +16 -0
  16. package/dist-types/commands/StopTextTranslationJobCommand.d.ts +16 -0
  17. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/TranslateTextCommand.d.ts +16 -0
  19. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  20. package/dist-types/commands/UpdateParallelDataCommand.d.ts +16 -0
  21. package/dist-types/models/TranslateServiceException.d.ts +2 -0
  22. package/dist-types/models/models_0.d.ts +167 -0
  23. package/dist-types/pagination/Interfaces.d.ts +3 -0
  24. package/dist-types/pagination/ListLanguagesPaginator.d.ts +3 -0
  25. package/dist-types/pagination/ListParallelDataPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListTerminologiesPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListTextTranslationJobsPaginator.d.ts +3 -0
  28. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The term being translated by the custom terminology.</p>
5
6
  */
6
7
  export interface Term {
@@ -14,6 +15,7 @@ export interface Term {
14
15
  TargetText?: string;
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>The custom terminology applied to the input text by Amazon Translate for the translated text
18
20
  * response. This is optional in the response and will only be present if you specified
19
21
  * terminology input in the request. Currently, only one terminology can be applied per
@@ -33,6 +35,7 @@ export interface AppliedTerminology {
33
35
  Terms?: Term[];
34
36
  }
35
37
  /**
38
+ * @public
36
39
  * <p>Another modification is being made. That modification must complete before you can make
37
40
  * your change.</p>
38
41
  */
@@ -46,6 +49,7 @@ export declare class ConcurrentModificationException extends __BaseException {
46
49
  constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
47
50
  }
48
51
  /**
52
+ * @public
49
53
  * <p>There was a conflict processing the request. Try your request again.</p>
50
54
  */
51
55
  export declare class ConflictException extends __BaseException {
@@ -57,10 +61,14 @@ export declare class ConflictException extends __BaseException {
57
61
  */
58
62
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
59
63
  }
64
+ /**
65
+ * @public
66
+ */
60
67
  export declare enum EncryptionKeyType {
61
68
  KMS = "KMS"
62
69
  }
63
70
  /**
71
+ * @public
64
72
  * <p>The encryption key used to encrypt this object.</p>
65
73
  */
66
74
  export interface EncryptionKey {
@@ -73,12 +81,16 @@ export interface EncryptionKey {
73
81
  */
74
82
  Id: string | undefined;
75
83
  }
84
+ /**
85
+ * @public
86
+ */
76
87
  export declare enum ParallelDataFormat {
77
88
  CSV = "CSV",
78
89
  TMX = "TMX",
79
90
  TSV = "TSV"
80
91
  }
81
92
  /**
93
+ * @public
82
94
  * <p>Specifies the format and S3 location of the parallel data input file.</p>
83
95
  */
84
96
  export interface ParallelDataConfig {
@@ -93,6 +105,7 @@ export interface ParallelDataConfig {
93
105
  Format: ParallelDataFormat | string | undefined;
94
106
  }
95
107
  /**
108
+ * @public
96
109
  * <p>A key-value pair that adds as a metadata to a resource used by Amazon Translate. </p>
97
110
  */
98
111
  export interface Tag {
@@ -106,6 +119,9 @@ export interface Tag {
106
119
  */
107
120
  Value: string | undefined;
108
121
  }
122
+ /**
123
+ * @public
124
+ */
109
125
  export interface CreateParallelDataRequest {
110
126
  /**
111
127
  * <p>A custom name for the parallel data resource in Amazon Translate. You must assign a name
@@ -137,6 +153,9 @@ export interface CreateParallelDataRequest {
137
153
  */
138
154
  Tags?: Tag[];
139
155
  }
156
+ /**
157
+ * @public
158
+ */
140
159
  export declare enum ParallelDataStatus {
141
160
  ACTIVE = "ACTIVE",
142
161
  CREATING = "CREATING",
@@ -144,6 +163,9 @@ export declare enum ParallelDataStatus {
144
163
  FAILED = "FAILED",
145
164
  UPDATING = "UPDATING"
146
165
  }
166
+ /**
167
+ * @public
168
+ */
147
169
  export interface CreateParallelDataResponse {
148
170
  /**
149
171
  * <p>The custom name that you assigned to the parallel data resource.</p>
@@ -156,6 +178,7 @@ export interface CreateParallelDataResponse {
156
178
  Status?: ParallelDataStatus | string;
157
179
  }
158
180
  /**
181
+ * @public
159
182
  * <p>An internal server error occurred. Retry your request.</p>
160
183
  */
161
184
  export declare class InternalServerException extends __BaseException {
@@ -168,6 +191,7 @@ export declare class InternalServerException extends __BaseException {
168
191
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
169
192
  }
170
193
  /**
194
+ * @public
171
195
  * <p>The value of the parameter is not valid. Review the value of the parameter you are using
172
196
  * to correct it, and then retry your operation.</p>
173
197
  */
@@ -181,6 +205,7 @@ export declare class InvalidParameterValueException extends __BaseException {
181
205
  constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
182
206
  }
183
207
  /**
208
+ * @public
184
209
  * <p> The request that you made is not valid. Check your request to determine why it's not
185
210
  * valid and then retry the request. </p>
186
211
  */
@@ -194,6 +219,7 @@ export declare class InvalidRequestException extends __BaseException {
194
219
  constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
195
220
  }
196
221
  /**
222
+ * @public
197
223
  * <p>The specified limit has been exceeded. Review your request and retry it with a quantity
198
224
  * below the stated limit.</p>
199
225
  */
@@ -207,6 +233,7 @@ export declare class LimitExceededException extends __BaseException {
207
233
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
208
234
  }
209
235
  /**
236
+ * @public
210
237
  * <p> You have made too many requests within a short period of time. Wait for a short time and
211
238
  * then try your request again.</p>
212
239
  */
@@ -220,6 +247,7 @@ export declare class TooManyRequestsException extends __BaseException {
220
247
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
221
248
  }
222
249
  /**
250
+ * @public
223
251
  * <p>You have added too many tags to this resource. The maximum is 50 tags.</p>
224
252
  */
225
253
  export declare class TooManyTagsException extends __BaseException {
@@ -231,12 +259,18 @@ export declare class TooManyTagsException extends __BaseException {
231
259
  */
232
260
  constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
233
261
  }
262
+ /**
263
+ * @public
264
+ */
234
265
  export interface DeleteParallelDataRequest {
235
266
  /**
236
267
  * <p>The name of the parallel data resource that is being deleted.</p>
237
268
  */
238
269
  Name: string | undefined;
239
270
  }
271
+ /**
272
+ * @public
273
+ */
240
274
  export interface DeleteParallelDataResponse {
241
275
  /**
242
276
  * <p>The name of the parallel data resource that is being deleted.</p>
@@ -248,6 +282,7 @@ export interface DeleteParallelDataResponse {
248
282
  Status?: ParallelDataStatus | string;
249
283
  }
250
284
  /**
285
+ * @public
251
286
  * <p>The resource you are looking for has not been found. Review the resource you're looking
252
287
  * for and see if a different resource will accomplish your needs before retrying the revised
253
288
  * request.</p>
@@ -261,12 +296,18 @@ export declare class ResourceNotFoundException extends __BaseException {
261
296
  */
262
297
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
263
298
  }
299
+ /**
300
+ * @public
301
+ */
264
302
  export interface DeleteTerminologyRequest {
265
303
  /**
266
304
  * <p>The name of the custom terminology being deleted. </p>
267
305
  */
268
306
  Name: string | undefined;
269
307
  }
308
+ /**
309
+ * @public
310
+ */
270
311
  export interface DescribeTextTranslationJobRequest {
271
312
  /**
272
313
  * <p>The identifier that Amazon Translate generated for the job. The <a>StartTextTranslationJob</a> operation returns this identifier in its
@@ -275,6 +316,7 @@ export interface DescribeTextTranslationJobRequest {
275
316
  JobId: string | undefined;
276
317
  }
277
318
  /**
319
+ * @public
278
320
  * <p>The input configuration properties for requesting a batch translation job.</p>
279
321
  */
280
322
  export interface InputDataConfig {
@@ -331,6 +373,7 @@ export interface InputDataConfig {
331
373
  ContentType: string | undefined;
332
374
  }
333
375
  /**
376
+ * @public
334
377
  * <p>The number of documents successfully and unsuccessfully processed during a translation
335
378
  * job.</p>
336
379
  */
@@ -348,6 +391,9 @@ export interface JobDetails {
348
391
  */
349
392
  InputDocumentsCount?: number;
350
393
  }
394
+ /**
395
+ * @public
396
+ */
351
397
  export declare enum JobStatus {
352
398
  COMPLETED = "COMPLETED",
353
399
  COMPLETED_WITH_ERROR = "COMPLETED_WITH_ERROR",
@@ -358,6 +404,7 @@ export declare enum JobStatus {
358
404
  SUBMITTED = "SUBMITTED"
359
405
  }
360
406
  /**
407
+ * @public
361
408
  * <p>The output configuration properties for a batch translation job.</p>
362
409
  */
363
410
  export interface OutputDataConfig {
@@ -371,14 +418,21 @@ export interface OutputDataConfig {
371
418
  */
372
419
  EncryptionKey?: EncryptionKey;
373
420
  }
421
+ /**
422
+ * @public
423
+ */
374
424
  export declare enum Formality {
375
425
  FORMAL = "FORMAL",
376
426
  INFORMAL = "INFORMAL"
377
427
  }
428
+ /**
429
+ * @public
430
+ */
378
431
  export declare enum Profanity {
379
432
  MASK = "MASK"
380
433
  }
381
434
  /**
435
+ * @public
382
436
  * <p>Optional settings that configure the translation output. Use these settings for
383
437
  * real time translations and asynchronous translation jobs.</p>
384
438
  */
@@ -413,6 +467,7 @@ export interface TranslationSettings {
413
467
  Profanity?: Profanity | string;
414
468
  }
415
469
  /**
470
+ * @public
416
471
  * <p>Provides information about a translation job.</p>
417
472
  */
418
473
  export interface TextTranslationJobProperties {
@@ -484,6 +539,9 @@ export interface TextTranslationJobProperties {
484
539
  */
485
540
  Settings?: TranslationSettings;
486
541
  }
542
+ /**
543
+ * @public
544
+ */
487
545
  export interface DescribeTextTranslationJobResponse {
488
546
  /**
489
547
  * <p>An object that contains the properties associated with an asynchronous batch translation
@@ -491,6 +549,9 @@ export interface DescribeTextTranslationJobResponse {
491
549
  */
492
550
  TextTranslationJobProperties?: TextTranslationJobProperties;
493
551
  }
552
+ /**
553
+ * @public
554
+ */
494
555
  export interface GetParallelDataRequest {
495
556
  /**
496
557
  * <p>The name of the parallel data resource that is being retrieved.</p>
@@ -498,6 +559,7 @@ export interface GetParallelDataRequest {
498
559
  Name: string | undefined;
499
560
  }
500
561
  /**
562
+ * @public
501
563
  * <p>The location of the most recent parallel data input file that was successfully imported
502
564
  * into Amazon Translate.</p>
503
565
  */
@@ -523,6 +585,7 @@ export interface ParallelDataDataLocation {
523
585
  Location: string | undefined;
524
586
  }
525
587
  /**
588
+ * @public
526
589
  * <p>The properties of a parallel data resource.</p>
527
590
  */
528
591
  export interface ParallelDataProperties {
@@ -602,6 +665,9 @@ export interface ParallelDataProperties {
602
665
  */
603
666
  LatestUpdateAttemptAt?: Date;
604
667
  }
668
+ /**
669
+ * @public
670
+ */
605
671
  export interface GetParallelDataResponse {
606
672
  /**
607
673
  * <p>The properties of the parallel data resource that is being retrieved.</p>
@@ -638,11 +704,17 @@ export interface GetParallelDataResponse {
638
704
  */
639
705
  LatestUpdateAttemptAuxiliaryDataLocation?: ParallelDataDataLocation;
640
706
  }
707
+ /**
708
+ * @public
709
+ */
641
710
  export declare enum TerminologyDataFormat {
642
711
  CSV = "CSV",
643
712
  TMX = "TMX",
644
713
  TSV = "TSV"
645
714
  }
715
+ /**
716
+ * @public
717
+ */
646
718
  export interface GetTerminologyRequest {
647
719
  /**
648
720
  * <p>The name of the custom terminology being retrieved.</p>
@@ -659,6 +731,7 @@ export interface GetTerminologyRequest {
659
731
  TerminologyDataFormat?: TerminologyDataFormat | string;
660
732
  }
661
733
  /**
734
+ * @public
662
735
  * <p>The location of the custom terminology data.</p>
663
736
  */
664
737
  export interface TerminologyDataLocation {
@@ -683,11 +756,15 @@ export interface TerminologyDataLocation {
683
756
  */
684
757
  Location: string | undefined;
685
758
  }
759
+ /**
760
+ * @public
761
+ */
686
762
  export declare enum Directionality {
687
763
  MULTI = "MULTI",
688
764
  UNI = "UNI"
689
765
  }
690
766
  /**
767
+ * @public
691
768
  * <p>The properties of the custom terminology.</p>
692
769
  */
693
770
  export interface TerminologyProperties {
@@ -763,6 +840,9 @@ export interface TerminologyProperties {
763
840
  */
764
841
  Format?: TerminologyDataFormat | string;
765
842
  }
843
+ /**
844
+ * @public
845
+ */
766
846
  export interface GetTerminologyResponse {
767
847
  /**
768
848
  * <p>The properties of the custom terminology being retrieved.</p>
@@ -792,10 +872,14 @@ export interface GetTerminologyResponse {
792
872
  */
793
873
  AuxiliaryDataLocation?: TerminologyDataLocation;
794
874
  }
875
+ /**
876
+ * @public
877
+ */
795
878
  export declare enum MergeStrategy {
796
879
  OVERWRITE = "OVERWRITE"
797
880
  }
798
881
  /**
882
+ * @public
799
883
  * <p>The data associated with the custom terminology. For information about the custom terminology file, see
800
884
  * <a href="https://docs.aws.amazon.com/translate/latest/dg/creating-custom-terminology.html">
801
885
  * Creating a Custom Terminology</a>.</p>
@@ -834,6 +918,9 @@ export interface TerminologyData {
834
918
  */
835
919
  Directionality?: Directionality | string;
836
920
  }
921
+ /**
922
+ * @public
923
+ */
837
924
  export interface ImportTerminologyRequest {
838
925
  /**
839
926
  * <p>The name of the custom terminology being imported.</p>
@@ -865,6 +952,9 @@ export interface ImportTerminologyRequest {
865
952
  */
866
953
  Tags?: Tag[];
867
954
  }
955
+ /**
956
+ * @public
957
+ */
868
958
  export interface ImportTerminologyResponse {
869
959
  /**
870
960
  * <p>The properties of the custom terminology being imported.</p>
@@ -878,6 +968,9 @@ export interface ImportTerminologyResponse {
878
968
  */
879
969
  AuxiliaryDataLocation?: TerminologyDataLocation;
880
970
  }
971
+ /**
972
+ * @public
973
+ */
881
974
  export declare enum DisplayLanguageCode {
882
975
  DE = "de",
883
976
  EN = "en",
@@ -890,6 +983,9 @@ export declare enum DisplayLanguageCode {
890
983
  ZH = "zh",
891
984
  ZH_TW = "zh-TW"
892
985
  }
986
+ /**
987
+ * @public
988
+ */
893
989
  export interface ListLanguagesRequest {
894
990
  /**
895
991
  * <p>The language code for the language to use to display the language names in the response.
@@ -906,6 +1002,7 @@ export interface ListLanguagesRequest {
906
1002
  MaxResults?: number;
907
1003
  }
908
1004
  /**
1005
+ * @public
909
1006
  * <p>A supported language.</p>
910
1007
  */
911
1008
  export interface Language {
@@ -918,6 +1015,9 @@ export interface Language {
918
1015
  */
919
1016
  LanguageCode: string | undefined;
920
1017
  }
1018
+ /**
1019
+ * @public
1020
+ */
921
1021
  export interface ListLanguagesResponse {
922
1022
  /**
923
1023
  * <p>The list of supported languages.</p>
@@ -934,6 +1034,7 @@ export interface ListLanguagesResponse {
934
1034
  NextToken?: string;
935
1035
  }
936
1036
  /**
1037
+ * @public
937
1038
  * <p>Requested display language code is not supported.</p>
938
1039
  */
939
1040
  export declare class UnsupportedDisplayLanguageCodeException extends __BaseException {
@@ -949,6 +1050,9 @@ export declare class UnsupportedDisplayLanguageCodeException extends __BaseExcep
949
1050
  */
950
1051
  constructor(opts: __ExceptionOptionType<UnsupportedDisplayLanguageCodeException, __BaseException>);
951
1052
  }
1053
+ /**
1054
+ * @public
1055
+ */
952
1056
  export interface ListParallelDataRequest {
953
1057
  /**
954
1058
  * <p>A string that specifies the next page of results to return in a paginated response.</p>
@@ -959,6 +1063,9 @@ export interface ListParallelDataRequest {
959
1063
  */
960
1064
  MaxResults?: number;
961
1065
  }
1066
+ /**
1067
+ * @public
1068
+ */
962
1069
  export interface ListParallelDataResponse {
963
1070
  /**
964
1071
  * <p>The properties of the parallel data resources returned by this request.</p>
@@ -970,6 +1077,9 @@ export interface ListParallelDataResponse {
970
1077
  */
971
1078
  NextToken?: string;
972
1079
  }
1080
+ /**
1081
+ * @public
1082
+ */
973
1083
  export interface ListTagsForResourceRequest {
974
1084
  /**
975
1085
  * <p>The Amazon Resource Name (ARN) of the given Amazon Translate resource you are querying.
@@ -977,6 +1087,9 @@ export interface ListTagsForResourceRequest {
977
1087
  */
978
1088
  ResourceArn: string | undefined;
979
1089
  }
1090
+ /**
1091
+ * @public
1092
+ */
980
1093
  export interface ListTagsForResourceResponse {
981
1094
  /**
982
1095
  * <p>Tags associated with the Amazon Translate resource being queried. A tag is a key-value
@@ -986,6 +1099,9 @@ export interface ListTagsForResourceResponse {
986
1099
  */
987
1100
  Tags?: Tag[];
988
1101
  }
1102
+ /**
1103
+ * @public
1104
+ */
989
1105
  export interface ListTerminologiesRequest {
990
1106
  /**
991
1107
  * <p>If the result of the request to ListTerminologies was truncated, include the NextToken to
@@ -997,6 +1113,9 @@ export interface ListTerminologiesRequest {
997
1113
  */
998
1114
  MaxResults?: number;
999
1115
  }
1116
+ /**
1117
+ * @public
1118
+ */
1000
1119
  export interface ListTerminologiesResponse {
1001
1120
  /**
1002
1121
  * <p>The properties list of the custom terminologies returned on the list request.</p>
@@ -1009,6 +1128,7 @@ export interface ListTerminologiesResponse {
1009
1128
  NextToken?: string;
1010
1129
  }
1011
1130
  /**
1131
+ * @public
1012
1132
  * <p>The filter specified for the operation is not valid. Specify a different filter.</p>
1013
1133
  */
1014
1134
  export declare class InvalidFilterException extends __BaseException {
@@ -1021,6 +1141,7 @@ export declare class InvalidFilterException extends __BaseException {
1021
1141
  constructor(opts: __ExceptionOptionType<InvalidFilterException, __BaseException>);
1022
1142
  }
1023
1143
  /**
1144
+ * @public
1024
1145
  * <p>Provides information for filtering a list of translation jobs. For more information, see
1025
1146
  * <a>ListTextTranslationJobs</a>.</p>
1026
1147
  */
@@ -1046,6 +1167,9 @@ export interface TextTranslationJobFilter {
1046
1167
  */
1047
1168
  SubmittedAfterTime?: Date;
1048
1169
  }
1170
+ /**
1171
+ * @public
1172
+ */
1049
1173
  export interface ListTextTranslationJobsRequest {
1050
1174
  /**
1051
1175
  * <p>The parameters that specify which batch translation jobs to retrieve. Filters include job
@@ -1061,6 +1185,9 @@ export interface ListTextTranslationJobsRequest {
1061
1185
  */
1062
1186
  MaxResults?: number;
1063
1187
  }
1188
+ /**
1189
+ * @public
1190
+ */
1064
1191
  export interface ListTextTranslationJobsResponse {
1065
1192
  /**
1066
1193
  * <p>A list containing the properties of each job that is returned.</p>
@@ -1072,6 +1199,9 @@ export interface ListTextTranslationJobsResponse {
1072
1199
  */
1073
1200
  NextToken?: string;
1074
1201
  }
1202
+ /**
1203
+ * @public
1204
+ */
1075
1205
  export interface StartTextTranslationJobRequest {
1076
1206
  /**
1077
1207
  * <p>The name of the batch translation job to be performed.</p>
@@ -1147,6 +1277,9 @@ export interface StartTextTranslationJobRequest {
1147
1277
  */
1148
1278
  Settings?: TranslationSettings;
1149
1279
  }
1280
+ /**
1281
+ * @public
1282
+ */
1150
1283
  export interface StartTextTranslationJobResponse {
1151
1284
  /**
1152
1285
  * <p>The identifier generated for the job. To get the status of a job, use this ID with the
@@ -1193,6 +1326,7 @@ export interface StartTextTranslationJobResponse {
1193
1326
  JobStatus?: JobStatus | string;
1194
1327
  }
1195
1328
  /**
1329
+ * @public
1196
1330
  * <p>Amazon Translate does not support translation from the language of the source text into the requested
1197
1331
  * target language. For more information, see <a href="https://docs.aws.amazon.com/translate/latest/dg/how-to-error-msg.html">Error messages</a>. </p>
1198
1332
  */
@@ -1213,12 +1347,18 @@ export declare class UnsupportedLanguagePairException extends __BaseException {
1213
1347
  */
1214
1348
  constructor(opts: __ExceptionOptionType<UnsupportedLanguagePairException, __BaseException>);
1215
1349
  }
1350
+ /**
1351
+ * @public
1352
+ */
1216
1353
  export interface StopTextTranslationJobRequest {
1217
1354
  /**
1218
1355
  * <p>The job ID of the job to be stopped.</p>
1219
1356
  */
1220
1357
  JobId: string | undefined;
1221
1358
  }
1359
+ /**
1360
+ * @public
1361
+ */
1222
1362
  export interface StopTextTranslationJobResponse {
1223
1363
  /**
1224
1364
  * <p>The job ID of the stopped batch translation job.</p>
@@ -1230,6 +1370,9 @@ export interface StopTextTranslationJobResponse {
1230
1370
  */
1231
1371
  JobStatus?: JobStatus | string;
1232
1372
  }
1373
+ /**
1374
+ * @public
1375
+ */
1233
1376
  export interface TagResourceRequest {
1234
1377
  /**
1235
1378
  * <p>The Amazon Resource Name (ARN) of the given Amazon Translate resource to which you want
@@ -1242,9 +1385,13 @@ export interface TagResourceRequest {
1242
1385
  */
1243
1386
  Tags: Tag[] | undefined;
1244
1387
  }
1388
+ /**
1389
+ * @public
1390
+ */
1245
1391
  export interface TagResourceResponse {
1246
1392
  }
1247
1393
  /**
1394
+ * @public
1248
1395
  * <p>The confidence that Amazon Comprehend accurately detected the source language is low. If a
1249
1396
  * low confidence level is acceptable for your application, you can use the language in the
1250
1397
  * exception to call Amazon Translate again. For more information, see the <a href="https://docs.aws.amazon.com/comprehend/latest/dg/API_DetectDominantLanguage.html">DetectDominantLanguage</a> operation in the <i>Amazon Comprehend Developer
@@ -1264,6 +1411,7 @@ export declare class DetectedLanguageLowConfidenceException extends __BaseExcept
1264
1411
  constructor(opts: __ExceptionOptionType<DetectedLanguageLowConfidenceException, __BaseException>);
1265
1412
  }
1266
1413
  /**
1414
+ * @public
1267
1415
  * <p>The Amazon Translate service is temporarily unavailable. Wait a bit and then retry your
1268
1416
  * request.</p>
1269
1417
  */
@@ -1277,6 +1425,7 @@ export declare class ServiceUnavailableException extends __BaseException {
1277
1425
  constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1278
1426
  }
1279
1427
  /**
1428
+ * @public
1280
1429
  * <p> The size of the text you submitted exceeds the size limit. Reduce the size of the text or
1281
1430
  * use a smaller document and then retry your request. </p>
1282
1431
  */
@@ -1289,6 +1438,9 @@ export declare class TextSizeLimitExceededException extends __BaseException {
1289
1438
  */
1290
1439
  constructor(opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>);
1291
1440
  }
1441
+ /**
1442
+ * @public
1443
+ */
1292
1444
  export interface TranslateTextRequest {
1293
1445
  /**
1294
1446
  * <p>The text to translate. The text string can be a maximum of 10,000 bytes long. Depending on
@@ -1325,6 +1477,9 @@ export interface TranslateTextRequest {
1325
1477
  */
1326
1478
  Settings?: TranslationSettings;
1327
1479
  }
1480
+ /**
1481
+ * @public
1482
+ */
1328
1483
  export interface TranslateTextResponse {
1329
1484
  /**
1330
1485
  * <p>The translated text.</p>
@@ -1348,6 +1503,9 @@ export interface TranslateTextResponse {
1348
1503
  */
1349
1504
  AppliedSettings?: TranslationSettings;
1350
1505
  }
1506
+ /**
1507
+ * @public
1508
+ */
1351
1509
  export interface UntagResourceRequest {
1352
1510
  /**
1353
1511
  * <p> The Amazon Resource Name (ARN) of the given Amazon Translate resource from which you
@@ -1361,8 +1519,14 @@ export interface UntagResourceRequest {
1361
1519
  */
1362
1520
  TagKeys: string[] | undefined;
1363
1521
  }
1522
+ /**
1523
+ * @public
1524
+ */
1364
1525
  export interface UntagResourceResponse {
1365
1526
  }
1527
+ /**
1528
+ * @public
1529
+ */
1366
1530
  export interface UpdateParallelDataRequest {
1367
1531
  /**
1368
1532
  * <p>The name of the parallel data resource being updated.</p>
@@ -1382,6 +1546,9 @@ export interface UpdateParallelDataRequest {
1382
1546
  */
1383
1547
  ClientToken?: string;
1384
1548
  }
1549
+ /**
1550
+ * @public
1551
+ */
1385
1552
  export interface UpdateParallelDataResponse {
1386
1553
  /**
1387
1554
  * <p>The name of the parallel data resource being updated.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { TranslateClient } from "../TranslateClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface TranslatePaginationConfiguration extends PaginationConfiguration {
4
7
  client: TranslateClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListLanguagesCommandInput, ListLanguagesCommandOutput } from "../commands/ListLanguagesCommand";
3
3
  import { TranslatePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListLanguages(config: TranslatePaginationConfiguration, input: ListLanguagesCommandInput, ...additionalArguments: any): Paginator<ListLanguagesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListParallelDataCommandInput, ListParallelDataCommandOutput } from "../commands/ListParallelDataCommand";
3
3
  import { TranslatePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListParallelData(config: TranslatePaginationConfiguration, input: ListParallelDataCommandInput, ...additionalArguments: any): Paginator<ListParallelDataCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTerminologiesCommandInput, ListTerminologiesCommandOutput } from "../commands/ListTerminologiesCommand";
3
3
  import { TranslatePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTerminologies(config: TranslatePaginationConfiguration, input: ListTerminologiesCommandInput, ...additionalArguments: any): Paginator<ListTerminologiesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTextTranslationJobsCommandInput, ListTextTranslationJobsCommandOutput } from "../commands/ListTextTranslationJobsCommand";
3
3
  import { TranslatePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTextTranslationJobs(config: TranslatePaginationConfiguration, input: ListTextTranslationJobsCommandInput, ...additionalArguments: any): Paginator<ListTextTranslationJobsCommandOutput>;