@aws-sdk/client-translate 3.183.0 → 3.186.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/Translate.js +81 -74
- package/dist-es/TranslateClient.js +28 -22
- package/dist-es/commands/CreateParallelDataCommand.js +28 -21
- package/dist-es/commands/DeleteParallelDataCommand.js +28 -21
- package/dist-es/commands/DeleteTerminologyCommand.js +29 -22
- package/dist-es/commands/DescribeTextTranslationJobCommand.js +28 -21
- package/dist-es/commands/GetParallelDataCommand.js +28 -21
- package/dist-es/commands/GetTerminologyCommand.js +28 -21
- package/dist-es/commands/ImportTerminologyCommand.js +28 -21
- package/dist-es/commands/ListLanguagesCommand.js +28 -21
- package/dist-es/commands/ListParallelDataCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListTerminologiesCommand.js +28 -21
- package/dist-es/commands/ListTextTranslationJobsCommand.js +28 -21
- package/dist-es/commands/StartTextTranslationJobCommand.js +28 -21
- package/dist-es/commands/StopTextTranslationJobCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/TranslateTextCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateParallelDataCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/TranslateServiceException.js +10 -5
- package/dist-es/models/models_0.js +237 -342
- package/dist-es/pagination/ListLanguagesPaginator.js +68 -25
- package/dist-es/pagination/ListParallelDataPaginator.js +68 -25
- package/dist-es/pagination/ListTerminologiesPaginator.js +68 -25
- package/dist-es/pagination/ListTextTranslationJobsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +1765 -1407
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,31 +1,32 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
4
|
+
var ConcurrentModificationException = (function (_super) {
|
|
5
|
+
__extends(ConcurrentModificationException, _super);
|
|
6
|
+
function ConcurrentModificationException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "ConcurrentModificationException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
14
13
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
14
|
+
return ConcurrentModificationException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { ConcurrentModificationException };
|
|
17
|
+
var ConflictException = (function (_super) {
|
|
18
|
+
__extends(ConflictException, _super);
|
|
19
|
+
function ConflictException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
21
|
+
_this.name = "ConflictException";
|
|
22
|
+
_this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
24
|
+
_this.Message = opts.Message;
|
|
25
|
+
return _this;
|
|
27
26
|
}
|
|
28
|
-
|
|
27
|
+
return ConflictException;
|
|
28
|
+
}(__BaseException));
|
|
29
|
+
export { ConflictException };
|
|
29
30
|
export var EncryptionKeyType;
|
|
30
31
|
(function (EncryptionKeyType) {
|
|
31
32
|
EncryptionKeyType["KMS"] = "KMS";
|
|
@@ -44,97 +45,97 @@ export var ParallelDataStatus;
|
|
|
44
45
|
ParallelDataStatus["FAILED"] = "FAILED";
|
|
45
46
|
ParallelDataStatus["UPDATING"] = "UPDATING";
|
|
46
47
|
})(ParallelDataStatus || (ParallelDataStatus = {}));
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
57
|
-
this.Message = opts.Message;
|
|
48
|
+
var InternalServerException = (function (_super) {
|
|
49
|
+
__extends(InternalServerException, _super);
|
|
50
|
+
function InternalServerException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
52
|
+
_this.name = "InternalServerException";
|
|
53
|
+
_this.$fault = "server";
|
|
54
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
55
|
+
_this.Message = opts.Message;
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
58
|
+
return InternalServerException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { InternalServerException };
|
|
61
|
+
var InvalidParameterValueException = (function (_super) {
|
|
62
|
+
__extends(InvalidParameterValueException, _super);
|
|
63
|
+
function InvalidParameterValueException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "InvalidParameterValueException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
|
|
68
|
+
_this.Message = opts.Message;
|
|
69
|
+
return _this;
|
|
71
70
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
71
|
+
return InvalidParameterValueException;
|
|
72
|
+
}(__BaseException));
|
|
73
|
+
export { InvalidParameterValueException };
|
|
74
|
+
var InvalidRequestException = (function (_super) {
|
|
75
|
+
__extends(InvalidRequestException, _super);
|
|
76
|
+
function InvalidRequestException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
78
|
+
_this.name = "InvalidRequestException";
|
|
79
|
+
_this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
81
|
+
_this.Message = opts.Message;
|
|
82
|
+
return _this;
|
|
84
83
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
84
|
+
return InvalidRequestException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { InvalidRequestException };
|
|
87
|
+
var LimitExceededException = (function (_super) {
|
|
88
|
+
__extends(LimitExceededException, _super);
|
|
89
|
+
function LimitExceededException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "LimitExceededException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
94
|
+
_this.Message = opts.Message;
|
|
95
|
+
return _this;
|
|
97
96
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
97
|
+
return LimitExceededException;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { LimitExceededException };
|
|
100
|
+
var TooManyRequestsException = (function (_super) {
|
|
101
|
+
__extends(TooManyRequestsException, _super);
|
|
102
|
+
function TooManyRequestsException(opts) {
|
|
103
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
104
|
+
_this.name = "TooManyRequestsException";
|
|
105
|
+
_this.$fault = "client";
|
|
106
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
107
|
+
_this.Message = opts.Message;
|
|
108
|
+
return _this;
|
|
110
109
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
110
|
+
return TooManyRequestsException;
|
|
111
|
+
}(__BaseException));
|
|
112
|
+
export { TooManyRequestsException };
|
|
113
|
+
var TooManyTagsException = (function (_super) {
|
|
114
|
+
__extends(TooManyTagsException, _super);
|
|
115
|
+
function TooManyTagsException(opts) {
|
|
116
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
117
|
+
_this.name = "TooManyTagsException";
|
|
118
|
+
_this.$fault = "client";
|
|
119
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
120
|
+
_this.ResourceArn = opts.ResourceArn;
|
|
121
|
+
return _this;
|
|
123
122
|
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
123
|
+
return TooManyTagsException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { TooManyTagsException };
|
|
126
|
+
var ResourceNotFoundException = (function (_super) {
|
|
127
|
+
__extends(ResourceNotFoundException, _super);
|
|
128
|
+
function ResourceNotFoundException(opts) {
|
|
129
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
130
|
+
_this.name = "ResourceNotFoundException";
|
|
131
|
+
_this.$fault = "client";
|
|
132
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
133
|
+
_this.Message = opts.Message;
|
|
134
|
+
return _this;
|
|
136
135
|
}
|
|
137
|
-
|
|
136
|
+
return ResourceNotFoundException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ResourceNotFoundException };
|
|
138
139
|
export var JobStatus;
|
|
139
140
|
(function (JobStatus) {
|
|
140
141
|
JobStatus["COMPLETED"] = "COMPLETED";
|
|
@@ -182,243 +183,137 @@ export var DisplayLanguageCode;
|
|
|
182
183
|
DisplayLanguageCode["ZH"] = "zh";
|
|
183
184
|
DisplayLanguageCode["ZH_TW"] = "zh-TW";
|
|
184
185
|
})(DisplayLanguageCode || (DisplayLanguageCode = {}));
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
this.Message = opts.Message;
|
|
196
|
-
this.DisplayLanguageCode = opts.DisplayLanguageCode;
|
|
186
|
+
var UnsupportedDisplayLanguageCodeException = (function (_super) {
|
|
187
|
+
__extends(UnsupportedDisplayLanguageCodeException, _super);
|
|
188
|
+
function UnsupportedDisplayLanguageCodeException(opts) {
|
|
189
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedDisplayLanguageCodeException", $fault: "client" }, opts)) || this;
|
|
190
|
+
_this.name = "UnsupportedDisplayLanguageCodeException";
|
|
191
|
+
_this.$fault = "client";
|
|
192
|
+
Object.setPrototypeOf(_this, UnsupportedDisplayLanguageCodeException.prototype);
|
|
193
|
+
_this.Message = opts.Message;
|
|
194
|
+
_this.DisplayLanguageCode = opts.DisplayLanguageCode;
|
|
195
|
+
return _this;
|
|
197
196
|
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
197
|
+
return UnsupportedDisplayLanguageCodeException;
|
|
198
|
+
}(__BaseException));
|
|
199
|
+
export { UnsupportedDisplayLanguageCodeException };
|
|
200
|
+
var InvalidFilterException = (function (_super) {
|
|
201
|
+
__extends(InvalidFilterException, _super);
|
|
202
|
+
function InvalidFilterException(opts) {
|
|
203
|
+
var _this = _super.call(this, __assign({ name: "InvalidFilterException", $fault: "client" }, opts)) || this;
|
|
204
|
+
_this.name = "InvalidFilterException";
|
|
205
|
+
_this.$fault = "client";
|
|
206
|
+
Object.setPrototypeOf(_this, InvalidFilterException.prototype);
|
|
207
|
+
_this.Message = opts.Message;
|
|
208
|
+
return _this;
|
|
210
209
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
210
|
+
return InvalidFilterException;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { InvalidFilterException };
|
|
213
|
+
var UnsupportedLanguagePairException = (function (_super) {
|
|
214
|
+
__extends(UnsupportedLanguagePairException, _super);
|
|
215
|
+
function UnsupportedLanguagePairException(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedLanguagePairException", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "UnsupportedLanguagePairException";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, UnsupportedLanguagePairException.prototype);
|
|
220
|
+
_this.Message = opts.Message;
|
|
221
|
+
_this.SourceLanguageCode = opts.SourceLanguageCode;
|
|
222
|
+
_this.TargetLanguageCode = opts.TargetLanguageCode;
|
|
223
|
+
return _this;
|
|
225
224
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
225
|
+
return UnsupportedLanguagePairException;
|
|
226
|
+
}(__BaseException));
|
|
227
|
+
export { UnsupportedLanguagePairException };
|
|
228
|
+
var DetectedLanguageLowConfidenceException = (function (_super) {
|
|
229
|
+
__extends(DetectedLanguageLowConfidenceException, _super);
|
|
230
|
+
function DetectedLanguageLowConfidenceException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "DetectedLanguageLowConfidenceException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "DetectedLanguageLowConfidenceException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, DetectedLanguageLowConfidenceException.prototype);
|
|
235
|
+
_this.Message = opts.Message;
|
|
236
|
+
_this.DetectedLanguageCode = opts.DetectedLanguageCode;
|
|
237
|
+
return _this;
|
|
239
238
|
}
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
239
|
+
return DetectedLanguageLowConfidenceException;
|
|
240
|
+
}(__BaseException));
|
|
241
|
+
export { DetectedLanguageLowConfidenceException };
|
|
242
|
+
var ServiceUnavailableException = (function (_super) {
|
|
243
|
+
__extends(ServiceUnavailableException, _super);
|
|
244
|
+
function ServiceUnavailableException(opts) {
|
|
245
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
246
|
+
_this.name = "ServiceUnavailableException";
|
|
247
|
+
_this.$fault = "server";
|
|
248
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
249
|
+
_this.Message = opts.Message;
|
|
250
|
+
return _this;
|
|
252
251
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
252
|
+
return ServiceUnavailableException;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { ServiceUnavailableException };
|
|
255
|
+
var TextSizeLimitExceededException = (function (_super) {
|
|
256
|
+
__extends(TextSizeLimitExceededException, _super);
|
|
257
|
+
function TextSizeLimitExceededException(opts) {
|
|
258
|
+
var _this = _super.call(this, __assign({ name: "TextSizeLimitExceededException", $fault: "client" }, opts)) || this;
|
|
259
|
+
_this.name = "TextSizeLimitExceededException";
|
|
260
|
+
_this.$fault = "client";
|
|
261
|
+
Object.setPrototypeOf(_this, TextSizeLimitExceededException.prototype);
|
|
262
|
+
_this.Message = opts.Message;
|
|
263
|
+
return _this;
|
|
265
264
|
}
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
});
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
});
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
});
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
});
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
});
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
});
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
});
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
});
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
});
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
});
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
});
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
});
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
});
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
});
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
});
|
|
321
|
-
export const ParallelDataDataLocationFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const ParallelDataPropertiesFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const GetParallelDataResponseFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
});
|
|
330
|
-
export const GetTerminologyRequestFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const TerminologyDataLocationFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
|
-
export const TerminologyPropertiesFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
});
|
|
339
|
-
export const GetTerminologyResponseFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
});
|
|
342
|
-
export const TerminologyDataFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
...(obj.File && { File: SENSITIVE_STRING }),
|
|
345
|
-
});
|
|
346
|
-
export const ImportTerminologyRequestFilterSensitiveLog = (obj) => ({
|
|
347
|
-
...obj,
|
|
348
|
-
...(obj.TerminologyData && { TerminologyData: TerminologyDataFilterSensitiveLog(obj.TerminologyData) }),
|
|
349
|
-
});
|
|
350
|
-
export const ImportTerminologyResponseFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const ListLanguagesRequestFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const LanguageFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const ListLanguagesResponseFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
});
|
|
362
|
-
export const ListParallelDataRequestFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
365
|
-
export const ListParallelDataResponseFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
});
|
|
368
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
});
|
|
371
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
372
|
-
...obj,
|
|
373
|
-
});
|
|
374
|
-
export const ListTerminologiesRequestFilterSensitiveLog = (obj) => ({
|
|
375
|
-
...obj,
|
|
376
|
-
});
|
|
377
|
-
export const ListTerminologiesResponseFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
});
|
|
380
|
-
export const TextTranslationJobFilterFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
});
|
|
383
|
-
export const ListTextTranslationJobsRequestFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
export const ListTextTranslationJobsResponseFilterSensitiveLog = (obj) => ({
|
|
387
|
-
...obj,
|
|
388
|
-
});
|
|
389
|
-
export const StartTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const StartTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const StopTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const StopTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
401
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const TranslateTextRequestFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const TranslateTextResponseFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const UpdateParallelDataRequestFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const UpdateParallelDataResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
265
|
+
return TextSizeLimitExceededException;
|
|
266
|
+
}(__BaseException));
|
|
267
|
+
export { TextSizeLimitExceededException };
|
|
268
|
+
export var TermFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var AppliedTerminologyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var EncryptionKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var ParallelDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var CreateParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var CreateParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var DeleteParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var DeleteParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var DeleteTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var DescribeTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var InputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var JobDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var OutputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var TranslationSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var TextTranslationJobPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var DescribeTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var GetParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var ParallelDataDataLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var ParallelDataPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var GetParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var GetTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var TerminologyDataLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var TerminologyPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var GetTerminologyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var TerminologyDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.File && { File: SENSITIVE_STRING }))); };
|
|
294
|
+
export var ImportTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TerminologyData && { TerminologyData: TerminologyDataFilterSensitiveLog(obj.TerminologyData) }))); };
|
|
295
|
+
export var ImportTerminologyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var ListLanguagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var LanguageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var ListLanguagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var ListParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var ListParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var ListTerminologiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var ListTerminologiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var TextTranslationJobFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var ListTextTranslationJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var ListTextTranslationJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var StartTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var StartTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var StopTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var StopTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var TranslateTextRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var TranslateTextResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var UpdateParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var UpdateParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|