@aws-sdk/client-mediaconvert 3.95.0 → 3.100.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 (30) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/commands/ListJobTemplatesCommand.js +3 -3
  3. package/dist-cjs/commands/ListPresetsCommand.js +3 -3
  4. package/dist-cjs/commands/ListQueuesCommand.js +1 -2
  5. package/dist-cjs/models/models_0.js +48 -46
  6. package/dist-cjs/models/models_1.js +46 -47
  7. package/dist-cjs/models/models_2.js +42 -1
  8. package/dist-cjs/protocols/Aws_restJson1.js +156 -0
  9. package/dist-cjs/runtimeConfig.js +2 -0
  10. package/dist-es/commands/ListJobTemplatesCommand.js +1 -1
  11. package/dist-es/commands/ListPresetsCommand.js +1 -1
  12. package/dist-es/commands/ListQueuesCommand.js +1 -2
  13. package/dist-es/models/models_0.js +32 -38
  14. package/dist-es/models/models_1.js +38 -31
  15. package/dist-es/models/models_2.js +31 -0
  16. package/dist-es/protocols/Aws_restJson1.js +137 -1
  17. package/dist-es/runtimeConfig.js +2 -0
  18. package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListQueuesCommand.d.ts +1 -2
  21. package/dist-types/models/models_0.d.ts +128 -46
  22. package/dist-types/models/models_1.d.ts +52 -130
  23. package/dist-types/models/models_2.d.ts +122 -1
  24. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -2
  27. package/dist-types/ts3.4/models/models_0.d.ts +75 -37
  28. package/dist-types/ts3.4/models/models_1.d.ts +38 -76
  29. package/dist-types/ts3.4/models/models_2.d.ts +76 -1
  30. package/package.json +6 -6
@@ -2383,6 +2383,16 @@ const serializeAws_restJson1__listOf__stringPatternS3ASSETMAPXml = (input, conte
2383
2383
  return entry;
2384
2384
  });
2385
2385
  };
2386
+ const serializeAws_restJson1__listOfAllowedRenditionSize = (input, context) => {
2387
+ return input
2388
+ .filter((e) => e != null)
2389
+ .map((entry) => {
2390
+ if (entry === null) {
2391
+ return null;
2392
+ }
2393
+ return serializeAws_restJson1AllowedRenditionSize(entry, context);
2394
+ });
2395
+ };
2386
2396
  const serializeAws_restJson1__listOfAudioDescription = (input, context) => {
2387
2397
  return input
2388
2398
  .filter((e) => e != null)
@@ -2393,6 +2403,16 @@ const serializeAws_restJson1__listOfAudioDescription = (input, context) => {
2393
2403
  return serializeAws_restJson1AudioDescription(entry, context);
2394
2404
  });
2395
2405
  };
2406
+ const serializeAws_restJson1__listOfAutomatedAbrRule = (input, context) => {
2407
+ return input
2408
+ .filter((e) => e != null)
2409
+ .map((entry) => {
2410
+ if (entry === null) {
2411
+ return null;
2412
+ }
2413
+ return serializeAws_restJson1AutomatedAbrRule(entry, context);
2414
+ });
2415
+ };
2396
2416
  const serializeAws_restJson1__listOfCaptionDescription = (input, context) => {
2397
2417
  return input
2398
2418
  .filter((e) => e != null)
@@ -2433,6 +2453,16 @@ const serializeAws_restJson1__listOfDashAdditionalManifest = (input, context) =>
2433
2453
  return serializeAws_restJson1DashAdditionalManifest(entry, context);
2434
2454
  });
2435
2455
  };
2456
+ const serializeAws_restJson1__listOfForceIncludeRenditionSize = (input, context) => {
2457
+ return input
2458
+ .filter((e) => e != null)
2459
+ .map((entry) => {
2460
+ if (entry === null) {
2461
+ return null;
2462
+ }
2463
+ return serializeAws_restJson1ForceIncludeRenditionSize(entry, context);
2464
+ });
2465
+ };
2436
2466
  const serializeAws_restJson1__listOfHlsAdditionalManifest = (input, context) => {
2437
2467
  return input
2438
2468
  .filter((e) => e != null)
@@ -2666,6 +2696,13 @@ const serializeAws_restJson1AiffSettings = (input, context) => {
2666
2696
  ...(input.SampleRate !== undefined && input.SampleRate !== null && { sampleRate: input.SampleRate }),
2667
2697
  };
2668
2698
  };
2699
+ const serializeAws_restJson1AllowedRenditionSize = (input, context) => {
2700
+ return {
2701
+ ...(input.Height !== undefined && input.Height !== null && { height: input.Height }),
2702
+ ...(input.Required !== undefined && input.Required !== null && { required: input.Required }),
2703
+ ...(input.Width !== undefined && input.Width !== null && { width: input.Width }),
2704
+ };
2705
+ };
2669
2706
  const serializeAws_restJson1AncillarySourceSettings = (input, context) => {
2670
2707
  return {
2671
2708
  ...(input.Convert608To708 !== undefined &&
@@ -2795,11 +2832,34 @@ const serializeAws_restJson1AudioSelectorGroup = (input, context) => {
2795
2832
  }),
2796
2833
  };
2797
2834
  };
2835
+ const serializeAws_restJson1AutomatedAbrRule = (input, context) => {
2836
+ return {
2837
+ ...(input.AllowedRenditions !== undefined &&
2838
+ input.AllowedRenditions !== null && {
2839
+ allowedRenditions: serializeAws_restJson1__listOfAllowedRenditionSize(input.AllowedRenditions, context),
2840
+ }),
2841
+ ...(input.ForceIncludeRenditions !== undefined &&
2842
+ input.ForceIncludeRenditions !== null && {
2843
+ forceIncludeRenditions: serializeAws_restJson1__listOfForceIncludeRenditionSize(input.ForceIncludeRenditions, context),
2844
+ }),
2845
+ ...(input.MinBottomRenditionSize !== undefined &&
2846
+ input.MinBottomRenditionSize !== null && {
2847
+ minBottomRenditionSize: serializeAws_restJson1MinBottomRenditionSize(input.MinBottomRenditionSize, context),
2848
+ }),
2849
+ ...(input.MinTopRenditionSize !== undefined &&
2850
+ input.MinTopRenditionSize !== null && {
2851
+ minTopRenditionSize: serializeAws_restJson1MinTopRenditionSize(input.MinTopRenditionSize, context),
2852
+ }),
2853
+ ...(input.Type !== undefined && input.Type !== null && { type: input.Type }),
2854
+ };
2855
+ };
2798
2856
  const serializeAws_restJson1AutomatedAbrSettings = (input, context) => {
2799
2857
  return {
2800
2858
  ...(input.MaxAbrBitrate !== undefined && input.MaxAbrBitrate !== null && { maxAbrBitrate: input.MaxAbrBitrate }),
2801
2859
  ...(input.MaxRenditions !== undefined && input.MaxRenditions !== null && { maxRenditions: input.MaxRenditions }),
2802
2860
  ...(input.MinAbrBitrate !== undefined && input.MinAbrBitrate !== null && { minAbrBitrate: input.MinAbrBitrate }),
2861
+ ...(input.Rules !== undefined &&
2862
+ input.Rules !== null && { rules: serializeAws_restJson1__listOfAutomatedAbrRule(input.Rules, context) }),
2803
2863
  };
2804
2864
  };
2805
2865
  const serializeAws_restJson1AutomatedEncodingSettings = (input, context) => {
@@ -3534,6 +3594,12 @@ const serializeAws_restJson1FileSourceSettings = (input, context) => {
3534
3594
  input.TimeDeltaUnits !== null && { timeDeltaUnits: input.TimeDeltaUnits }),
3535
3595
  };
3536
3596
  };
3597
+ const serializeAws_restJson1ForceIncludeRenditionSize = (input, context) => {
3598
+ return {
3599
+ ...(input.Height !== undefined && input.Height !== null && { height: input.Height }),
3600
+ ...(input.Width !== undefined && input.Width !== null && { width: input.Width }),
3601
+ };
3602
+ };
3537
3603
  const serializeAws_restJson1FrameCaptureSettings = (input, context) => {
3538
3604
  return {
3539
3605
  ...(input.FramerateDenominator !== undefined &&
@@ -4302,6 +4368,18 @@ const serializeAws_restJson1M3u8Settings = (input, context) => {
4302
4368
  ...(input.VideoPid !== undefined && input.VideoPid !== null && { videoPid: input.VideoPid }),
4303
4369
  };
4304
4370
  };
4371
+ const serializeAws_restJson1MinBottomRenditionSize = (input, context) => {
4372
+ return {
4373
+ ...(input.Height !== undefined && input.Height !== null && { height: input.Height }),
4374
+ ...(input.Width !== undefined && input.Width !== null && { width: input.Width }),
4375
+ };
4376
+ };
4377
+ const serializeAws_restJson1MinTopRenditionSize = (input, context) => {
4378
+ return {
4379
+ ...(input.Height !== undefined && input.Height !== null && { height: input.Height }),
4380
+ ...(input.Width !== undefined && input.Width !== null && { width: input.Width }),
4381
+ };
4382
+ };
4305
4383
  const serializeAws_restJson1MotionImageInserter = (input, context) => {
4306
4384
  return {
4307
4385
  ...(input.Framerate !== undefined &&
@@ -5288,6 +5366,17 @@ const deserializeAws_restJson1__listOf__stringPatternS3ASSETMAPXml = (output, co
5288
5366
  });
5289
5367
  return retVal;
5290
5368
  };
5369
+ const deserializeAws_restJson1__listOfAllowedRenditionSize = (output, context) => {
5370
+ const retVal = (output || [])
5371
+ .filter((e) => e != null)
5372
+ .map((entry) => {
5373
+ if (entry === null) {
5374
+ return null;
5375
+ }
5376
+ return deserializeAws_restJson1AllowedRenditionSize(entry, context);
5377
+ });
5378
+ return retVal;
5379
+ };
5291
5380
  const deserializeAws_restJson1__listOfAudioDescription = (output, context) => {
5292
5381
  const retVal = (output || [])
5293
5382
  .filter((e) => e != null)
@@ -5299,6 +5388,17 @@ const deserializeAws_restJson1__listOfAudioDescription = (output, context) => {
5299
5388
  });
5300
5389
  return retVal;
5301
5390
  };
5391
+ const deserializeAws_restJson1__listOfAutomatedAbrRule = (output, context) => {
5392
+ const retVal = (output || [])
5393
+ .filter((e) => e != null)
5394
+ .map((entry) => {
5395
+ if (entry === null) {
5396
+ return null;
5397
+ }
5398
+ return deserializeAws_restJson1AutomatedAbrRule(entry, context);
5399
+ });
5400
+ return retVal;
5401
+ };
5302
5402
  const deserializeAws_restJson1__listOfCaptionDescription = (output, context) => {
5303
5403
  const retVal = (output || [])
5304
5404
  .filter((e) => e != null)
@@ -5354,6 +5454,17 @@ const deserializeAws_restJson1__listOfEndpoint = (output, context) => {
5354
5454
  });
5355
5455
  return retVal;
5356
5456
  };
5457
+ const deserializeAws_restJson1__listOfForceIncludeRenditionSize = (output, context) => {
5458
+ const retVal = (output || [])
5459
+ .filter((e) => e != null)
5460
+ .map((entry) => {
5461
+ if (entry === null) {
5462
+ return null;
5463
+ }
5464
+ return deserializeAws_restJson1ForceIncludeRenditionSize(entry, context);
5465
+ });
5466
+ return retVal;
5467
+ };
5357
5468
  const deserializeAws_restJson1__listOfHlsAdditionalManifest = (output, context) => {
5358
5469
  const retVal = (output || [])
5359
5470
  .filter((e) => e != null)
@@ -5668,6 +5779,13 @@ const deserializeAws_restJson1AiffSettings = (output, context) => {
5668
5779
  SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
5669
5780
  };
5670
5781
  };
5782
+ const deserializeAws_restJson1AllowedRenditionSize = (output, context) => {
5783
+ return {
5784
+ Height: (0, smithy_client_1.expectInt32)(output.height),
5785
+ Required: (0, smithy_client_1.expectString)(output.required),
5786
+ Width: (0, smithy_client_1.expectInt32)(output.width),
5787
+ };
5788
+ };
5671
5789
  const deserializeAws_restJson1AncillarySourceSettings = (output, context) => {
5672
5790
  return {
5673
5791
  Convert608To708: (0, smithy_client_1.expectString)(output.convert608To708),
@@ -5778,11 +5896,31 @@ const deserializeAws_restJson1AudioSelectorGroup = (output, context) => {
5778
5896
  : undefined,
5779
5897
  };
5780
5898
  };
5899
+ const deserializeAws_restJson1AutomatedAbrRule = (output, context) => {
5900
+ return {
5901
+ AllowedRenditions: output.allowedRenditions !== undefined && output.allowedRenditions !== null
5902
+ ? deserializeAws_restJson1__listOfAllowedRenditionSize(output.allowedRenditions, context)
5903
+ : undefined,
5904
+ ForceIncludeRenditions: output.forceIncludeRenditions !== undefined && output.forceIncludeRenditions !== null
5905
+ ? deserializeAws_restJson1__listOfForceIncludeRenditionSize(output.forceIncludeRenditions, context)
5906
+ : undefined,
5907
+ MinBottomRenditionSize: output.minBottomRenditionSize !== undefined && output.minBottomRenditionSize !== null
5908
+ ? deserializeAws_restJson1MinBottomRenditionSize(output.minBottomRenditionSize, context)
5909
+ : undefined,
5910
+ MinTopRenditionSize: output.minTopRenditionSize !== undefined && output.minTopRenditionSize !== null
5911
+ ? deserializeAws_restJson1MinTopRenditionSize(output.minTopRenditionSize, context)
5912
+ : undefined,
5913
+ Type: (0, smithy_client_1.expectString)(output.type),
5914
+ };
5915
+ };
5781
5916
  const deserializeAws_restJson1AutomatedAbrSettings = (output, context) => {
5782
5917
  return {
5783
5918
  MaxAbrBitrate: (0, smithy_client_1.expectInt32)(output.maxAbrBitrate),
5784
5919
  MaxRenditions: (0, smithy_client_1.expectInt32)(output.maxRenditions),
5785
5920
  MinAbrBitrate: (0, smithy_client_1.expectInt32)(output.minAbrBitrate),
5921
+ Rules: output.rules !== undefined && output.rules !== null
5922
+ ? deserializeAws_restJson1__listOfAutomatedAbrRule(output.rules, context)
5923
+ : undefined,
5786
5924
  };
5787
5925
  };
5788
5926
  const deserializeAws_restJson1AutomatedEncodingSettings = (output, context) => {
@@ -6351,6 +6489,12 @@ const deserializeAws_restJson1FileSourceSettings = (output, context) => {
6351
6489
  TimeDeltaUnits: (0, smithy_client_1.expectString)(output.timeDeltaUnits),
6352
6490
  };
6353
6491
  };
6492
+ const deserializeAws_restJson1ForceIncludeRenditionSize = (output, context) => {
6493
+ return {
6494
+ Height: (0, smithy_client_1.expectInt32)(output.height),
6495
+ Width: (0, smithy_client_1.expectInt32)(output.width),
6496
+ };
6497
+ };
6354
6498
  const deserializeAws_restJson1FrameCaptureSettings = (output, context) => {
6355
6499
  return {
6356
6500
  FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
@@ -7001,6 +7145,18 @@ const deserializeAws_restJson1M3u8Settings = (output, context) => {
7001
7145
  VideoPid: (0, smithy_client_1.expectInt32)(output.videoPid),
7002
7146
  };
7003
7147
  };
7148
+ const deserializeAws_restJson1MinBottomRenditionSize = (output, context) => {
7149
+ return {
7150
+ Height: (0, smithy_client_1.expectInt32)(output.height),
7151
+ Width: (0, smithy_client_1.expectInt32)(output.width),
7152
+ };
7153
+ };
7154
+ const deserializeAws_restJson1MinTopRenditionSize = (output, context) => {
7155
+ return {
7156
+ Height: (0, smithy_client_1.expectInt32)(output.height),
7157
+ Width: (0, smithy_client_1.expectInt32)(output.width),
7158
+ };
7159
+ };
7004
7160
  const deserializeAws_restJson1MotionImageInserter = (output, context) => {
7005
7161
  return {
7006
7162
  Framerate: output.framerate !== undefined && output.framerate !== null
@@ -17,8 +17,10 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
17
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
18
18
  const smithy_client_1 = require("@aws-sdk/smithy-client");
19
19
  const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
20
+ const smithy_client_2 = require("@aws-sdk/smithy-client");
20
21
  const getRuntimeConfig = (config) => {
21
22
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
23
+ (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
22
24
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
23
25
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
26
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_1";
4
+ import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_2";
5
5
  import { deserializeAws_restJson1ListJobTemplatesCommand, serializeAws_restJson1ListJobTemplatesCommand, } from "../protocols/Aws_restJson1";
6
6
  var ListJobTemplatesCommand = (function (_super) {
7
7
  __extends(ListJobTemplatesCommand, _super);
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListPresetsRequest, ListPresetsResponse } from "../models/models_1";
4
+ import { ListPresetsRequest, ListPresetsResponse } from "../models/models_2";
5
5
  import { deserializeAws_restJson1ListPresetsCommand, serializeAws_restJson1ListPresetsCommand, } from "../protocols/Aws_restJson1";
6
6
  var ListPresetsCommand = (function (_super) {
7
7
  __extends(ListPresetsCommand, _super);
@@ -1,8 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListQueuesRequest } from "../models/models_1";
5
- import { ListQueuesResponse } from "../models/models_2";
4
+ import { ListQueuesRequest, ListQueuesResponse } from "../models/models_2";
6
5
  import { deserializeAws_restJson1ListQueuesCommand, serializeAws_restJson1ListQueuesCommand, } from "../protocols/Aws_restJson1";
7
6
  var ListQueuesCommand = (function (_super) {
8
7
  __extends(ListQueuesCommand, _super);
@@ -1,4 +1,13 @@
1
1
  import { __assign } from "tslib";
2
+ export var RequiredFlag;
3
+ (function (RequiredFlag) {
4
+ RequiredFlag["DISABLED"] = "DISABLED";
5
+ RequiredFlag["ENABLED"] = "ENABLED";
6
+ })(RequiredFlag || (RequiredFlag = {}));
7
+ export var AllowedRenditionSize;
8
+ (function (AllowedRenditionSize) {
9
+ AllowedRenditionSize.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
10
+ })(AllowedRenditionSize || (AllowedRenditionSize = {}));
2
11
  export var AudioChannelTag;
3
12
  (function (AudioChannelTag) {
4
13
  AudioChannelTag["C"] = "C";
@@ -579,6 +588,29 @@ export var AudioDescription;
579
588
  (function (AudioDescription) {
580
589
  AudioDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
581
590
  })(AudioDescription || (AudioDescription = {}));
591
+ export var ForceIncludeRenditionSize;
592
+ (function (ForceIncludeRenditionSize) {
593
+ ForceIncludeRenditionSize.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
594
+ })(ForceIncludeRenditionSize || (ForceIncludeRenditionSize = {}));
595
+ export var MinBottomRenditionSize;
596
+ (function (MinBottomRenditionSize) {
597
+ MinBottomRenditionSize.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
598
+ })(MinBottomRenditionSize || (MinBottomRenditionSize = {}));
599
+ export var MinTopRenditionSize;
600
+ (function (MinTopRenditionSize) {
601
+ MinTopRenditionSize.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
602
+ })(MinTopRenditionSize || (MinTopRenditionSize = {}));
603
+ export var RuleType;
604
+ (function (RuleType) {
605
+ RuleType["ALLOWED_RENDITIONS"] = "ALLOWED_RENDITIONS";
606
+ RuleType["FORCE_INCLUDE_RENDITIONS"] = "FORCE_INCLUDE_RENDITIONS";
607
+ RuleType["MIN_BOTTOM_RENDITION_SIZE"] = "MIN_BOTTOM_RENDITION_SIZE";
608
+ RuleType["MIN_TOP_RENDITION_SIZE"] = "MIN_TOP_RENDITION_SIZE";
609
+ })(RuleType || (RuleType = {}));
610
+ export var AutomatedAbrRule;
611
+ (function (AutomatedAbrRule) {
612
+ AutomatedAbrRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
613
+ })(AutomatedAbrRule || (AutomatedAbrRule = {}));
582
614
  export var BurninSubtitleAlignment;
583
615
  (function (BurninSubtitleAlignment) {
584
616
  BurninSubtitleAlignment["AUTO"] = "AUTO";
@@ -1742,41 +1774,3 @@ export var M2tsKlvMetadata;
1742
1774
  M2tsKlvMetadata["NONE"] = "NONE";
1743
1775
  M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
1744
1776
  })(M2tsKlvMetadata || (M2tsKlvMetadata = {}));
1745
- export var M2tsNielsenId3;
1746
- (function (M2tsNielsenId3) {
1747
- M2tsNielsenId3["INSERT"] = "INSERT";
1748
- M2tsNielsenId3["NONE"] = "NONE";
1749
- })(M2tsNielsenId3 || (M2tsNielsenId3 = {}));
1750
- export var M2tsPcrControl;
1751
- (function (M2tsPcrControl) {
1752
- M2tsPcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
1753
- M2tsPcrControl["PCR_EVERY_PES_PACKET"] = "PCR_EVERY_PES_PACKET";
1754
- })(M2tsPcrControl || (M2tsPcrControl = {}));
1755
- export var M2tsRateMode;
1756
- (function (M2tsRateMode) {
1757
- M2tsRateMode["CBR"] = "CBR";
1758
- M2tsRateMode["VBR"] = "VBR";
1759
- })(M2tsRateMode || (M2tsRateMode = {}));
1760
- export var M2tsScte35Esam;
1761
- (function (M2tsScte35Esam) {
1762
- M2tsScte35Esam.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1763
- })(M2tsScte35Esam || (M2tsScte35Esam = {}));
1764
- export var M2tsScte35Source;
1765
- (function (M2tsScte35Source) {
1766
- M2tsScte35Source["NONE"] = "NONE";
1767
- M2tsScte35Source["PASSTHROUGH"] = "PASSTHROUGH";
1768
- })(M2tsScte35Source || (M2tsScte35Source = {}));
1769
- export var M2tsSegmentationMarkers;
1770
- (function (M2tsSegmentationMarkers) {
1771
- M2tsSegmentationMarkers["EBP"] = "EBP";
1772
- M2tsSegmentationMarkers["EBP_LEGACY"] = "EBP_LEGACY";
1773
- M2tsSegmentationMarkers["NONE"] = "NONE";
1774
- M2tsSegmentationMarkers["PSI_SEGSTART"] = "PSI_SEGSTART";
1775
- M2tsSegmentationMarkers["RAI_ADAPT"] = "RAI_ADAPT";
1776
- M2tsSegmentationMarkers["RAI_SEGSTART"] = "RAI_SEGSTART";
1777
- })(M2tsSegmentationMarkers || (M2tsSegmentationMarkers = {}));
1778
- export var M2tsSegmentationStyle;
1779
- (function (M2tsSegmentationStyle) {
1780
- M2tsSegmentationStyle["MAINTAIN_CADENCE"] = "MAINTAIN_CADENCE";
1781
- M2tsSegmentationStyle["RESET_CADENCE"] = "RESET_CADENCE";
1782
- })(M2tsSegmentationStyle || (M2tsSegmentationStyle = {}));
@@ -1,5 +1,43 @@
1
1
  import { __assign, __extends } from "tslib";
2
2
  import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
+ export var M2tsNielsenId3;
4
+ (function (M2tsNielsenId3) {
5
+ M2tsNielsenId3["INSERT"] = "INSERT";
6
+ M2tsNielsenId3["NONE"] = "NONE";
7
+ })(M2tsNielsenId3 || (M2tsNielsenId3 = {}));
8
+ export var M2tsPcrControl;
9
+ (function (M2tsPcrControl) {
10
+ M2tsPcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
11
+ M2tsPcrControl["PCR_EVERY_PES_PACKET"] = "PCR_EVERY_PES_PACKET";
12
+ })(M2tsPcrControl || (M2tsPcrControl = {}));
13
+ export var M2tsRateMode;
14
+ (function (M2tsRateMode) {
15
+ M2tsRateMode["CBR"] = "CBR";
16
+ M2tsRateMode["VBR"] = "VBR";
17
+ })(M2tsRateMode || (M2tsRateMode = {}));
18
+ export var M2tsScte35Esam;
19
+ (function (M2tsScte35Esam) {
20
+ M2tsScte35Esam.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
21
+ })(M2tsScte35Esam || (M2tsScte35Esam = {}));
22
+ export var M2tsScte35Source;
23
+ (function (M2tsScte35Source) {
24
+ M2tsScte35Source["NONE"] = "NONE";
25
+ M2tsScte35Source["PASSTHROUGH"] = "PASSTHROUGH";
26
+ })(M2tsScte35Source || (M2tsScte35Source = {}));
27
+ export var M2tsSegmentationMarkers;
28
+ (function (M2tsSegmentationMarkers) {
29
+ M2tsSegmentationMarkers["EBP"] = "EBP";
30
+ M2tsSegmentationMarkers["EBP_LEGACY"] = "EBP_LEGACY";
31
+ M2tsSegmentationMarkers["NONE"] = "NONE";
32
+ M2tsSegmentationMarkers["PSI_SEGSTART"] = "PSI_SEGSTART";
33
+ M2tsSegmentationMarkers["RAI_ADAPT"] = "RAI_ADAPT";
34
+ M2tsSegmentationMarkers["RAI_SEGSTART"] = "RAI_SEGSTART";
35
+ })(M2tsSegmentationMarkers || (M2tsSegmentationMarkers = {}));
36
+ export var M2tsSegmentationStyle;
37
+ (function (M2tsSegmentationStyle) {
38
+ M2tsSegmentationStyle["MAINTAIN_CADENCE"] = "MAINTAIN_CADENCE";
39
+ M2tsSegmentationStyle["RESET_CADENCE"] = "RESET_CADENCE";
40
+ })(M2tsSegmentationStyle || (M2tsSegmentationStyle = {}));
3
41
  export var M2tsSettings;
4
42
  (function (M2tsSettings) {
5
43
  M2tsSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1594,34 +1632,3 @@ export var ListJobsResponse;
1594
1632
  (function (ListJobsResponse) {
1595
1633
  ListJobsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1596
1634
  })(ListJobsResponse || (ListJobsResponse = {}));
1597
- export var ListJobTemplatesRequest;
1598
- (function (ListJobTemplatesRequest) {
1599
- ListJobTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1600
- })(ListJobTemplatesRequest || (ListJobTemplatesRequest = {}));
1601
- export var ListJobTemplatesResponse;
1602
- (function (ListJobTemplatesResponse) {
1603
- ListJobTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1604
- })(ListJobTemplatesResponse || (ListJobTemplatesResponse = {}));
1605
- export var PresetListBy;
1606
- (function (PresetListBy) {
1607
- PresetListBy["CREATION_DATE"] = "CREATION_DATE";
1608
- PresetListBy["NAME"] = "NAME";
1609
- PresetListBy["SYSTEM"] = "SYSTEM";
1610
- })(PresetListBy || (PresetListBy = {}));
1611
- export var ListPresetsRequest;
1612
- (function (ListPresetsRequest) {
1613
- ListPresetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1614
- })(ListPresetsRequest || (ListPresetsRequest = {}));
1615
- export var ListPresetsResponse;
1616
- (function (ListPresetsResponse) {
1617
- ListPresetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1618
- })(ListPresetsResponse || (ListPresetsResponse = {}));
1619
- export var QueueListBy;
1620
- (function (QueueListBy) {
1621
- QueueListBy["CREATION_DATE"] = "CREATION_DATE";
1622
- QueueListBy["NAME"] = "NAME";
1623
- })(QueueListBy || (QueueListBy = {}));
1624
- export var ListQueuesRequest;
1625
- (function (ListQueuesRequest) {
1626
- ListQueuesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1627
- })(ListQueuesRequest || (ListQueuesRequest = {}));
@@ -1,4 +1,35 @@
1
1
  import { __assign } from "tslib";
2
+ export var ListJobTemplatesRequest;
3
+ (function (ListJobTemplatesRequest) {
4
+ ListJobTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
+ })(ListJobTemplatesRequest || (ListJobTemplatesRequest = {}));
6
+ export var ListJobTemplatesResponse;
7
+ (function (ListJobTemplatesResponse) {
8
+ ListJobTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
+ })(ListJobTemplatesResponse || (ListJobTemplatesResponse = {}));
10
+ export var PresetListBy;
11
+ (function (PresetListBy) {
12
+ PresetListBy["CREATION_DATE"] = "CREATION_DATE";
13
+ PresetListBy["NAME"] = "NAME";
14
+ PresetListBy["SYSTEM"] = "SYSTEM";
15
+ })(PresetListBy || (PresetListBy = {}));
16
+ export var ListPresetsRequest;
17
+ (function (ListPresetsRequest) {
18
+ ListPresetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
19
+ })(ListPresetsRequest || (ListPresetsRequest = {}));
20
+ export var ListPresetsResponse;
21
+ (function (ListPresetsResponse) {
22
+ ListPresetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
23
+ })(ListPresetsResponse || (ListPresetsResponse = {}));
24
+ export var QueueListBy;
25
+ (function (QueueListBy) {
26
+ QueueListBy["CREATION_DATE"] = "CREATION_DATE";
27
+ QueueListBy["NAME"] = "NAME";
28
+ })(QueueListBy || (QueueListBy = {}));
29
+ export var ListQueuesRequest;
30
+ (function (ListQueuesRequest) {
31
+ ListQueuesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
32
+ })(ListQueuesRequest || (ListQueuesRequest = {}));
2
33
  export var ListQueuesResponse;
3
34
  (function (ListQueuesResponse) {
4
35
  ListQueuesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };