@aws-sdk/client-polly 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_restJson1.js +2 -2
- package/dist-es/Polly.js +45 -38
- package/dist-es/PollyClient.js +28 -22
- package/dist-es/commands/DeleteLexiconCommand.js +28 -21
- package/dist-es/commands/DescribeVoicesCommand.js +28 -21
- package/dist-es/commands/GetLexiconCommand.js +28 -21
- package/dist-es/commands/GetSpeechSynthesisTaskCommand.js +28 -21
- package/dist-es/commands/ListLexiconsCommand.js +28 -21
- package/dist-es/commands/ListSpeechSynthesisTasksCommand.js +28 -21
- package/dist-es/commands/PutLexiconCommand.js +28 -21
- package/dist-es/commands/StartSpeechSynthesisTaskCommand.js +28 -21
- package/dist-es/commands/SynthesizeSpeechCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/PollyServiceException.js +10 -5
- package/dist-es/models/models_0.js +255 -303
- package/dist-es/pagination/ListSpeechSynthesisTasksPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +1154 -878
- 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,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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
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
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
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
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
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
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
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
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
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
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
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
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
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
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
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
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
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
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
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
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
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
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
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
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
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
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
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
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
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
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
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
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
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
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
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
|
-
|
|
405
|
-
|
|
406
|
-
});
|
|
407
|
-
export
|
|
408
|
-
|
|
409
|
-
});
|
|
410
|
-
export
|
|
411
|
-
|
|
412
|
-
});
|
|
413
|
-
export
|
|
414
|
-
|
|
415
|
-
});
|
|
416
|
-
export
|
|
417
|
-
|
|
418
|
-
});
|
|
419
|
-
export
|
|
420
|
-
|
|
421
|
-
});
|
|
422
|
-
export
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
});
|
|
426
|
-
export
|
|
427
|
-
|
|
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)); };
|