@aws-sdk/client-mediaconvert 3.185.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/MediaConvert.js +114 -121
  3. package/dist-es/MediaConvertClient.js +22 -28
  4. package/dist-es/commands/AssociateCertificateCommand.js +21 -28
  5. package/dist-es/commands/CancelJobCommand.js +21 -28
  6. package/dist-es/commands/CreateJobCommand.js +21 -28
  7. package/dist-es/commands/CreateJobTemplateCommand.js +21 -28
  8. package/dist-es/commands/CreatePresetCommand.js +21 -28
  9. package/dist-es/commands/CreateQueueCommand.js +21 -28
  10. package/dist-es/commands/DeleteJobTemplateCommand.js +21 -28
  11. package/dist-es/commands/DeletePolicyCommand.js +21 -28
  12. package/dist-es/commands/DeletePresetCommand.js +21 -28
  13. package/dist-es/commands/DeleteQueueCommand.js +21 -28
  14. package/dist-es/commands/DescribeEndpointsCommand.js +21 -28
  15. package/dist-es/commands/DisassociateCertificateCommand.js +21 -28
  16. package/dist-es/commands/GetJobCommand.js +21 -28
  17. package/dist-es/commands/GetJobTemplateCommand.js +21 -28
  18. package/dist-es/commands/GetPolicyCommand.js +21 -28
  19. package/dist-es/commands/GetPresetCommand.js +21 -28
  20. package/dist-es/commands/GetQueueCommand.js +21 -28
  21. package/dist-es/commands/ListJobTemplatesCommand.js +21 -28
  22. package/dist-es/commands/ListJobsCommand.js +21 -28
  23. package/dist-es/commands/ListPresetsCommand.js +21 -28
  24. package/dist-es/commands/ListQueuesCommand.js +21 -28
  25. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  26. package/dist-es/commands/PutPolicyCommand.js +21 -28
  27. package/dist-es/commands/TagResourceCommand.js +21 -28
  28. package/dist-es/commands/UntagResourceCommand.js +21 -28
  29. package/dist-es/commands/UpdateJobTemplateCommand.js +21 -28
  30. package/dist-es/commands/UpdatePresetCommand.js +21 -28
  31. package/dist-es/commands/UpdateQueueCommand.js +21 -28
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/MediaConvertServiceException.js +5 -10
  34. package/dist-es/models/models_0.js +327 -110
  35. package/dist-es/models/models_1.js +360 -169
  36. package/dist-es/models/models_2.js +66 -23
  37. package/dist-es/pagination/DescribeEndpointsPaginator.js +25 -68
  38. package/dist-es/pagination/ListJobTemplatesPaginator.js +25 -68
  39. package/dist-es/pagination/ListJobsPaginator.js +25 -68
  40. package/dist-es/pagination/ListPresetsPaginator.js +25 -68
  41. package/dist-es/pagination/ListQueuesPaginator.js +25 -68
  42. package/dist-es/protocols/Aws_restJson1.js +4590 -4287
  43. package/dist-es/runtimeConfig.browser.js +26 -12
  44. package/dist-es/runtimeConfig.js +30 -12
  45. package/dist-es/runtimeConfig.native.js +8 -5
  46. package/dist-es/runtimeConfig.shared.js +8 -11
  47. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
2
  export var M2tsKlvMetadata;
4
3
  (function (M2tsKlvMetadata) {
@@ -1150,84 +1149,84 @@ export var QueueStatus;
1150
1149
  QueueStatus["ACTIVE"] = "ACTIVE";
1151
1150
  QueueStatus["PAUSED"] = "PAUSED";
1152
1151
  })(QueueStatus || (QueueStatus = {}));
1153
- var BadRequestException = (function (_super) {
1154
- __extends(BadRequestException, _super);
1155
- function BadRequestException(opts) {
1156
- var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
1157
- _this.name = "BadRequestException";
1158
- _this.$fault = "client";
1159
- Object.setPrototypeOf(_this, BadRequestException.prototype);
1160
- _this.Message = opts.Message;
1161
- return _this;
1152
+ export class BadRequestException extends __BaseException {
1153
+ constructor(opts) {
1154
+ super({
1155
+ name: "BadRequestException",
1156
+ $fault: "client",
1157
+ ...opts,
1158
+ });
1159
+ this.name = "BadRequestException";
1160
+ this.$fault = "client";
1161
+ Object.setPrototypeOf(this, BadRequestException.prototype);
1162
+ this.Message = opts.Message;
1162
1163
  }
1163
- return BadRequestException;
1164
- }(__BaseException));
1165
- export { BadRequestException };
1166
- var ConflictException = (function (_super) {
1167
- __extends(ConflictException, _super);
1168
- function ConflictException(opts) {
1169
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
1170
- _this.name = "ConflictException";
1171
- _this.$fault = "client";
1172
- Object.setPrototypeOf(_this, ConflictException.prototype);
1173
- _this.Message = opts.Message;
1174
- return _this;
1164
+ }
1165
+ export class ConflictException extends __BaseException {
1166
+ constructor(opts) {
1167
+ super({
1168
+ name: "ConflictException",
1169
+ $fault: "client",
1170
+ ...opts,
1171
+ });
1172
+ this.name = "ConflictException";
1173
+ this.$fault = "client";
1174
+ Object.setPrototypeOf(this, ConflictException.prototype);
1175
+ this.Message = opts.Message;
1175
1176
  }
1176
- return ConflictException;
1177
- }(__BaseException));
1178
- export { ConflictException };
1179
- var ForbiddenException = (function (_super) {
1180
- __extends(ForbiddenException, _super);
1181
- function ForbiddenException(opts) {
1182
- var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
1183
- _this.name = "ForbiddenException";
1184
- _this.$fault = "client";
1185
- Object.setPrototypeOf(_this, ForbiddenException.prototype);
1186
- _this.Message = opts.Message;
1187
- return _this;
1177
+ }
1178
+ export class ForbiddenException extends __BaseException {
1179
+ constructor(opts) {
1180
+ super({
1181
+ name: "ForbiddenException",
1182
+ $fault: "client",
1183
+ ...opts,
1184
+ });
1185
+ this.name = "ForbiddenException";
1186
+ this.$fault = "client";
1187
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
1188
+ this.Message = opts.Message;
1188
1189
  }
1189
- return ForbiddenException;
1190
- }(__BaseException));
1191
- export { ForbiddenException };
1192
- var InternalServerErrorException = (function (_super) {
1193
- __extends(InternalServerErrorException, _super);
1194
- function InternalServerErrorException(opts) {
1195
- var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
1196
- _this.name = "InternalServerErrorException";
1197
- _this.$fault = "server";
1198
- Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
1199
- _this.Message = opts.Message;
1200
- return _this;
1190
+ }
1191
+ export class InternalServerErrorException extends __BaseException {
1192
+ constructor(opts) {
1193
+ super({
1194
+ name: "InternalServerErrorException",
1195
+ $fault: "server",
1196
+ ...opts,
1197
+ });
1198
+ this.name = "InternalServerErrorException";
1199
+ this.$fault = "server";
1200
+ Object.setPrototypeOf(this, InternalServerErrorException.prototype);
1201
+ this.Message = opts.Message;
1201
1202
  }
1202
- return InternalServerErrorException;
1203
- }(__BaseException));
1204
- export { InternalServerErrorException };
1205
- var NotFoundException = (function (_super) {
1206
- __extends(NotFoundException, _super);
1207
- function NotFoundException(opts) {
1208
- var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
1209
- _this.name = "NotFoundException";
1210
- _this.$fault = "client";
1211
- Object.setPrototypeOf(_this, NotFoundException.prototype);
1212
- _this.Message = opts.Message;
1213
- return _this;
1203
+ }
1204
+ export class NotFoundException extends __BaseException {
1205
+ constructor(opts) {
1206
+ super({
1207
+ name: "NotFoundException",
1208
+ $fault: "client",
1209
+ ...opts,
1210
+ });
1211
+ this.name = "NotFoundException";
1212
+ this.$fault = "client";
1213
+ Object.setPrototypeOf(this, NotFoundException.prototype);
1214
+ this.Message = opts.Message;
1214
1215
  }
1215
- return NotFoundException;
1216
- }(__BaseException));
1217
- export { NotFoundException };
1218
- var TooManyRequestsException = (function (_super) {
1219
- __extends(TooManyRequestsException, _super);
1220
- function TooManyRequestsException(opts) {
1221
- var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
1222
- _this.name = "TooManyRequestsException";
1223
- _this.$fault = "client";
1224
- Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
1225
- _this.Message = opts.Message;
1226
- return _this;
1216
+ }
1217
+ export class TooManyRequestsException extends __BaseException {
1218
+ constructor(opts) {
1219
+ super({
1220
+ name: "TooManyRequestsException",
1221
+ $fault: "client",
1222
+ ...opts,
1223
+ });
1224
+ this.name = "TooManyRequestsException";
1225
+ this.$fault = "client";
1226
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
1227
+ this.Message = opts.Message;
1227
1228
  }
1228
- return TooManyRequestsException;
1229
- }(__BaseException));
1230
- export { TooManyRequestsException };
1229
+ }
1231
1230
  export var DescribeEndpointsMode;
1232
1231
  (function (DescribeEndpointsMode) {
1233
1232
  DescribeEndpointsMode["DEFAULT"] = "DEFAULT";
@@ -1249,99 +1248,291 @@ export var Order;
1249
1248
  Order["ASCENDING"] = "ASCENDING";
1250
1249
  Order["DESCENDING"] = "DESCENDING";
1251
1250
  })(Order || (Order = {}));
1252
- export var M2tsScte35EsamFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1253
- export var M2tsSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1254
- export var M3u8SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1255
- export var MovSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1256
- export var Mp4SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1257
- export var MpdSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1258
- export var MxfXavcProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1259
- export var MxfSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1260
- export var ContainerSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1261
- export var HlsSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1262
- export var OutputSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1263
- export var Av1QvbrSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1264
- export var Av1SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1265
- export var AvcIntraUhdSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1266
- export var AvcIntraSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1267
- export var FrameCaptureSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1268
- export var H264QvbrSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1269
- export var H264SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1270
- export var H265QvbrSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1271
- export var H265SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1272
- export var Mpeg2SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1273
- export var ProresSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1274
- export var Vc3SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1275
- export var Vp8SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1276
- export var Vp9SettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1277
- export var Xavc4kIntraCbgProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1278
- export var Xavc4kIntraVbrProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1279
- export var Xavc4kProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1280
- export var XavcHdIntraCbgProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1281
- export var XavcHdProfileSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1282
- export var XavcSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1283
- export var VideoCodecSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1284
- export var ColorCorrectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1285
- export var DeinterlacerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1286
- export var DolbyVisionLevel6MetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1287
- export var DolbyVisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1288
- export var Hdr10PlusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1289
- export var NoiseReducerFilterSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1290
- export var NoiseReducerSpatialFilterSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1291
- export var NoiseReducerTemporalFilterSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1292
- export var NoiseReducerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1293
- export var NexGuardFileMarkerSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1294
- export var PartnerWatermarkingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1295
- export var TimecodeBurninFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1296
- export var VideoPreprocessorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1297
- export var VideoDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1298
- export var OutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1299
- export var OutputGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1300
- export var TimecodeConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1301
- export var TimedMetadataInsertionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1302
- export var JobSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1303
- export var TimingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1304
- export var JobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1305
- export var JobTemplateSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1306
- export var JobTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1307
- export var PresetSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1308
- export var PresetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1309
- export var ReservationPlanFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1310
- export var QueueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1311
- export var AssociateCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1312
- export var AssociateCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1313
- export var CancelJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1314
- export var CancelJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1315
- export var CreateJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1316
- export var CreateJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1317
- export var CreateJobTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1318
- export var CreateJobTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1319
- export var CreatePresetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1320
- export var CreatePresetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1321
- export var ReservationPlanSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1322
- export var CreateQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1323
- export var CreateQueueResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1324
- export var DeleteJobTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1325
- export var DeleteJobTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1326
- export var DeletePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1327
- export var DeletePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1328
- export var DeletePresetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1329
- export var DeletePresetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1330
- export var DeleteQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1331
- export var DeleteQueueResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1332
- export var DescribeEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1333
- export var DescribeEndpointsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1334
- export var DisassociateCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1335
- export var DisassociateCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1336
- export var GetJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1337
- export var GetJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1338
- export var GetJobTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1339
- export var GetJobTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1340
- export var GetPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1341
- export var PolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1342
- export var GetPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1343
- export var GetPresetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1344
- export var GetPresetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1345
- export var GetQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1346
- export var GetQueueResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1347
- export var ListJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1251
+ export const M2tsScte35EsamFilterSensitiveLog = (obj) => ({
1252
+ ...obj,
1253
+ });
1254
+ export const M2tsSettingsFilterSensitiveLog = (obj) => ({
1255
+ ...obj,
1256
+ });
1257
+ export const M3u8SettingsFilterSensitiveLog = (obj) => ({
1258
+ ...obj,
1259
+ });
1260
+ export const MovSettingsFilterSensitiveLog = (obj) => ({
1261
+ ...obj,
1262
+ });
1263
+ export const Mp4SettingsFilterSensitiveLog = (obj) => ({
1264
+ ...obj,
1265
+ });
1266
+ export const MpdSettingsFilterSensitiveLog = (obj) => ({
1267
+ ...obj,
1268
+ });
1269
+ export const MxfXavcProfileSettingsFilterSensitiveLog = (obj) => ({
1270
+ ...obj,
1271
+ });
1272
+ export const MxfSettingsFilterSensitiveLog = (obj) => ({
1273
+ ...obj,
1274
+ });
1275
+ export const ContainerSettingsFilterSensitiveLog = (obj) => ({
1276
+ ...obj,
1277
+ });
1278
+ export const HlsSettingsFilterSensitiveLog = (obj) => ({
1279
+ ...obj,
1280
+ });
1281
+ export const OutputSettingsFilterSensitiveLog = (obj) => ({
1282
+ ...obj,
1283
+ });
1284
+ export const Av1QvbrSettingsFilterSensitiveLog = (obj) => ({
1285
+ ...obj,
1286
+ });
1287
+ export const Av1SettingsFilterSensitiveLog = (obj) => ({
1288
+ ...obj,
1289
+ });
1290
+ export const AvcIntraUhdSettingsFilterSensitiveLog = (obj) => ({
1291
+ ...obj,
1292
+ });
1293
+ export const AvcIntraSettingsFilterSensitiveLog = (obj) => ({
1294
+ ...obj,
1295
+ });
1296
+ export const FrameCaptureSettingsFilterSensitiveLog = (obj) => ({
1297
+ ...obj,
1298
+ });
1299
+ export const H264QvbrSettingsFilterSensitiveLog = (obj) => ({
1300
+ ...obj,
1301
+ });
1302
+ export const H264SettingsFilterSensitiveLog = (obj) => ({
1303
+ ...obj,
1304
+ });
1305
+ export const H265QvbrSettingsFilterSensitiveLog = (obj) => ({
1306
+ ...obj,
1307
+ });
1308
+ export const H265SettingsFilterSensitiveLog = (obj) => ({
1309
+ ...obj,
1310
+ });
1311
+ export const Mpeg2SettingsFilterSensitiveLog = (obj) => ({
1312
+ ...obj,
1313
+ });
1314
+ export const ProresSettingsFilterSensitiveLog = (obj) => ({
1315
+ ...obj,
1316
+ });
1317
+ export const Vc3SettingsFilterSensitiveLog = (obj) => ({
1318
+ ...obj,
1319
+ });
1320
+ export const Vp8SettingsFilterSensitiveLog = (obj) => ({
1321
+ ...obj,
1322
+ });
1323
+ export const Vp9SettingsFilterSensitiveLog = (obj) => ({
1324
+ ...obj,
1325
+ });
1326
+ export const Xavc4kIntraCbgProfileSettingsFilterSensitiveLog = (obj) => ({
1327
+ ...obj,
1328
+ });
1329
+ export const Xavc4kIntraVbrProfileSettingsFilterSensitiveLog = (obj) => ({
1330
+ ...obj,
1331
+ });
1332
+ export const Xavc4kProfileSettingsFilterSensitiveLog = (obj) => ({
1333
+ ...obj,
1334
+ });
1335
+ export const XavcHdIntraCbgProfileSettingsFilterSensitiveLog = (obj) => ({
1336
+ ...obj,
1337
+ });
1338
+ export const XavcHdProfileSettingsFilterSensitiveLog = (obj) => ({
1339
+ ...obj,
1340
+ });
1341
+ export const XavcSettingsFilterSensitiveLog = (obj) => ({
1342
+ ...obj,
1343
+ });
1344
+ export const VideoCodecSettingsFilterSensitiveLog = (obj) => ({
1345
+ ...obj,
1346
+ });
1347
+ export const ColorCorrectorFilterSensitiveLog = (obj) => ({
1348
+ ...obj,
1349
+ });
1350
+ export const DeinterlacerFilterSensitiveLog = (obj) => ({
1351
+ ...obj,
1352
+ });
1353
+ export const DolbyVisionLevel6MetadataFilterSensitiveLog = (obj) => ({
1354
+ ...obj,
1355
+ });
1356
+ export const DolbyVisionFilterSensitiveLog = (obj) => ({
1357
+ ...obj,
1358
+ });
1359
+ export const Hdr10PlusFilterSensitiveLog = (obj) => ({
1360
+ ...obj,
1361
+ });
1362
+ export const NoiseReducerFilterSettingsFilterSensitiveLog = (obj) => ({
1363
+ ...obj,
1364
+ });
1365
+ export const NoiseReducerSpatialFilterSettingsFilterSensitiveLog = (obj) => ({
1366
+ ...obj,
1367
+ });
1368
+ export const NoiseReducerTemporalFilterSettingsFilterSensitiveLog = (obj) => ({
1369
+ ...obj,
1370
+ });
1371
+ export const NoiseReducerFilterSensitiveLog = (obj) => ({
1372
+ ...obj,
1373
+ });
1374
+ export const NexGuardFileMarkerSettingsFilterSensitiveLog = (obj) => ({
1375
+ ...obj,
1376
+ });
1377
+ export const PartnerWatermarkingFilterSensitiveLog = (obj) => ({
1378
+ ...obj,
1379
+ });
1380
+ export const TimecodeBurninFilterSensitiveLog = (obj) => ({
1381
+ ...obj,
1382
+ });
1383
+ export const VideoPreprocessorFilterSensitiveLog = (obj) => ({
1384
+ ...obj,
1385
+ });
1386
+ export const VideoDescriptionFilterSensitiveLog = (obj) => ({
1387
+ ...obj,
1388
+ });
1389
+ export const OutputFilterSensitiveLog = (obj) => ({
1390
+ ...obj,
1391
+ });
1392
+ export const OutputGroupFilterSensitiveLog = (obj) => ({
1393
+ ...obj,
1394
+ });
1395
+ export const TimecodeConfigFilterSensitiveLog = (obj) => ({
1396
+ ...obj,
1397
+ });
1398
+ export const TimedMetadataInsertionFilterSensitiveLog = (obj) => ({
1399
+ ...obj,
1400
+ });
1401
+ export const JobSettingsFilterSensitiveLog = (obj) => ({
1402
+ ...obj,
1403
+ });
1404
+ export const TimingFilterSensitiveLog = (obj) => ({
1405
+ ...obj,
1406
+ });
1407
+ export const JobFilterSensitiveLog = (obj) => ({
1408
+ ...obj,
1409
+ });
1410
+ export const JobTemplateSettingsFilterSensitiveLog = (obj) => ({
1411
+ ...obj,
1412
+ });
1413
+ export const JobTemplateFilterSensitiveLog = (obj) => ({
1414
+ ...obj,
1415
+ });
1416
+ export const PresetSettingsFilterSensitiveLog = (obj) => ({
1417
+ ...obj,
1418
+ });
1419
+ export const PresetFilterSensitiveLog = (obj) => ({
1420
+ ...obj,
1421
+ });
1422
+ export const ReservationPlanFilterSensitiveLog = (obj) => ({
1423
+ ...obj,
1424
+ });
1425
+ export const QueueFilterSensitiveLog = (obj) => ({
1426
+ ...obj,
1427
+ });
1428
+ export const AssociateCertificateRequestFilterSensitiveLog = (obj) => ({
1429
+ ...obj,
1430
+ });
1431
+ export const AssociateCertificateResponseFilterSensitiveLog = (obj) => ({
1432
+ ...obj,
1433
+ });
1434
+ export const CancelJobRequestFilterSensitiveLog = (obj) => ({
1435
+ ...obj,
1436
+ });
1437
+ export const CancelJobResponseFilterSensitiveLog = (obj) => ({
1438
+ ...obj,
1439
+ });
1440
+ export const CreateJobRequestFilterSensitiveLog = (obj) => ({
1441
+ ...obj,
1442
+ });
1443
+ export const CreateJobResponseFilterSensitiveLog = (obj) => ({
1444
+ ...obj,
1445
+ });
1446
+ export const CreateJobTemplateRequestFilterSensitiveLog = (obj) => ({
1447
+ ...obj,
1448
+ });
1449
+ export const CreateJobTemplateResponseFilterSensitiveLog = (obj) => ({
1450
+ ...obj,
1451
+ });
1452
+ export const CreatePresetRequestFilterSensitiveLog = (obj) => ({
1453
+ ...obj,
1454
+ });
1455
+ export const CreatePresetResponseFilterSensitiveLog = (obj) => ({
1456
+ ...obj,
1457
+ });
1458
+ export const ReservationPlanSettingsFilterSensitiveLog = (obj) => ({
1459
+ ...obj,
1460
+ });
1461
+ export const CreateQueueRequestFilterSensitiveLog = (obj) => ({
1462
+ ...obj,
1463
+ });
1464
+ export const CreateQueueResponseFilterSensitiveLog = (obj) => ({
1465
+ ...obj,
1466
+ });
1467
+ export const DeleteJobTemplateRequestFilterSensitiveLog = (obj) => ({
1468
+ ...obj,
1469
+ });
1470
+ export const DeleteJobTemplateResponseFilterSensitiveLog = (obj) => ({
1471
+ ...obj,
1472
+ });
1473
+ export const DeletePolicyRequestFilterSensitiveLog = (obj) => ({
1474
+ ...obj,
1475
+ });
1476
+ export const DeletePolicyResponseFilterSensitiveLog = (obj) => ({
1477
+ ...obj,
1478
+ });
1479
+ export const DeletePresetRequestFilterSensitiveLog = (obj) => ({
1480
+ ...obj,
1481
+ });
1482
+ export const DeletePresetResponseFilterSensitiveLog = (obj) => ({
1483
+ ...obj,
1484
+ });
1485
+ export const DeleteQueueRequestFilterSensitiveLog = (obj) => ({
1486
+ ...obj,
1487
+ });
1488
+ export const DeleteQueueResponseFilterSensitiveLog = (obj) => ({
1489
+ ...obj,
1490
+ });
1491
+ export const DescribeEndpointsRequestFilterSensitiveLog = (obj) => ({
1492
+ ...obj,
1493
+ });
1494
+ export const DescribeEndpointsResponseFilterSensitiveLog = (obj) => ({
1495
+ ...obj,
1496
+ });
1497
+ export const DisassociateCertificateRequestFilterSensitiveLog = (obj) => ({
1498
+ ...obj,
1499
+ });
1500
+ export const DisassociateCertificateResponseFilterSensitiveLog = (obj) => ({
1501
+ ...obj,
1502
+ });
1503
+ export const GetJobRequestFilterSensitiveLog = (obj) => ({
1504
+ ...obj,
1505
+ });
1506
+ export const GetJobResponseFilterSensitiveLog = (obj) => ({
1507
+ ...obj,
1508
+ });
1509
+ export const GetJobTemplateRequestFilterSensitiveLog = (obj) => ({
1510
+ ...obj,
1511
+ });
1512
+ export const GetJobTemplateResponseFilterSensitiveLog = (obj) => ({
1513
+ ...obj,
1514
+ });
1515
+ export const GetPolicyRequestFilterSensitiveLog = (obj) => ({
1516
+ ...obj,
1517
+ });
1518
+ export const PolicyFilterSensitiveLog = (obj) => ({
1519
+ ...obj,
1520
+ });
1521
+ export const GetPolicyResponseFilterSensitiveLog = (obj) => ({
1522
+ ...obj,
1523
+ });
1524
+ export const GetPresetRequestFilterSensitiveLog = (obj) => ({
1525
+ ...obj,
1526
+ });
1527
+ export const GetPresetResponseFilterSensitiveLog = (obj) => ({
1528
+ ...obj,
1529
+ });
1530
+ export const GetQueueRequestFilterSensitiveLog = (obj) => ({
1531
+ ...obj,
1532
+ });
1533
+ export const GetQueueResponseFilterSensitiveLog = (obj) => ({
1534
+ ...obj,
1535
+ });
1536
+ export const ListJobsRequestFilterSensitiveLog = (obj) => ({
1537
+ ...obj,
1538
+ });
@@ -1,4 +1,3 @@
1
- import { __assign } from "tslib";
2
1
  export var PresetListBy;
3
2
  (function (PresetListBy) {
4
3
  PresetListBy["CREATION_DATE"] = "CREATION_DATE";
@@ -10,25 +9,69 @@ export var QueueListBy;
10
9
  QueueListBy["CREATION_DATE"] = "CREATION_DATE";
11
10
  QueueListBy["NAME"] = "NAME";
12
11
  })(QueueListBy || (QueueListBy = {}));
13
- export var ListJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
14
- export var ListJobTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
15
- export var ListJobTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
16
- export var ListPresetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
17
- export var ListPresetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
18
- export var ListQueuesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
19
- export var ListQueuesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
20
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
21
- export var ResourceTagsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
22
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
23
- export var PutPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
24
- export var PutPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
26
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
27
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
28
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
29
- export var UpdateJobTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
30
- export var UpdateJobTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
31
- export var UpdatePresetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
32
- export var UpdatePresetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
33
- export var UpdateQueueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
34
- export var UpdateQueueResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
12
+ export const ListJobsResponseFilterSensitiveLog = (obj) => ({
13
+ ...obj,
14
+ });
15
+ export const ListJobTemplatesRequestFilterSensitiveLog = (obj) => ({
16
+ ...obj,
17
+ });
18
+ export const ListJobTemplatesResponseFilterSensitiveLog = (obj) => ({
19
+ ...obj,
20
+ });
21
+ export const ListPresetsRequestFilterSensitiveLog = (obj) => ({
22
+ ...obj,
23
+ });
24
+ export const ListPresetsResponseFilterSensitiveLog = (obj) => ({
25
+ ...obj,
26
+ });
27
+ export const ListQueuesRequestFilterSensitiveLog = (obj) => ({
28
+ ...obj,
29
+ });
30
+ export const ListQueuesResponseFilterSensitiveLog = (obj) => ({
31
+ ...obj,
32
+ });
33
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
34
+ ...obj,
35
+ });
36
+ export const ResourceTagsFilterSensitiveLog = (obj) => ({
37
+ ...obj,
38
+ });
39
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
40
+ ...obj,
41
+ });
42
+ export const PutPolicyRequestFilterSensitiveLog = (obj) => ({
43
+ ...obj,
44
+ });
45
+ export const PutPolicyResponseFilterSensitiveLog = (obj) => ({
46
+ ...obj,
47
+ });
48
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
49
+ ...obj,
50
+ });
51
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
52
+ ...obj,
53
+ });
54
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
55
+ ...obj,
56
+ });
57
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
58
+ ...obj,
59
+ });
60
+ export const UpdateJobTemplateRequestFilterSensitiveLog = (obj) => ({
61
+ ...obj,
62
+ });
63
+ export const UpdateJobTemplateResponseFilterSensitiveLog = (obj) => ({
64
+ ...obj,
65
+ });
66
+ export const UpdatePresetRequestFilterSensitiveLog = (obj) => ({
67
+ ...obj,
68
+ });
69
+ export const UpdatePresetResponseFilterSensitiveLog = (obj) => ({
70
+ ...obj,
71
+ });
72
+ export const UpdateQueueRequestFilterSensitiveLog = (obj) => ({
73
+ ...obj,
74
+ });
75
+ export const UpdateQueueResponseFilterSensitiveLog = (obj) => ({
76
+ ...obj,
77
+ });