@aws-sdk/client-transcribe 3.52.0 → 3.53.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/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./TranscribeClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { TranscribeServiceException } from "./models/TranscribeServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var TranscribeServiceException = (function (_super) {
4
+ __extends(TranscribeServiceException, _super);
5
+ function TranscribeServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, TranscribeServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return TranscribeServiceException;
11
+ }(__ServiceException));
12
+ export { TranscribeServiceException };
@@ -1,8 +1,22 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { TranscribeServiceException as __BaseException } from "./TranscribeServiceException";
2
3
  export var AbsoluteTimeRange;
3
4
  (function (AbsoluteTimeRange) {
4
5
  AbsoluteTimeRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
6
  })(AbsoluteTimeRange || (AbsoluteTimeRange = {}));
7
+ var BadRequestException = (function (_super) {
8
+ __extends(BadRequestException, _super);
9
+ function BadRequestException(opts) {
10
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
11
+ _this.name = "BadRequestException";
12
+ _this.$fault = "client";
13
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
14
+ _this.Message = opts.Message;
15
+ return _this;
16
+ }
17
+ return BadRequestException;
18
+ }(__BaseException));
19
+ export { BadRequestException };
6
20
  export var BaseModelName;
7
21
  (function (BaseModelName) {
8
22
  BaseModelName["NARROW_BAND"] = "NarrowBand";
@@ -205,6 +219,19 @@ export var CLMLanguageCode;
205
219
  CLMLanguageCode["ES_US"] = "es-US";
206
220
  CLMLanguageCode["HI_IN"] = "hi-IN";
207
221
  })(CLMLanguageCode || (CLMLanguageCode = {}));
222
+ var ConflictException = (function (_super) {
223
+ __extends(ConflictException, _super);
224
+ function ConflictException(opts) {
225
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
226
+ _this.name = "ConflictException";
227
+ _this.$fault = "client";
228
+ Object.setPrototypeOf(_this, ConflictException.prototype);
229
+ _this.Message = opts.Message;
230
+ return _this;
231
+ }
232
+ return ConflictException;
233
+ }(__BaseException));
234
+ export { ConflictException };
208
235
  export var CreateCallAnalyticsCategoryRequest;
209
236
  (function (CreateCallAnalyticsCategoryRequest) {
210
237
  CreateCallAnalyticsCategoryRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Rules && { Rules: obj.Rules.map(function (item) { return Rule.filterSensitiveLog(item); }) }))); };
@@ -215,6 +242,32 @@ export var CreateCallAnalyticsCategoryResponse;
215
242
  CategoryProperties: CategoryProperties.filterSensitiveLog(obj.CategoryProperties),
216
243
  }))); };
217
244
  })(CreateCallAnalyticsCategoryResponse || (CreateCallAnalyticsCategoryResponse = {}));
245
+ var InternalFailureException = (function (_super) {
246
+ __extends(InternalFailureException, _super);
247
+ function InternalFailureException(opts) {
248
+ var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
249
+ _this.name = "InternalFailureException";
250
+ _this.$fault = "server";
251
+ Object.setPrototypeOf(_this, InternalFailureException.prototype);
252
+ _this.Message = opts.Message;
253
+ return _this;
254
+ }
255
+ return InternalFailureException;
256
+ }(__BaseException));
257
+ export { InternalFailureException };
258
+ var LimitExceededException = (function (_super) {
259
+ __extends(LimitExceededException, _super);
260
+ function LimitExceededException(opts) {
261
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
262
+ _this.name = "LimitExceededException";
263
+ _this.$fault = "client";
264
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
265
+ _this.Message = opts.Message;
266
+ return _this;
267
+ }
268
+ return LimitExceededException;
269
+ }(__BaseException));
270
+ export { LimitExceededException };
218
271
  export var InputDataConfig;
219
272
  (function (InputDataConfig) {
220
273
  InputDataConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -275,6 +328,19 @@ export var DeleteCallAnalyticsCategoryResponse;
275
328
  (function (DeleteCallAnalyticsCategoryResponse) {
276
329
  DeleteCallAnalyticsCategoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
330
  })(DeleteCallAnalyticsCategoryResponse || (DeleteCallAnalyticsCategoryResponse = {}));
331
+ var NotFoundException = (function (_super) {
332
+ __extends(NotFoundException, _super);
333
+ function NotFoundException(opts) {
334
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
335
+ _this.name = "NotFoundException";
336
+ _this.$fault = "client";
337
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
338
+ _this.Message = opts.Message;
339
+ return _this;
340
+ }
341
+ return NotFoundException;
342
+ }(__BaseException));
343
+ export { NotFoundException };
278
344
  export var DeleteCallAnalyticsJobRequest;
279
345
  (function (DeleteCallAnalyticsJobRequest) {
280
346
  DeleteCallAnalyticsJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };