@aws-sdk/client-polly 3.186.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-cjs/runtimeConfig.browser.js +9 -7
- package/dist-cjs/runtimeConfig.js +9 -7
- package/dist-es/Polly.js +38 -45
- package/dist-es/PollyClient.js +22 -28
- package/dist-es/commands/DeleteLexiconCommand.js +21 -28
- package/dist-es/commands/DescribeVoicesCommand.js +21 -28
- package/dist-es/commands/GetLexiconCommand.js +21 -28
- package/dist-es/commands/GetSpeechSynthesisTaskCommand.js +21 -28
- package/dist-es/commands/ListLexiconsCommand.js +21 -28
- package/dist-es/commands/ListSpeechSynthesisTasksCommand.js +21 -28
- package/dist-es/commands/PutLexiconCommand.js +21 -28
- package/dist-es/commands/StartSpeechSynthesisTaskCommand.js +21 -28
- package/dist-es/commands/SynthesizeSpeechCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/PollyServiceException.js +5 -10
- package/dist-es/models/models_0.js +303 -255
- package/dist-es/pagination/ListSpeechSynthesisTasksPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +879 -1154
- package/dist-es/runtimeConfig.browser.js +28 -12
- package/dist-es/runtimeConfig.js +32 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-types/PollyClient.d.ts +6 -1
- package/dist-types/commands/SynthesizeSpeechCommand.d.ts +2 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/PollyClient.d.ts +2 -0
- package/dist-types/ts3.4/commands/SynthesizeSpeechCommand.d.ts +2 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +5 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -33
|
@@ -1,30 +1,29 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { PollyServiceException as __BaseException } from "./PollyServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
export class LexiconNotFoundException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "LexiconNotFoundException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "LexiconNotFoundException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, LexiconNotFoundException.prototype);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
}
|
|
15
|
+
export class ServiceFailureException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "ServiceFailureException",
|
|
19
|
+
$fault: "server",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "ServiceFailureException";
|
|
23
|
+
this.$fault = "server";
|
|
24
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
24
25
|
}
|
|
25
|
-
|
|
26
|
-
}(__BaseException));
|
|
27
|
-
export { ServiceFailureException };
|
|
26
|
+
}
|
|
28
27
|
export var Engine;
|
|
29
28
|
(function (Engine) {
|
|
30
29
|
Engine["NEURAL"] = "neural";
|
|
@@ -148,30 +147,30 @@ export var VoiceId;
|
|
|
148
147
|
VoiceId["Zeina"] = "Zeina";
|
|
149
148
|
VoiceId["Zhiyu"] = "Zhiyu";
|
|
150
149
|
})(VoiceId || (VoiceId = {}));
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
150
|
+
export class InvalidNextTokenException extends __BaseException {
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "InvalidNextTokenException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
this.name = "InvalidNextTokenException";
|
|
158
|
+
this.$fault = "client";
|
|
159
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
159
160
|
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
161
|
+
}
|
|
162
|
+
export class EngineNotSupportedException extends __BaseException {
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "EngineNotSupportedException",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
this.name = "EngineNotSupportedException";
|
|
170
|
+
this.$fault = "client";
|
|
171
|
+
Object.setPrototypeOf(this, EngineNotSupportedException.prototype);
|
|
171
172
|
}
|
|
172
|
-
|
|
173
|
-
}(__BaseException));
|
|
174
|
-
export { EngineNotSupportedException };
|
|
173
|
+
}
|
|
175
174
|
export var OutputFormat;
|
|
176
175
|
(function (OutputFormat) {
|
|
177
176
|
OutputFormat["JSON"] = "json";
|
|
@@ -198,230 +197,279 @@ export var TextType;
|
|
|
198
197
|
TextType["SSML"] = "ssml";
|
|
199
198
|
TextType["TEXT"] = "text";
|
|
200
199
|
})(TextType || (TextType = {}));
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
200
|
+
export class InvalidTaskIdException extends __BaseException {
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "InvalidTaskIdException",
|
|
204
|
+
$fault: "client",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
this.name = "InvalidTaskIdException";
|
|
208
|
+
this.$fault = "client";
|
|
209
|
+
Object.setPrototypeOf(this, InvalidTaskIdException.prototype);
|
|
209
210
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
211
|
+
}
|
|
212
|
+
export class SynthesisTaskNotFoundException extends __BaseException {
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "SynthesisTaskNotFoundException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
this.name = "SynthesisTaskNotFoundException";
|
|
220
|
+
this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(this, SynthesisTaskNotFoundException.prototype);
|
|
221
222
|
}
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
223
|
+
}
|
|
224
|
+
export class InvalidLexiconException extends __BaseException {
|
|
225
|
+
constructor(opts) {
|
|
226
|
+
super({
|
|
227
|
+
name: "InvalidLexiconException",
|
|
228
|
+
$fault: "client",
|
|
229
|
+
...opts,
|
|
230
|
+
});
|
|
231
|
+
this.name = "InvalidLexiconException";
|
|
232
|
+
this.$fault = "client";
|
|
233
|
+
Object.setPrototypeOf(this, InvalidLexiconException.prototype);
|
|
233
234
|
}
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
235
|
+
}
|
|
236
|
+
export class InvalidS3BucketException extends __BaseException {
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "InvalidS3BucketException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
this.name = "InvalidS3BucketException";
|
|
244
|
+
this.$fault = "client";
|
|
245
|
+
Object.setPrototypeOf(this, InvalidS3BucketException.prototype);
|
|
245
246
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
247
|
+
}
|
|
248
|
+
export class InvalidS3KeyException extends __BaseException {
|
|
249
|
+
constructor(opts) {
|
|
250
|
+
super({
|
|
251
|
+
name: "InvalidS3KeyException",
|
|
252
|
+
$fault: "client",
|
|
253
|
+
...opts,
|
|
254
|
+
});
|
|
255
|
+
this.name = "InvalidS3KeyException";
|
|
256
|
+
this.$fault = "client";
|
|
257
|
+
Object.setPrototypeOf(this, InvalidS3KeyException.prototype);
|
|
257
258
|
}
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
259
|
+
}
|
|
260
|
+
export class InvalidSampleRateException extends __BaseException {
|
|
261
|
+
constructor(opts) {
|
|
262
|
+
super({
|
|
263
|
+
name: "InvalidSampleRateException",
|
|
264
|
+
$fault: "client",
|
|
265
|
+
...opts,
|
|
266
|
+
});
|
|
267
|
+
this.name = "InvalidSampleRateException";
|
|
268
|
+
this.$fault = "client";
|
|
269
|
+
Object.setPrototypeOf(this, InvalidSampleRateException.prototype);
|
|
269
270
|
}
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
271
|
+
}
|
|
272
|
+
export class InvalidSnsTopicArnException extends __BaseException {
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "InvalidSnsTopicArnException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
this.name = "InvalidSnsTopicArnException";
|
|
280
|
+
this.$fault = "client";
|
|
281
|
+
Object.setPrototypeOf(this, InvalidSnsTopicArnException.prototype);
|
|
281
282
|
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
283
|
+
}
|
|
284
|
+
export class InvalidSsmlException extends __BaseException {
|
|
285
|
+
constructor(opts) {
|
|
286
|
+
super({
|
|
287
|
+
name: "InvalidSsmlException",
|
|
288
|
+
$fault: "client",
|
|
289
|
+
...opts,
|
|
290
|
+
});
|
|
291
|
+
this.name = "InvalidSsmlException";
|
|
292
|
+
this.$fault = "client";
|
|
293
|
+
Object.setPrototypeOf(this, InvalidSsmlException.prototype);
|
|
293
294
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
295
|
+
}
|
|
296
|
+
export class LanguageNotSupportedException extends __BaseException {
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "LanguageNotSupportedException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
this.name = "LanguageNotSupportedException";
|
|
304
|
+
this.$fault = "client";
|
|
305
|
+
Object.setPrototypeOf(this, LanguageNotSupportedException.prototype);
|
|
305
306
|
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
307
|
+
}
|
|
308
|
+
export class LexiconSizeExceededException extends __BaseException {
|
|
309
|
+
constructor(opts) {
|
|
310
|
+
super({
|
|
311
|
+
name: "LexiconSizeExceededException",
|
|
312
|
+
$fault: "client",
|
|
313
|
+
...opts,
|
|
314
|
+
});
|
|
315
|
+
this.name = "LexiconSizeExceededException";
|
|
316
|
+
this.$fault = "client";
|
|
317
|
+
Object.setPrototypeOf(this, LexiconSizeExceededException.prototype);
|
|
317
318
|
}
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
319
|
+
}
|
|
320
|
+
export class MarksNotSupportedForFormatException extends __BaseException {
|
|
321
|
+
constructor(opts) {
|
|
322
|
+
super({
|
|
323
|
+
name: "MarksNotSupportedForFormatException",
|
|
324
|
+
$fault: "client",
|
|
325
|
+
...opts,
|
|
326
|
+
});
|
|
327
|
+
this.name = "MarksNotSupportedForFormatException";
|
|
328
|
+
this.$fault = "client";
|
|
329
|
+
Object.setPrototypeOf(this, MarksNotSupportedForFormatException.prototype);
|
|
329
330
|
}
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
331
|
+
}
|
|
332
|
+
export class MaxLexemeLengthExceededException extends __BaseException {
|
|
333
|
+
constructor(opts) {
|
|
334
|
+
super({
|
|
335
|
+
name: "MaxLexemeLengthExceededException",
|
|
336
|
+
$fault: "client",
|
|
337
|
+
...opts,
|
|
338
|
+
});
|
|
339
|
+
this.name = "MaxLexemeLengthExceededException";
|
|
340
|
+
this.$fault = "client";
|
|
341
|
+
Object.setPrototypeOf(this, MaxLexemeLengthExceededException.prototype);
|
|
341
342
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
343
|
+
}
|
|
344
|
+
export class MaxLexiconsNumberExceededException extends __BaseException {
|
|
345
|
+
constructor(opts) {
|
|
346
|
+
super({
|
|
347
|
+
name: "MaxLexiconsNumberExceededException",
|
|
348
|
+
$fault: "client",
|
|
349
|
+
...opts,
|
|
350
|
+
});
|
|
351
|
+
this.name = "MaxLexiconsNumberExceededException";
|
|
352
|
+
this.$fault = "client";
|
|
353
|
+
Object.setPrototypeOf(this, MaxLexiconsNumberExceededException.prototype);
|
|
353
354
|
}
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
355
|
+
}
|
|
356
|
+
export class UnsupportedPlsAlphabetException extends __BaseException {
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "UnsupportedPlsAlphabetException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
this.name = "UnsupportedPlsAlphabetException";
|
|
364
|
+
this.$fault = "client";
|
|
365
|
+
Object.setPrototypeOf(this, UnsupportedPlsAlphabetException.prototype);
|
|
365
366
|
}
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
367
|
+
}
|
|
368
|
+
export class UnsupportedPlsLanguageException extends __BaseException {
|
|
369
|
+
constructor(opts) {
|
|
370
|
+
super({
|
|
371
|
+
name: "UnsupportedPlsLanguageException",
|
|
372
|
+
$fault: "client",
|
|
373
|
+
...opts,
|
|
374
|
+
});
|
|
375
|
+
this.name = "UnsupportedPlsLanguageException";
|
|
376
|
+
this.$fault = "client";
|
|
377
|
+
Object.setPrototypeOf(this, UnsupportedPlsLanguageException.prototype);
|
|
377
378
|
}
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
379
|
+
}
|
|
380
|
+
export class SsmlMarksNotSupportedForTextTypeException extends __BaseException {
|
|
381
|
+
constructor(opts) {
|
|
382
|
+
super({
|
|
383
|
+
name: "SsmlMarksNotSupportedForTextTypeException",
|
|
384
|
+
$fault: "client",
|
|
385
|
+
...opts,
|
|
386
|
+
});
|
|
387
|
+
this.name = "SsmlMarksNotSupportedForTextTypeException";
|
|
388
|
+
this.$fault = "client";
|
|
389
|
+
Object.setPrototypeOf(this, SsmlMarksNotSupportedForTextTypeException.prototype);
|
|
389
390
|
}
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
391
|
+
}
|
|
392
|
+
export class TextLengthExceededException extends __BaseException {
|
|
393
|
+
constructor(opts) {
|
|
394
|
+
super({
|
|
395
|
+
name: "TextLengthExceededException",
|
|
396
|
+
$fault: "client",
|
|
397
|
+
...opts,
|
|
398
|
+
});
|
|
399
|
+
this.name = "TextLengthExceededException";
|
|
400
|
+
this.$fault = "client";
|
|
401
|
+
Object.setPrototypeOf(this, TextLengthExceededException.prototype);
|
|
401
402
|
}
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
export
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
export
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
export
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
export
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
export
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
export
|
|
426
|
-
|
|
427
|
-
|
|
403
|
+
}
|
|
404
|
+
export const DeleteLexiconInputFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
export const DeleteLexiconOutputFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
});
|
|
410
|
+
export const DescribeVoicesInputFilterSensitiveLog = (obj) => ({
|
|
411
|
+
...obj,
|
|
412
|
+
});
|
|
413
|
+
export const VoiceFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
export const DescribeVoicesOutputFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
});
|
|
419
|
+
export const GetLexiconInputFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
});
|
|
422
|
+
export const LexiconFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
425
|
+
});
|
|
426
|
+
export const LexiconAttributesFilterSensitiveLog = (obj) => ({
|
|
427
|
+
...obj,
|
|
428
|
+
});
|
|
429
|
+
export const GetLexiconOutputFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
...(obj.Lexicon && { Lexicon: LexiconFilterSensitiveLog(obj.Lexicon) }),
|
|
432
|
+
});
|
|
433
|
+
export const GetSpeechSynthesisTaskInputFilterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
});
|
|
436
|
+
export const SynthesisTaskFilterSensitiveLog = (obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
});
|
|
439
|
+
export const GetSpeechSynthesisTaskOutputFilterSensitiveLog = (obj) => ({
|
|
440
|
+
...obj,
|
|
441
|
+
});
|
|
442
|
+
export const LexiconDescriptionFilterSensitiveLog = (obj) => ({
|
|
443
|
+
...obj,
|
|
444
|
+
});
|
|
445
|
+
export const ListLexiconsInputFilterSensitiveLog = (obj) => ({
|
|
446
|
+
...obj,
|
|
447
|
+
});
|
|
448
|
+
export const ListLexiconsOutputFilterSensitiveLog = (obj) => ({
|
|
449
|
+
...obj,
|
|
450
|
+
});
|
|
451
|
+
export const ListSpeechSynthesisTasksInputFilterSensitiveLog = (obj) => ({
|
|
452
|
+
...obj,
|
|
453
|
+
});
|
|
454
|
+
export const ListSpeechSynthesisTasksOutputFilterSensitiveLog = (obj) => ({
|
|
455
|
+
...obj,
|
|
456
|
+
});
|
|
457
|
+
export const PutLexiconInputFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
460
|
+
});
|
|
461
|
+
export const PutLexiconOutputFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
});
|
|
464
|
+
export const StartSpeechSynthesisTaskInputFilterSensitiveLog = (obj) => ({
|
|
465
|
+
...obj,
|
|
466
|
+
});
|
|
467
|
+
export const StartSpeechSynthesisTaskOutputFilterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
});
|
|
470
|
+
export const SynthesizeSpeechInputFilterSensitiveLog = (obj) => ({
|
|
471
|
+
...obj,
|
|
472
|
+
});
|
|
473
|
+
export const SynthesizeSpeechOutputFilterSensitiveLog = (obj) => ({
|
|
474
|
+
...obj,
|
|
475
|
+
});
|