@aws-sdk/client-translate 3.185.0 → 3.188.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 +16 -0
- package/README.md +1 -2
- package/dist-es/Translate.js +74 -81
- package/dist-es/TranslateClient.js +22 -28
- package/dist-es/commands/CreateParallelDataCommand.js +21 -28
- package/dist-es/commands/DeleteParallelDataCommand.js +21 -28
- package/dist-es/commands/DeleteTerminologyCommand.js +22 -29
- package/dist-es/commands/DescribeTextTranslationJobCommand.js +21 -28
- package/dist-es/commands/GetParallelDataCommand.js +21 -28
- package/dist-es/commands/GetTerminologyCommand.js +21 -28
- package/dist-es/commands/ImportTerminologyCommand.js +21 -28
- package/dist-es/commands/ListLanguagesCommand.js +21 -28
- package/dist-es/commands/ListParallelDataCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTerminologiesCommand.js +21 -28
- package/dist-es/commands/ListTextTranslationJobsCommand.js +21 -28
- package/dist-es/commands/StartTextTranslationJobCommand.js +21 -28
- package/dist-es/commands/StopTextTranslationJobCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/TranslateTextCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateParallelDataCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/TranslateServiceException.js +5 -10
- package/dist-es/models/models_0.js +342 -237
- package/dist-es/pagination/ListLanguagesPaginator.js +25 -68
- package/dist-es/pagination/ListParallelDataPaginator.js +25 -68
- package/dist-es/pagination/ListTerminologiesPaginator.js +25 -68
- package/dist-es/pagination/ListTextTranslationJobsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +1407 -1765
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-types/Translate.d.ts +25 -6
- package/dist-types/TranslateClient.d.ts +1 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
- package/dist-types/commands/StartTextTranslationJobCommand.d.ts +7 -3
- package/dist-types/commands/TagResourceCommand.d.ts +20 -0
- package/dist-types/commands/TranslateTextCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +19 -0
- package/dist-types/models/models_0.d.ts +94 -22
- package/package.json +33 -33
|
@@ -1,32 +1,31 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "ConcurrentModificationException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "ConcurrentModificationException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
15
|
+
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ConflictException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
this.name = "ConflictException";
|
|
24
|
+
this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
+
this.Message = opts.Message;
|
|
26
27
|
}
|
|
27
|
-
|
|
28
|
-
}(__BaseException));
|
|
29
|
-
export { ConflictException };
|
|
28
|
+
}
|
|
30
29
|
export var EncryptionKeyType;
|
|
31
30
|
(function (EncryptionKeyType) {
|
|
32
31
|
EncryptionKeyType["KMS"] = "KMS";
|
|
@@ -45,97 +44,97 @@ export var ParallelDataStatus;
|
|
|
45
44
|
ParallelDataStatus["FAILED"] = "FAILED";
|
|
46
45
|
ParallelDataStatus["UPDATING"] = "UPDATING";
|
|
47
46
|
})(ParallelDataStatus || (ParallelDataStatus = {}));
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
47
|
+
export class InternalServerException extends __BaseException {
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "InternalServerException",
|
|
51
|
+
$fault: "server",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
this.name = "InternalServerException";
|
|
55
|
+
this.$fault = "server";
|
|
56
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
57
|
+
this.Message = opts.Message;
|
|
57
58
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
59
|
+
}
|
|
60
|
+
export class InvalidParameterValueException extends __BaseException {
|
|
61
|
+
constructor(opts) {
|
|
62
|
+
super({
|
|
63
|
+
name: "InvalidParameterValueException",
|
|
64
|
+
$fault: "client",
|
|
65
|
+
...opts,
|
|
66
|
+
});
|
|
67
|
+
this.name = "InvalidParameterValueException";
|
|
68
|
+
this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
70
|
+
this.Message = opts.Message;
|
|
70
71
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
72
|
+
}
|
|
73
|
+
export class InvalidRequestException extends __BaseException {
|
|
74
|
+
constructor(opts) {
|
|
75
|
+
super({
|
|
76
|
+
name: "InvalidRequestException",
|
|
77
|
+
$fault: "client",
|
|
78
|
+
...opts,
|
|
79
|
+
});
|
|
80
|
+
this.name = "InvalidRequestException";
|
|
81
|
+
this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
83
84
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
85
|
+
}
|
|
86
|
+
export class LimitExceededException extends __BaseException {
|
|
87
|
+
constructor(opts) {
|
|
88
|
+
super({
|
|
89
|
+
name: "LimitExceededException",
|
|
90
|
+
$fault: "client",
|
|
91
|
+
...opts,
|
|
92
|
+
});
|
|
93
|
+
this.name = "LimitExceededException";
|
|
94
|
+
this.$fault = "client";
|
|
95
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
96
|
+
this.Message = opts.Message;
|
|
96
97
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
98
|
+
}
|
|
99
|
+
export class TooManyRequestsException extends __BaseException {
|
|
100
|
+
constructor(opts) {
|
|
101
|
+
super({
|
|
102
|
+
name: "TooManyRequestsException",
|
|
103
|
+
$fault: "client",
|
|
104
|
+
...opts,
|
|
105
|
+
});
|
|
106
|
+
this.name = "TooManyRequestsException";
|
|
107
|
+
this.$fault = "client";
|
|
108
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
109
|
+
this.Message = opts.Message;
|
|
109
110
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
111
|
+
}
|
|
112
|
+
export class TooManyTagsException extends __BaseException {
|
|
113
|
+
constructor(opts) {
|
|
114
|
+
super({
|
|
115
|
+
name: "TooManyTagsException",
|
|
116
|
+
$fault: "client",
|
|
117
|
+
...opts,
|
|
118
|
+
});
|
|
119
|
+
this.name = "TooManyTagsException";
|
|
120
|
+
this.$fault = "client";
|
|
121
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
122
|
+
this.ResourceArn = opts.ResourceArn;
|
|
122
123
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
124
|
+
}
|
|
125
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "ResourceNotFoundException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
this.name = "ResourceNotFoundException";
|
|
133
|
+
this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
135
|
+
this.Message = opts.Message;
|
|
135
136
|
}
|
|
136
|
-
|
|
137
|
-
}(__BaseException));
|
|
138
|
-
export { ResourceNotFoundException };
|
|
137
|
+
}
|
|
139
138
|
export var JobStatus;
|
|
140
139
|
(function (JobStatus) {
|
|
141
140
|
JobStatus["COMPLETED"] = "COMPLETED";
|
|
@@ -183,137 +182,243 @@ export var DisplayLanguageCode;
|
|
|
183
182
|
DisplayLanguageCode["ZH"] = "zh";
|
|
184
183
|
DisplayLanguageCode["ZH_TW"] = "zh-TW";
|
|
185
184
|
})(DisplayLanguageCode || (DisplayLanguageCode = {}));
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
185
|
+
export class UnsupportedDisplayLanguageCodeException extends __BaseException {
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "UnsupportedDisplayLanguageCodeException",
|
|
189
|
+
$fault: "client",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
this.name = "UnsupportedDisplayLanguageCodeException";
|
|
193
|
+
this.$fault = "client";
|
|
194
|
+
Object.setPrototypeOf(this, UnsupportedDisplayLanguageCodeException.prototype);
|
|
195
|
+
this.Message = opts.Message;
|
|
196
|
+
this.DisplayLanguageCode = opts.DisplayLanguageCode;
|
|
196
197
|
}
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
198
|
+
}
|
|
199
|
+
export class InvalidFilterException extends __BaseException {
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "InvalidFilterException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
this.name = "InvalidFilterException";
|
|
207
|
+
this.$fault = "client";
|
|
208
|
+
Object.setPrototypeOf(this, InvalidFilterException.prototype);
|
|
209
|
+
this.Message = opts.Message;
|
|
209
210
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
211
|
+
}
|
|
212
|
+
export class UnsupportedLanguagePairException extends __BaseException {
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "UnsupportedLanguagePairException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
this.name = "UnsupportedLanguagePairException";
|
|
220
|
+
this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(this, UnsupportedLanguagePairException.prototype);
|
|
222
|
+
this.Message = opts.Message;
|
|
223
|
+
this.SourceLanguageCode = opts.SourceLanguageCode;
|
|
224
|
+
this.TargetLanguageCode = opts.TargetLanguageCode;
|
|
224
225
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
226
|
+
}
|
|
227
|
+
export class DetectedLanguageLowConfidenceException extends __BaseException {
|
|
228
|
+
constructor(opts) {
|
|
229
|
+
super({
|
|
230
|
+
name: "DetectedLanguageLowConfidenceException",
|
|
231
|
+
$fault: "client",
|
|
232
|
+
...opts,
|
|
233
|
+
});
|
|
234
|
+
this.name = "DetectedLanguageLowConfidenceException";
|
|
235
|
+
this.$fault = "client";
|
|
236
|
+
Object.setPrototypeOf(this, DetectedLanguageLowConfidenceException.prototype);
|
|
237
|
+
this.Message = opts.Message;
|
|
238
|
+
this.DetectedLanguageCode = opts.DetectedLanguageCode;
|
|
238
239
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
240
|
+
}
|
|
241
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "ServiceUnavailableException",
|
|
245
|
+
$fault: "server",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
this.name = "ServiceUnavailableException";
|
|
249
|
+
this.$fault = "server";
|
|
250
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
251
|
+
this.Message = opts.Message;
|
|
251
252
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
253
|
+
}
|
|
254
|
+
export class TextSizeLimitExceededException extends __BaseException {
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "TextSizeLimitExceededException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
this.name = "TextSizeLimitExceededException";
|
|
262
|
+
this.$fault = "client";
|
|
263
|
+
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
264
|
+
this.Message = opts.Message;
|
|
264
265
|
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
export
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
export
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
export
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
|
|
266
|
+
}
|
|
267
|
+
export const TermFilterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
export const AppliedTerminologyFilterSensitiveLog = (obj) => ({
|
|
271
|
+
...obj,
|
|
272
|
+
});
|
|
273
|
+
export const EncryptionKeyFilterSensitiveLog = (obj) => ({
|
|
274
|
+
...obj,
|
|
275
|
+
});
|
|
276
|
+
export const ParallelDataConfigFilterSensitiveLog = (obj) => ({
|
|
277
|
+
...obj,
|
|
278
|
+
});
|
|
279
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
});
|
|
282
|
+
export const CreateParallelDataRequestFilterSensitiveLog = (obj) => ({
|
|
283
|
+
...obj,
|
|
284
|
+
});
|
|
285
|
+
export const CreateParallelDataResponseFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
export const DeleteParallelDataRequestFilterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
});
|
|
291
|
+
export const DeleteParallelDataResponseFilterSensitiveLog = (obj) => ({
|
|
292
|
+
...obj,
|
|
293
|
+
});
|
|
294
|
+
export const DeleteTerminologyRequestFilterSensitiveLog = (obj) => ({
|
|
295
|
+
...obj,
|
|
296
|
+
});
|
|
297
|
+
export const DescribeTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
|
|
298
|
+
...obj,
|
|
299
|
+
});
|
|
300
|
+
export const InputDataConfigFilterSensitiveLog = (obj) => ({
|
|
301
|
+
...obj,
|
|
302
|
+
});
|
|
303
|
+
export const JobDetailsFilterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
});
|
|
306
|
+
export const OutputDataConfigFilterSensitiveLog = (obj) => ({
|
|
307
|
+
...obj,
|
|
308
|
+
});
|
|
309
|
+
export const TranslationSettingsFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
export const TextTranslationJobPropertiesFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
});
|
|
315
|
+
export const DescribeTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
});
|
|
318
|
+
export const GetParallelDataRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
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
|
+
});
|