@aws-sdk/client-polly 3.183.0 → 3.185.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.
@@ -1,29 +1,30 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
3
  import { PollyServiceException as __BaseException } from "./PollyServiceException";
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);
4
+ var LexiconNotFoundException = (function (_super) {
5
+ __extends(LexiconNotFoundException, _super);
6
+ function LexiconNotFoundException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "LexiconNotFoundException", $fault: "client" }, opts)) || this;
8
+ _this.name = "LexiconNotFoundException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, LexiconNotFoundException.prototype);
11
+ return _this;
13
12
  }
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);
13
+ return LexiconNotFoundException;
14
+ }(__BaseException));
15
+ export { LexiconNotFoundException };
16
+ var ServiceFailureException = (function (_super) {
17
+ __extends(ServiceFailureException, _super);
18
+ function ServiceFailureException(opts) {
19
+ var _this = _super.call(this, __assign({ name: "ServiceFailureException", $fault: "server" }, opts)) || this;
20
+ _this.name = "ServiceFailureException";
21
+ _this.$fault = "server";
22
+ Object.setPrototypeOf(_this, ServiceFailureException.prototype);
23
+ return _this;
25
24
  }
26
- }
25
+ return ServiceFailureException;
26
+ }(__BaseException));
27
+ export { ServiceFailureException };
27
28
  export var Engine;
28
29
  (function (Engine) {
29
30
  Engine["NEURAL"] = "neural";
@@ -147,30 +148,30 @@ export var VoiceId;
147
148
  VoiceId["Zeina"] = "Zeina";
148
149
  VoiceId["Zhiyu"] = "Zhiyu";
149
150
  })(VoiceId || (VoiceId = {}));
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);
151
+ var InvalidNextTokenException = (function (_super) {
152
+ __extends(InvalidNextTokenException, _super);
153
+ function InvalidNextTokenException(opts) {
154
+ var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
155
+ _this.name = "InvalidNextTokenException";
156
+ _this.$fault = "client";
157
+ Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
158
+ return _this;
160
159
  }
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);
160
+ return InvalidNextTokenException;
161
+ }(__BaseException));
162
+ export { InvalidNextTokenException };
163
+ var EngineNotSupportedException = (function (_super) {
164
+ __extends(EngineNotSupportedException, _super);
165
+ function EngineNotSupportedException(opts) {
166
+ var _this = _super.call(this, __assign({ name: "EngineNotSupportedException", $fault: "client" }, opts)) || this;
167
+ _this.name = "EngineNotSupportedException";
168
+ _this.$fault = "client";
169
+ Object.setPrototypeOf(_this, EngineNotSupportedException.prototype);
170
+ return _this;
172
171
  }
173
- }
172
+ return EngineNotSupportedException;
173
+ }(__BaseException));
174
+ export { EngineNotSupportedException };
174
175
  export var OutputFormat;
175
176
  (function (OutputFormat) {
176
177
  OutputFormat["JSON"] = "json";
@@ -197,279 +198,230 @@ export var TextType;
197
198
  TextType["SSML"] = "ssml";
198
199
  TextType["TEXT"] = "text";
199
200
  })(TextType || (TextType = {}));
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);
201
+ var InvalidTaskIdException = (function (_super) {
202
+ __extends(InvalidTaskIdException, _super);
203
+ function InvalidTaskIdException(opts) {
204
+ var _this = _super.call(this, __assign({ name: "InvalidTaskIdException", $fault: "client" }, opts)) || this;
205
+ _this.name = "InvalidTaskIdException";
206
+ _this.$fault = "client";
207
+ Object.setPrototypeOf(_this, InvalidTaskIdException.prototype);
208
+ return _this;
210
209
  }
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);
210
+ return InvalidTaskIdException;
211
+ }(__BaseException));
212
+ export { InvalidTaskIdException };
213
+ var SynthesisTaskNotFoundException = (function (_super) {
214
+ __extends(SynthesisTaskNotFoundException, _super);
215
+ function SynthesisTaskNotFoundException(opts) {
216
+ var _this = _super.call(this, __assign({ name: "SynthesisTaskNotFoundException", $fault: "client" }, opts)) || this;
217
+ _this.name = "SynthesisTaskNotFoundException";
218
+ _this.$fault = "client";
219
+ Object.setPrototypeOf(_this, SynthesisTaskNotFoundException.prototype);
220
+ return _this;
222
221
  }
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);
222
+ return SynthesisTaskNotFoundException;
223
+ }(__BaseException));
224
+ export { SynthesisTaskNotFoundException };
225
+ var InvalidLexiconException = (function (_super) {
226
+ __extends(InvalidLexiconException, _super);
227
+ function InvalidLexiconException(opts) {
228
+ var _this = _super.call(this, __assign({ name: "InvalidLexiconException", $fault: "client" }, opts)) || this;
229
+ _this.name = "InvalidLexiconException";
230
+ _this.$fault = "client";
231
+ Object.setPrototypeOf(_this, InvalidLexiconException.prototype);
232
+ return _this;
234
233
  }
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);
234
+ return InvalidLexiconException;
235
+ }(__BaseException));
236
+ export { InvalidLexiconException };
237
+ var InvalidS3BucketException = (function (_super) {
238
+ __extends(InvalidS3BucketException, _super);
239
+ function InvalidS3BucketException(opts) {
240
+ var _this = _super.call(this, __assign({ name: "InvalidS3BucketException", $fault: "client" }, opts)) || this;
241
+ _this.name = "InvalidS3BucketException";
242
+ _this.$fault = "client";
243
+ Object.setPrototypeOf(_this, InvalidS3BucketException.prototype);
244
+ return _this;
246
245
  }
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);
246
+ return InvalidS3BucketException;
247
+ }(__BaseException));
248
+ export { InvalidS3BucketException };
249
+ var InvalidS3KeyException = (function (_super) {
250
+ __extends(InvalidS3KeyException, _super);
251
+ function InvalidS3KeyException(opts) {
252
+ var _this = _super.call(this, __assign({ name: "InvalidS3KeyException", $fault: "client" }, opts)) || this;
253
+ _this.name = "InvalidS3KeyException";
254
+ _this.$fault = "client";
255
+ Object.setPrototypeOf(_this, InvalidS3KeyException.prototype);
256
+ return _this;
258
257
  }
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);
258
+ return InvalidS3KeyException;
259
+ }(__BaseException));
260
+ export { InvalidS3KeyException };
261
+ var InvalidSampleRateException = (function (_super) {
262
+ __extends(InvalidSampleRateException, _super);
263
+ function InvalidSampleRateException(opts) {
264
+ var _this = _super.call(this, __assign({ name: "InvalidSampleRateException", $fault: "client" }, opts)) || this;
265
+ _this.name = "InvalidSampleRateException";
266
+ _this.$fault = "client";
267
+ Object.setPrototypeOf(_this, InvalidSampleRateException.prototype);
268
+ return _this;
270
269
  }
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);
270
+ return InvalidSampleRateException;
271
+ }(__BaseException));
272
+ export { InvalidSampleRateException };
273
+ var InvalidSnsTopicArnException = (function (_super) {
274
+ __extends(InvalidSnsTopicArnException, _super);
275
+ function InvalidSnsTopicArnException(opts) {
276
+ var _this = _super.call(this, __assign({ name: "InvalidSnsTopicArnException", $fault: "client" }, opts)) || this;
277
+ _this.name = "InvalidSnsTopicArnException";
278
+ _this.$fault = "client";
279
+ Object.setPrototypeOf(_this, InvalidSnsTopicArnException.prototype);
280
+ return _this;
282
281
  }
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);
282
+ return InvalidSnsTopicArnException;
283
+ }(__BaseException));
284
+ export { InvalidSnsTopicArnException };
285
+ var InvalidSsmlException = (function (_super) {
286
+ __extends(InvalidSsmlException, _super);
287
+ function InvalidSsmlException(opts) {
288
+ var _this = _super.call(this, __assign({ name: "InvalidSsmlException", $fault: "client" }, opts)) || this;
289
+ _this.name = "InvalidSsmlException";
290
+ _this.$fault = "client";
291
+ Object.setPrototypeOf(_this, InvalidSsmlException.prototype);
292
+ return _this;
294
293
  }
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);
294
+ return InvalidSsmlException;
295
+ }(__BaseException));
296
+ export { InvalidSsmlException };
297
+ var LanguageNotSupportedException = (function (_super) {
298
+ __extends(LanguageNotSupportedException, _super);
299
+ function LanguageNotSupportedException(opts) {
300
+ var _this = _super.call(this, __assign({ name: "LanguageNotSupportedException", $fault: "client" }, opts)) || this;
301
+ _this.name = "LanguageNotSupportedException";
302
+ _this.$fault = "client";
303
+ Object.setPrototypeOf(_this, LanguageNotSupportedException.prototype);
304
+ return _this;
306
305
  }
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);
306
+ return LanguageNotSupportedException;
307
+ }(__BaseException));
308
+ export { LanguageNotSupportedException };
309
+ var LexiconSizeExceededException = (function (_super) {
310
+ __extends(LexiconSizeExceededException, _super);
311
+ function LexiconSizeExceededException(opts) {
312
+ var _this = _super.call(this, __assign({ name: "LexiconSizeExceededException", $fault: "client" }, opts)) || this;
313
+ _this.name = "LexiconSizeExceededException";
314
+ _this.$fault = "client";
315
+ Object.setPrototypeOf(_this, LexiconSizeExceededException.prototype);
316
+ return _this;
318
317
  }
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);
318
+ return LexiconSizeExceededException;
319
+ }(__BaseException));
320
+ export { LexiconSizeExceededException };
321
+ var MarksNotSupportedForFormatException = (function (_super) {
322
+ __extends(MarksNotSupportedForFormatException, _super);
323
+ function MarksNotSupportedForFormatException(opts) {
324
+ var _this = _super.call(this, __assign({ name: "MarksNotSupportedForFormatException", $fault: "client" }, opts)) || this;
325
+ _this.name = "MarksNotSupportedForFormatException";
326
+ _this.$fault = "client";
327
+ Object.setPrototypeOf(_this, MarksNotSupportedForFormatException.prototype);
328
+ return _this;
330
329
  }
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);
330
+ return MarksNotSupportedForFormatException;
331
+ }(__BaseException));
332
+ export { MarksNotSupportedForFormatException };
333
+ var MaxLexemeLengthExceededException = (function (_super) {
334
+ __extends(MaxLexemeLengthExceededException, _super);
335
+ function MaxLexemeLengthExceededException(opts) {
336
+ var _this = _super.call(this, __assign({ name: "MaxLexemeLengthExceededException", $fault: "client" }, opts)) || this;
337
+ _this.name = "MaxLexemeLengthExceededException";
338
+ _this.$fault = "client";
339
+ Object.setPrototypeOf(_this, MaxLexemeLengthExceededException.prototype);
340
+ return _this;
342
341
  }
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);
342
+ return MaxLexemeLengthExceededException;
343
+ }(__BaseException));
344
+ export { MaxLexemeLengthExceededException };
345
+ var MaxLexiconsNumberExceededException = (function (_super) {
346
+ __extends(MaxLexiconsNumberExceededException, _super);
347
+ function MaxLexiconsNumberExceededException(opts) {
348
+ var _this = _super.call(this, __assign({ name: "MaxLexiconsNumberExceededException", $fault: "client" }, opts)) || this;
349
+ _this.name = "MaxLexiconsNumberExceededException";
350
+ _this.$fault = "client";
351
+ Object.setPrototypeOf(_this, MaxLexiconsNumberExceededException.prototype);
352
+ return _this;
354
353
  }
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);
354
+ return MaxLexiconsNumberExceededException;
355
+ }(__BaseException));
356
+ export { MaxLexiconsNumberExceededException };
357
+ var UnsupportedPlsAlphabetException = (function (_super) {
358
+ __extends(UnsupportedPlsAlphabetException, _super);
359
+ function UnsupportedPlsAlphabetException(opts) {
360
+ var _this = _super.call(this, __assign({ name: "UnsupportedPlsAlphabetException", $fault: "client" }, opts)) || this;
361
+ _this.name = "UnsupportedPlsAlphabetException";
362
+ _this.$fault = "client";
363
+ Object.setPrototypeOf(_this, UnsupportedPlsAlphabetException.prototype);
364
+ return _this;
366
365
  }
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);
366
+ return UnsupportedPlsAlphabetException;
367
+ }(__BaseException));
368
+ export { UnsupportedPlsAlphabetException };
369
+ var UnsupportedPlsLanguageException = (function (_super) {
370
+ __extends(UnsupportedPlsLanguageException, _super);
371
+ function UnsupportedPlsLanguageException(opts) {
372
+ var _this = _super.call(this, __assign({ name: "UnsupportedPlsLanguageException", $fault: "client" }, opts)) || this;
373
+ _this.name = "UnsupportedPlsLanguageException";
374
+ _this.$fault = "client";
375
+ Object.setPrototypeOf(_this, UnsupportedPlsLanguageException.prototype);
376
+ return _this;
378
377
  }
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);
378
+ return UnsupportedPlsLanguageException;
379
+ }(__BaseException));
380
+ export { UnsupportedPlsLanguageException };
381
+ var SsmlMarksNotSupportedForTextTypeException = (function (_super) {
382
+ __extends(SsmlMarksNotSupportedForTextTypeException, _super);
383
+ function SsmlMarksNotSupportedForTextTypeException(opts) {
384
+ var _this = _super.call(this, __assign({ name: "SsmlMarksNotSupportedForTextTypeException", $fault: "client" }, opts)) || this;
385
+ _this.name = "SsmlMarksNotSupportedForTextTypeException";
386
+ _this.$fault = "client";
387
+ Object.setPrototypeOf(_this, SsmlMarksNotSupportedForTextTypeException.prototype);
388
+ return _this;
390
389
  }
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);
390
+ return SsmlMarksNotSupportedForTextTypeException;
391
+ }(__BaseException));
392
+ export { SsmlMarksNotSupportedForTextTypeException };
393
+ var TextLengthExceededException = (function (_super) {
394
+ __extends(TextLengthExceededException, _super);
395
+ function TextLengthExceededException(opts) {
396
+ var _this = _super.call(this, __assign({ name: "TextLengthExceededException", $fault: "client" }, opts)) || this;
397
+ _this.name = "TextLengthExceededException";
398
+ _this.$fault = "client";
399
+ Object.setPrototypeOf(_this, TextLengthExceededException.prototype);
400
+ return _this;
402
401
  }
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
- });
402
+ return TextLengthExceededException;
403
+ }(__BaseException));
404
+ export { TextLengthExceededException };
405
+ export var DeleteLexiconInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
+ export var DeleteLexiconOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
+ export var DescribeVoicesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
+ export var VoiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
+ export var DescribeVoicesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
+ export var GetLexiconInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
+ export var LexiconFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Content && { Content: SENSITIVE_STRING }))); };
412
+ export var LexiconAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
413
+ export var GetLexiconOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Lexicon && { Lexicon: LexiconFilterSensitiveLog(obj.Lexicon) }))); };
414
+ export var GetSpeechSynthesisTaskInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
+ export var SynthesisTaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
416
+ export var GetSpeechSynthesisTaskOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
417
+ export var LexiconDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
+ export var ListLexiconsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
419
+ export var ListLexiconsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
+ export var ListSpeechSynthesisTasksInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
+ export var ListSpeechSynthesisTasksOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
+ export var PutLexiconInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Content && { Content: SENSITIVE_STRING }))); };
423
+ export var PutLexiconOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
424
+ export var StartSpeechSynthesisTaskInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
425
+ export var StartSpeechSynthesisTaskOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
426
+ export var SynthesizeSpeechInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
427
+ export var SynthesizeSpeechOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };