@aws-sdk/client-rekognition 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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RekognitionServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +298 -5
- package/dist-cjs/protocols/Aws_json1_1.js +821 -3362
- package/dist-es/index.js +1 -0
- package/dist-es/models/RekognitionServiceException.js +12 -0
- package/dist-es/models/models_0.js +275 -1
- package/dist-es/protocols/Aws_json1_1.js +1727 -3559
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RekognitionServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +128 -56
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RekognitionServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -56
- package/package.json +26 -26
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var RekognitionServiceException = (function (_super) {
|
|
4
|
+
__extends(RekognitionServiceException, _super);
|
|
5
|
+
function RekognitionServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, RekognitionServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return RekognitionServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { RekognitionServiceException };
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { RekognitionServiceException as __BaseException } from "./RekognitionServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
_this.Code = opts.Code;
|
|
12
|
+
_this.Logref = opts.Logref;
|
|
13
|
+
return _this;
|
|
14
|
+
}
|
|
15
|
+
return AccessDeniedException;
|
|
16
|
+
}(__BaseException));
|
|
17
|
+
export { AccessDeniedException };
|
|
2
18
|
export var AgeRange;
|
|
3
19
|
(function (AgeRange) {
|
|
4
20
|
AgeRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -214,6 +230,111 @@ export var CompareFacesResponse;
|
|
|
214
230
|
(function (CompareFacesResponse) {
|
|
215
231
|
CompareFacesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
232
|
})(CompareFacesResponse || (CompareFacesResponse = {}));
|
|
233
|
+
var ImageTooLargeException = (function (_super) {
|
|
234
|
+
__extends(ImageTooLargeException, _super);
|
|
235
|
+
function ImageTooLargeException(opts) {
|
|
236
|
+
var _this = _super.call(this, __assign({ name: "ImageTooLargeException", $fault: "client" }, opts)) || this;
|
|
237
|
+
_this.name = "ImageTooLargeException";
|
|
238
|
+
_this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(_this, ImageTooLargeException.prototype);
|
|
240
|
+
_this.Message = opts.Message;
|
|
241
|
+
_this.Code = opts.Code;
|
|
242
|
+
_this.Logref = opts.Logref;
|
|
243
|
+
return _this;
|
|
244
|
+
}
|
|
245
|
+
return ImageTooLargeException;
|
|
246
|
+
}(__BaseException));
|
|
247
|
+
export { ImageTooLargeException };
|
|
248
|
+
var InternalServerError = (function (_super) {
|
|
249
|
+
__extends(InternalServerError, _super);
|
|
250
|
+
function InternalServerError(opts) {
|
|
251
|
+
var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
|
|
252
|
+
_this.name = "InternalServerError";
|
|
253
|
+
_this.$fault = "server";
|
|
254
|
+
Object.setPrototypeOf(_this, InternalServerError.prototype);
|
|
255
|
+
_this.Message = opts.Message;
|
|
256
|
+
_this.Code = opts.Code;
|
|
257
|
+
_this.Logref = opts.Logref;
|
|
258
|
+
return _this;
|
|
259
|
+
}
|
|
260
|
+
return InternalServerError;
|
|
261
|
+
}(__BaseException));
|
|
262
|
+
export { InternalServerError };
|
|
263
|
+
var InvalidImageFormatException = (function (_super) {
|
|
264
|
+
__extends(InvalidImageFormatException, _super);
|
|
265
|
+
function InvalidImageFormatException(opts) {
|
|
266
|
+
var _this = _super.call(this, __assign({ name: "InvalidImageFormatException", $fault: "client" }, opts)) || this;
|
|
267
|
+
_this.name = "InvalidImageFormatException";
|
|
268
|
+
_this.$fault = "client";
|
|
269
|
+
Object.setPrototypeOf(_this, InvalidImageFormatException.prototype);
|
|
270
|
+
_this.Message = opts.Message;
|
|
271
|
+
_this.Code = opts.Code;
|
|
272
|
+
_this.Logref = opts.Logref;
|
|
273
|
+
return _this;
|
|
274
|
+
}
|
|
275
|
+
return InvalidImageFormatException;
|
|
276
|
+
}(__BaseException));
|
|
277
|
+
export { InvalidImageFormatException };
|
|
278
|
+
var InvalidParameterException = (function (_super) {
|
|
279
|
+
__extends(InvalidParameterException, _super);
|
|
280
|
+
function InvalidParameterException(opts) {
|
|
281
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
282
|
+
_this.name = "InvalidParameterException";
|
|
283
|
+
_this.$fault = "client";
|
|
284
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
285
|
+
_this.Message = opts.Message;
|
|
286
|
+
_this.Code = opts.Code;
|
|
287
|
+
_this.Logref = opts.Logref;
|
|
288
|
+
return _this;
|
|
289
|
+
}
|
|
290
|
+
return InvalidParameterException;
|
|
291
|
+
}(__BaseException));
|
|
292
|
+
export { InvalidParameterException };
|
|
293
|
+
var InvalidS3ObjectException = (function (_super) {
|
|
294
|
+
__extends(InvalidS3ObjectException, _super);
|
|
295
|
+
function InvalidS3ObjectException(opts) {
|
|
296
|
+
var _this = _super.call(this, __assign({ name: "InvalidS3ObjectException", $fault: "client" }, opts)) || this;
|
|
297
|
+
_this.name = "InvalidS3ObjectException";
|
|
298
|
+
_this.$fault = "client";
|
|
299
|
+
Object.setPrototypeOf(_this, InvalidS3ObjectException.prototype);
|
|
300
|
+
_this.Message = opts.Message;
|
|
301
|
+
_this.Code = opts.Code;
|
|
302
|
+
_this.Logref = opts.Logref;
|
|
303
|
+
return _this;
|
|
304
|
+
}
|
|
305
|
+
return InvalidS3ObjectException;
|
|
306
|
+
}(__BaseException));
|
|
307
|
+
export { InvalidS3ObjectException };
|
|
308
|
+
var ProvisionedThroughputExceededException = (function (_super) {
|
|
309
|
+
__extends(ProvisionedThroughputExceededException, _super);
|
|
310
|
+
function ProvisionedThroughputExceededException(opts) {
|
|
311
|
+
var _this = _super.call(this, __assign({ name: "ProvisionedThroughputExceededException", $fault: "client" }, opts)) || this;
|
|
312
|
+
_this.name = "ProvisionedThroughputExceededException";
|
|
313
|
+
_this.$fault = "client";
|
|
314
|
+
Object.setPrototypeOf(_this, ProvisionedThroughputExceededException.prototype);
|
|
315
|
+
_this.Message = opts.Message;
|
|
316
|
+
_this.Code = opts.Code;
|
|
317
|
+
_this.Logref = opts.Logref;
|
|
318
|
+
return _this;
|
|
319
|
+
}
|
|
320
|
+
return ProvisionedThroughputExceededException;
|
|
321
|
+
}(__BaseException));
|
|
322
|
+
export { ProvisionedThroughputExceededException };
|
|
323
|
+
var ThrottlingException = (function (_super) {
|
|
324
|
+
__extends(ThrottlingException, _super);
|
|
325
|
+
function ThrottlingException(opts) {
|
|
326
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "server" }, opts)) || this;
|
|
327
|
+
_this.name = "ThrottlingException";
|
|
328
|
+
_this.$fault = "server";
|
|
329
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
330
|
+
_this.Message = opts.Message;
|
|
331
|
+
_this.Code = opts.Code;
|
|
332
|
+
_this.Logref = opts.Logref;
|
|
333
|
+
return _this;
|
|
334
|
+
}
|
|
335
|
+
return ThrottlingException;
|
|
336
|
+
}(__BaseException));
|
|
337
|
+
export { ThrottlingException };
|
|
217
338
|
export var ContentClassifier;
|
|
218
339
|
(function (ContentClassifier) {
|
|
219
340
|
ContentClassifier["FREE_OF_ADULT_CONTENT"] = "FreeOfAdultContent";
|
|
@@ -240,6 +361,36 @@ export var CreateCollectionResponse;
|
|
|
240
361
|
(function (CreateCollectionResponse) {
|
|
241
362
|
CreateCollectionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
363
|
})(CreateCollectionResponse || (CreateCollectionResponse = {}));
|
|
364
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
365
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
366
|
+
function ResourceAlreadyExistsException(opts) {
|
|
367
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
368
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
369
|
+
_this.$fault = "client";
|
|
370
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
371
|
+
_this.Message = opts.Message;
|
|
372
|
+
_this.Code = opts.Code;
|
|
373
|
+
_this.Logref = opts.Logref;
|
|
374
|
+
return _this;
|
|
375
|
+
}
|
|
376
|
+
return ResourceAlreadyExistsException;
|
|
377
|
+
}(__BaseException));
|
|
378
|
+
export { ResourceAlreadyExistsException };
|
|
379
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
380
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
381
|
+
function ServiceQuotaExceededException(opts) {
|
|
382
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
383
|
+
_this.name = "ServiceQuotaExceededException";
|
|
384
|
+
_this.$fault = "client";
|
|
385
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
386
|
+
_this.Message = opts.Message;
|
|
387
|
+
_this.Code = opts.Code;
|
|
388
|
+
_this.Logref = opts.Logref;
|
|
389
|
+
return _this;
|
|
390
|
+
}
|
|
391
|
+
return ServiceQuotaExceededException;
|
|
392
|
+
}(__BaseException));
|
|
393
|
+
export { ServiceQuotaExceededException };
|
|
243
394
|
export var DatasetSource;
|
|
244
395
|
(function (DatasetSource) {
|
|
245
396
|
DatasetSource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -257,6 +408,36 @@ export var CreateDatasetResponse;
|
|
|
257
408
|
(function (CreateDatasetResponse) {
|
|
258
409
|
CreateDatasetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
410
|
})(CreateDatasetResponse || (CreateDatasetResponse = {}));
|
|
411
|
+
var LimitExceededException = (function (_super) {
|
|
412
|
+
__extends(LimitExceededException, _super);
|
|
413
|
+
function LimitExceededException(opts) {
|
|
414
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
415
|
+
_this.name = "LimitExceededException";
|
|
416
|
+
_this.$fault = "client";
|
|
417
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
418
|
+
_this.Message = opts.Message;
|
|
419
|
+
_this.Code = opts.Code;
|
|
420
|
+
_this.Logref = opts.Logref;
|
|
421
|
+
return _this;
|
|
422
|
+
}
|
|
423
|
+
return LimitExceededException;
|
|
424
|
+
}(__BaseException));
|
|
425
|
+
export { LimitExceededException };
|
|
426
|
+
var ResourceNotFoundException = (function (_super) {
|
|
427
|
+
__extends(ResourceNotFoundException, _super);
|
|
428
|
+
function ResourceNotFoundException(opts) {
|
|
429
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
430
|
+
_this.name = "ResourceNotFoundException";
|
|
431
|
+
_this.$fault = "client";
|
|
432
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
433
|
+
_this.Message = opts.Message;
|
|
434
|
+
_this.Code = opts.Code;
|
|
435
|
+
_this.Logref = opts.Logref;
|
|
436
|
+
return _this;
|
|
437
|
+
}
|
|
438
|
+
return ResourceNotFoundException;
|
|
439
|
+
}(__BaseException));
|
|
440
|
+
export { ResourceNotFoundException };
|
|
260
441
|
export var CreateProjectRequest;
|
|
261
442
|
(function (CreateProjectRequest) {
|
|
262
443
|
CreateProjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -265,6 +446,21 @@ export var CreateProjectResponse;
|
|
|
265
446
|
(function (CreateProjectResponse) {
|
|
266
447
|
CreateProjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
448
|
})(CreateProjectResponse || (CreateProjectResponse = {}));
|
|
449
|
+
var ResourceInUseException = (function (_super) {
|
|
450
|
+
__extends(ResourceInUseException, _super);
|
|
451
|
+
function ResourceInUseException(opts) {
|
|
452
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
453
|
+
_this.name = "ResourceInUseException";
|
|
454
|
+
_this.$fault = "client";
|
|
455
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
456
|
+
_this.Message = opts.Message;
|
|
457
|
+
_this.Code = opts.Code;
|
|
458
|
+
_this.Logref = opts.Logref;
|
|
459
|
+
return _this;
|
|
460
|
+
}
|
|
461
|
+
return ResourceInUseException;
|
|
462
|
+
}(__BaseException));
|
|
463
|
+
export { ResourceInUseException };
|
|
268
464
|
export var OutputConfig;
|
|
269
465
|
(function (OutputConfig) {
|
|
270
466
|
OutputConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -463,6 +659,21 @@ export var DescribeProjectsResponse;
|
|
|
463
659
|
(function (DescribeProjectsResponse) {
|
|
464
660
|
DescribeProjectsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
465
661
|
})(DescribeProjectsResponse || (DescribeProjectsResponse = {}));
|
|
662
|
+
var InvalidPaginationTokenException = (function (_super) {
|
|
663
|
+
__extends(InvalidPaginationTokenException, _super);
|
|
664
|
+
function InvalidPaginationTokenException(opts) {
|
|
665
|
+
var _this = _super.call(this, __assign({ name: "InvalidPaginationTokenException", $fault: "client" }, opts)) || this;
|
|
666
|
+
_this.name = "InvalidPaginationTokenException";
|
|
667
|
+
_this.$fault = "client";
|
|
668
|
+
Object.setPrototypeOf(_this, InvalidPaginationTokenException.prototype);
|
|
669
|
+
_this.Message = opts.Message;
|
|
670
|
+
_this.Code = opts.Code;
|
|
671
|
+
_this.Logref = opts.Logref;
|
|
672
|
+
return _this;
|
|
673
|
+
}
|
|
674
|
+
return InvalidPaginationTokenException;
|
|
675
|
+
}(__BaseException));
|
|
676
|
+
export { InvalidPaginationTokenException };
|
|
466
677
|
export var DescribeProjectVersionsRequest;
|
|
467
678
|
(function (DescribeProjectVersionsRequest) {
|
|
468
679
|
DescribeProjectVersionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -519,6 +730,21 @@ export var DetectCustomLabelsResponse;
|
|
|
519
730
|
(function (DetectCustomLabelsResponse) {
|
|
520
731
|
DetectCustomLabelsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
521
732
|
})(DetectCustomLabelsResponse || (DetectCustomLabelsResponse = {}));
|
|
733
|
+
var ResourceNotReadyException = (function (_super) {
|
|
734
|
+
__extends(ResourceNotReadyException, _super);
|
|
735
|
+
function ResourceNotReadyException(opts) {
|
|
736
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotReadyException", $fault: "client" }, opts)) || this;
|
|
737
|
+
_this.name = "ResourceNotReadyException";
|
|
738
|
+
_this.$fault = "client";
|
|
739
|
+
Object.setPrototypeOf(_this, ResourceNotReadyException.prototype);
|
|
740
|
+
_this.Message = opts.Message;
|
|
741
|
+
_this.Code = opts.Code;
|
|
742
|
+
_this.Logref = opts.Logref;
|
|
743
|
+
return _this;
|
|
744
|
+
}
|
|
745
|
+
return ResourceNotReadyException;
|
|
746
|
+
}(__BaseException));
|
|
747
|
+
export { ResourceNotReadyException };
|
|
522
748
|
export var DetectFacesRequest;
|
|
523
749
|
(function (DetectFacesRequest) {
|
|
524
750
|
DetectFacesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -571,6 +797,24 @@ export var DetectModerationLabelsResponse;
|
|
|
571
797
|
(function (DetectModerationLabelsResponse) {
|
|
572
798
|
DetectModerationLabelsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
573
799
|
})(DetectModerationLabelsResponse || (DetectModerationLabelsResponse = {}));
|
|
800
|
+
var HumanLoopQuotaExceededException = (function (_super) {
|
|
801
|
+
__extends(HumanLoopQuotaExceededException, _super);
|
|
802
|
+
function HumanLoopQuotaExceededException(opts) {
|
|
803
|
+
var _this = _super.call(this, __assign({ name: "HumanLoopQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
804
|
+
_this.name = "HumanLoopQuotaExceededException";
|
|
805
|
+
_this.$fault = "client";
|
|
806
|
+
Object.setPrototypeOf(_this, HumanLoopQuotaExceededException.prototype);
|
|
807
|
+
_this.ResourceType = opts.ResourceType;
|
|
808
|
+
_this.QuotaCode = opts.QuotaCode;
|
|
809
|
+
_this.ServiceCode = opts.ServiceCode;
|
|
810
|
+
_this.Message = opts.Message;
|
|
811
|
+
_this.Code = opts.Code;
|
|
812
|
+
_this.Logref = opts.Logref;
|
|
813
|
+
return _this;
|
|
814
|
+
}
|
|
815
|
+
return HumanLoopQuotaExceededException;
|
|
816
|
+
}(__BaseException));
|
|
817
|
+
export { HumanLoopQuotaExceededException };
|
|
574
818
|
export var ProtectiveEquipmentSummarizationAttributes;
|
|
575
819
|
(function (ProtectiveEquipmentSummarizationAttributes) {
|
|
576
820
|
ProtectiveEquipmentSummarizationAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -802,6 +1046,21 @@ export var GetTextDetectionResponse;
|
|
|
802
1046
|
(function (GetTextDetectionResponse) {
|
|
803
1047
|
GetTextDetectionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
804
1048
|
})(GetTextDetectionResponse || (GetTextDetectionResponse = {}));
|
|
1049
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
1050
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
1051
|
+
function IdempotentParameterMismatchException(opts) {
|
|
1052
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
1053
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
1054
|
+
_this.$fault = "client";
|
|
1055
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
1056
|
+
_this.Message = opts.Message;
|
|
1057
|
+
_this.Code = opts.Code;
|
|
1058
|
+
_this.Logref = opts.Logref;
|
|
1059
|
+
return _this;
|
|
1060
|
+
}
|
|
1061
|
+
return IdempotentParameterMismatchException;
|
|
1062
|
+
}(__BaseException));
|
|
1063
|
+
export { IdempotentParameterMismatchException };
|
|
805
1064
|
export var IndexFacesRequest;
|
|
806
1065
|
(function (IndexFacesRequest) {
|
|
807
1066
|
IndexFacesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -916,6 +1175,21 @@ export var StartCelebrityRecognitionResponse;
|
|
|
916
1175
|
(function (StartCelebrityRecognitionResponse) {
|
|
917
1176
|
StartCelebrityRecognitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
918
1177
|
})(StartCelebrityRecognitionResponse || (StartCelebrityRecognitionResponse = {}));
|
|
1178
|
+
var VideoTooLargeException = (function (_super) {
|
|
1179
|
+
__extends(VideoTooLargeException, _super);
|
|
1180
|
+
function VideoTooLargeException(opts) {
|
|
1181
|
+
var _this = _super.call(this, __assign({ name: "VideoTooLargeException", $fault: "client" }, opts)) || this;
|
|
1182
|
+
_this.name = "VideoTooLargeException";
|
|
1183
|
+
_this.$fault = "client";
|
|
1184
|
+
Object.setPrototypeOf(_this, VideoTooLargeException.prototype);
|
|
1185
|
+
_this.Message = opts.Message;
|
|
1186
|
+
_this.Code = opts.Code;
|
|
1187
|
+
_this.Logref = opts.Logref;
|
|
1188
|
+
return _this;
|
|
1189
|
+
}
|
|
1190
|
+
return VideoTooLargeException;
|
|
1191
|
+
}(__BaseException));
|
|
1192
|
+
export { VideoTooLargeException };
|
|
919
1193
|
export var StartContentModerationRequest;
|
|
920
1194
|
(function (StartContentModerationRequest) {
|
|
921
1195
|
StartContentModerationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|