@aws-sdk/client-mediaconvert 3.295.0 → 3.297.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 (41) hide show
  1. package/dist-types/MediaConvert.d.ts +29 -0
  2. package/dist-types/MediaConvertClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateCertificateCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
  7. package/dist-types/commands/CreatePresetCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateQueueCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
  10. package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeletePresetCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteQueueCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeEndpointsCommand.d.ts +16 -0
  14. package/dist-types/commands/DisassociateCertificateCommand.d.ts +16 -0
  15. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  16. package/dist-types/commands/GetJobTemplateCommand.d.ts +16 -0
  17. package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
  18. package/dist-types/commands/GetPresetCommand.d.ts +16 -0
  19. package/dist-types/commands/GetQueueCommand.d.ts +16 -0
  20. package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListPresetsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListQueuesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdatePresetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateQueueCommand.d.ts +16 -0
  31. package/dist-types/models/MediaConvertServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +686 -0
  33. package/dist-types/models/models_1.d.ts +758 -0
  34. package/dist-types/models/models_2.d.ts +110 -0
  35. package/dist-types/pagination/DescribeEndpointsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListPresetsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListQueuesPaginator.d.ts +3 -0
  41. package/package.json +29 -29
@@ -1,8 +1,12 @@
1
+ /**
2
+ * @public
3
+ */
1
4
  export declare enum RequiredFlag {
2
5
  DISABLED = "DISABLED",
3
6
  ENABLED = "ENABLED"
4
7
  }
5
8
  /**
9
+ * @public
6
10
  * Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.
7
11
  */
8
12
  export interface AllowedRenditionSize {
@@ -19,6 +23,9 @@ export interface AllowedRenditionSize {
19
23
  */
20
24
  Width?: number;
21
25
  }
26
+ /**
27
+ * @public
28
+ */
22
29
  export declare enum AudioChannelTag {
23
30
  C = "C",
24
31
  CS = "CS",
@@ -37,6 +44,7 @@ export declare enum AudioChannelTag {
37
44
  VHR = "VHR"
38
45
  }
39
46
  /**
47
+ * @public
40
48
  * When you mimic a multi-channel audio layout with multiple mono-channel tracks, you can tag each channel layout manually. For example, you would tag the tracks that contain your left, right, and center audio with Left (L), Right (R), and Center (C), respectively. When you don't specify a value, MediaConvert labels your track as Center (C) by default. To use audio layout tagging, your output must be in a QuickTime (.mov) container; your audio codec must be AAC, WAV, or AIFF; and you must set up your audio track to have only one channel.
41
49
  */
42
50
  export interface AudioChannelTaggingSettings {
@@ -45,25 +53,38 @@ export interface AudioChannelTaggingSettings {
45
53
  */
46
54
  ChannelTag?: AudioChannelTag | string;
47
55
  }
56
+ /**
57
+ * @public
58
+ */
48
59
  export declare enum AudioNormalizationAlgorithm {
49
60
  ITU_BS_1770_1 = "ITU_BS_1770_1",
50
61
  ITU_BS_1770_2 = "ITU_BS_1770_2",
51
62
  ITU_BS_1770_3 = "ITU_BS_1770_3",
52
63
  ITU_BS_1770_4 = "ITU_BS_1770_4"
53
64
  }
65
+ /**
66
+ * @public
67
+ */
54
68
  export declare enum AudioNormalizationAlgorithmControl {
55
69
  CORRECT_AUDIO = "CORRECT_AUDIO",
56
70
  MEASURE_ONLY = "MEASURE_ONLY"
57
71
  }
72
+ /**
73
+ * @public
74
+ */
58
75
  export declare enum AudioNormalizationLoudnessLogging {
59
76
  DONT_LOG = "DONT_LOG",
60
77
  LOG = "LOG"
61
78
  }
79
+ /**
80
+ * @public
81
+ */
62
82
  export declare enum AudioNormalizationPeakCalculation {
63
83
  NONE = "NONE",
64
84
  TRUE_PEAK = "TRUE_PEAK"
65
85
  }
66
86
  /**
87
+ * @public
67
88
  * Advanced audio normalization settings. Ignore these settings unless you need to comply with a loudness standard.
68
89
  */
69
90
  export interface AudioNormalizationSettings {
@@ -96,19 +117,31 @@ export interface AudioNormalizationSettings {
96
117
  */
97
118
  TruePeakLimiterThreshold?: number;
98
119
  }
120
+ /**
121
+ * @public
122
+ */
99
123
  export declare enum AudioTypeControl {
100
124
  FOLLOW_INPUT = "FOLLOW_INPUT",
101
125
  USE_CONFIGURED = "USE_CONFIGURED"
102
126
  }
127
+ /**
128
+ * @public
129
+ */
103
130
  export declare enum AacAudioDescriptionBroadcasterMix {
104
131
  BROADCASTER_MIXED_AD = "BROADCASTER_MIXED_AD",
105
132
  NORMAL = "NORMAL"
106
133
  }
134
+ /**
135
+ * @public
136
+ */
107
137
  export declare enum AacCodecProfile {
108
138
  HEV1 = "HEV1",
109
139
  HEV2 = "HEV2",
110
140
  LC = "LC"
111
141
  }
142
+ /**
143
+ * @public
144
+ */
112
145
  export declare enum AacCodingMode {
113
146
  AD_RECEIVER_MIX = "AD_RECEIVER_MIX",
114
147
  CODING_MODE_1_0 = "CODING_MODE_1_0",
@@ -116,18 +149,30 @@ export declare enum AacCodingMode {
116
149
  CODING_MODE_2_0 = "CODING_MODE_2_0",
117
150
  CODING_MODE_5_1 = "CODING_MODE_5_1"
118
151
  }
152
+ /**
153
+ * @public
154
+ */
119
155
  export declare enum AacRateControlMode {
120
156
  CBR = "CBR",
121
157
  VBR = "VBR"
122
158
  }
159
+ /**
160
+ * @public
161
+ */
123
162
  export declare enum AacRawFormat {
124
163
  LATM_LOAS = "LATM_LOAS",
125
164
  NONE = "NONE"
126
165
  }
166
+ /**
167
+ * @public
168
+ */
127
169
  export declare enum AacSpecification {
128
170
  MPEG2 = "MPEG2",
129
171
  MPEG4 = "MPEG4"
130
172
  }
173
+ /**
174
+ * @public
175
+ */
131
176
  export declare enum AacVbrQuality {
132
177
  HIGH = "HIGH",
133
178
  LOW = "LOW",
@@ -135,6 +180,7 @@ export declare enum AacVbrQuality {
135
180
  MEDIUM_LOW = "MEDIUM_LOW"
136
181
  }
137
182
  /**
183
+ * @public
138
184
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AAC. The service accepts one of two mutually exclusive groups of AAC settings--VBR and CBR. To select one of these modes, set the value of Bitrate control mode (rateControlMode) to "VBR" or "CBR". In VBR mode, you control the audio quality with the setting VBR quality (vbrQuality). In CBR mode, you use the setting Bitrate (bitrate). Defaults and valid values depend on the rate control mode.
139
185
  */
140
186
  export interface AacSettings {
@@ -175,6 +221,9 @@ export interface AacSettings {
175
221
  */
176
222
  VbrQuality?: AacVbrQuality | string;
177
223
  }
224
+ /**
225
+ * @public
226
+ */
178
227
  export declare enum Ac3BitstreamMode {
179
228
  COMMENTARY = "COMMENTARY",
180
229
  COMPLETE_MAIN = "COMPLETE_MAIN",
@@ -185,12 +234,18 @@ export declare enum Ac3BitstreamMode {
185
234
  VISUALLY_IMPAIRED = "VISUALLY_IMPAIRED",
186
235
  VOICE_OVER = "VOICE_OVER"
187
236
  }
237
+ /**
238
+ * @public
239
+ */
188
240
  export declare enum Ac3CodingMode {
189
241
  CODING_MODE_1_0 = "CODING_MODE_1_0",
190
242
  CODING_MODE_1_1 = "CODING_MODE_1_1",
191
243
  CODING_MODE_2_0 = "CODING_MODE_2_0",
192
244
  CODING_MODE_3_2_LFE = "CODING_MODE_3_2_LFE"
193
245
  }
246
+ /**
247
+ * @public
248
+ */
194
249
  export declare enum Ac3DynamicRangeCompressionLine {
195
250
  FILM_LIGHT = "FILM_LIGHT",
196
251
  FILM_STANDARD = "FILM_STANDARD",
@@ -199,10 +254,16 @@ export declare enum Ac3DynamicRangeCompressionLine {
199
254
  NONE = "NONE",
200
255
  SPEECH = "SPEECH"
201
256
  }
257
+ /**
258
+ * @public
259
+ */
202
260
  export declare enum Ac3DynamicRangeCompressionProfile {
203
261
  FILM_STANDARD = "FILM_STANDARD",
204
262
  NONE = "NONE"
205
263
  }
264
+ /**
265
+ * @public
266
+ */
206
267
  export declare enum Ac3DynamicRangeCompressionRf {
207
268
  FILM_LIGHT = "FILM_LIGHT",
208
269
  FILM_STANDARD = "FILM_STANDARD",
@@ -211,15 +272,22 @@ export declare enum Ac3DynamicRangeCompressionRf {
211
272
  NONE = "NONE",
212
273
  SPEECH = "SPEECH"
213
274
  }
275
+ /**
276
+ * @public
277
+ */
214
278
  export declare enum Ac3LfeFilter {
215
279
  DISABLED = "DISABLED",
216
280
  ENABLED = "ENABLED"
217
281
  }
282
+ /**
283
+ * @public
284
+ */
218
285
  export declare enum Ac3MetadataControl {
219
286
  FOLLOW_INPUT = "FOLLOW_INPUT",
220
287
  USE_CONFIGURED = "USE_CONFIGURED"
221
288
  }
222
289
  /**
290
+ * @public
223
291
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AC3.
224
292
  */
225
293
  export interface Ac3Settings {
@@ -265,6 +333,7 @@ export interface Ac3Settings {
265
333
  SampleRate?: number;
266
334
  }
267
335
  /**
336
+ * @public
268
337
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AIFF.
269
338
  */
270
339
  export interface AiffSettings {
@@ -281,6 +350,9 @@ export interface AiffSettings {
281
350
  */
282
351
  SampleRate?: number;
283
352
  }
353
+ /**
354
+ * @public
355
+ */
284
356
  export declare enum AudioCodec {
285
357
  AAC = "AAC",
286
358
  AC3 = "AC3",
@@ -294,23 +366,38 @@ export declare enum AudioCodec {
294
366
  VORBIS = "VORBIS",
295
367
  WAV = "WAV"
296
368
  }
369
+ /**
370
+ * @public
371
+ */
297
372
  export declare enum Eac3AtmosBitstreamMode {
298
373
  COMPLETE_MAIN = "COMPLETE_MAIN"
299
374
  }
375
+ /**
376
+ * @public
377
+ */
300
378
  export declare enum Eac3AtmosCodingMode {
301
379
  CODING_MODE_5_1_4 = "CODING_MODE_5_1_4",
302
380
  CODING_MODE_7_1_4 = "CODING_MODE_7_1_4",
303
381
  CODING_MODE_9_1_6 = "CODING_MODE_9_1_6",
304
382
  CODING_MODE_AUTO = "CODING_MODE_AUTO"
305
383
  }
384
+ /**
385
+ * @public
386
+ */
306
387
  export declare enum Eac3AtmosDialogueIntelligence {
307
388
  DISABLED = "DISABLED",
308
389
  ENABLED = "ENABLED"
309
390
  }
391
+ /**
392
+ * @public
393
+ */
310
394
  export declare enum Eac3AtmosDownmixControl {
311
395
  INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
312
396
  SPECIFIED = "SPECIFIED"
313
397
  }
398
+ /**
399
+ * @public
400
+ */
314
401
  export declare enum Eac3AtmosDynamicRangeCompressionLine {
315
402
  FILM_LIGHT = "FILM_LIGHT",
316
403
  FILM_STANDARD = "FILM_STANDARD",
@@ -319,6 +406,9 @@ export declare enum Eac3AtmosDynamicRangeCompressionLine {
319
406
  NONE = "NONE",
320
407
  SPEECH = "SPEECH"
321
408
  }
409
+ /**
410
+ * @public
411
+ */
322
412
  export declare enum Eac3AtmosDynamicRangeCompressionRf {
323
413
  FILM_LIGHT = "FILM_LIGHT",
324
414
  FILM_STANDARD = "FILM_STANDARD",
@@ -327,10 +417,16 @@ export declare enum Eac3AtmosDynamicRangeCompressionRf {
327
417
  NONE = "NONE",
328
418
  SPEECH = "SPEECH"
329
419
  }
420
+ /**
421
+ * @public
422
+ */
330
423
  export declare enum Eac3AtmosDynamicRangeControl {
331
424
  INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
332
425
  SPECIFIED = "SPECIFIED"
333
426
  }
427
+ /**
428
+ * @public
429
+ */
334
430
  export declare enum Eac3AtmosMeteringMode {
335
431
  ITU_BS_1770_1 = "ITU_BS_1770_1",
336
432
  ITU_BS_1770_2 = "ITU_BS_1770_2",
@@ -338,18 +434,25 @@ export declare enum Eac3AtmosMeteringMode {
338
434
  ITU_BS_1770_4 = "ITU_BS_1770_4",
339
435
  LEQ_A = "LEQ_A"
340
436
  }
437
+ /**
438
+ * @public
439
+ */
341
440
  export declare enum Eac3AtmosStereoDownmix {
342
441
  DPL2 = "DPL2",
343
442
  NOT_INDICATED = "NOT_INDICATED",
344
443
  STEREO = "STEREO",
345
444
  SURROUND = "SURROUND"
346
445
  }
446
+ /**
447
+ * @public
448
+ */
347
449
  export declare enum Eac3AtmosSurroundExMode {
348
450
  DISABLED = "DISABLED",
349
451
  ENABLED = "ENABLED",
350
452
  NOT_INDICATED = "NOT_INDICATED"
351
453
  }
352
454
  /**
455
+ * @public
353
456
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3_ATMOS.
354
457
  */
355
458
  export interface Eac3AtmosSettings {
@@ -422,10 +525,16 @@ export interface Eac3AtmosSettings {
422
525
  */
423
526
  SurroundExMode?: Eac3AtmosSurroundExMode | string;
424
527
  }
528
+ /**
529
+ * @public
530
+ */
425
531
  export declare enum Eac3AttenuationControl {
426
532
  ATTENUATE_3_DB = "ATTENUATE_3_DB",
427
533
  NONE = "NONE"
428
534
  }
535
+ /**
536
+ * @public
537
+ */
429
538
  export declare enum Eac3BitstreamMode {
430
539
  COMMENTARY = "COMMENTARY",
431
540
  COMPLETE_MAIN = "COMPLETE_MAIN",
@@ -433,15 +542,24 @@ export declare enum Eac3BitstreamMode {
433
542
  HEARING_IMPAIRED = "HEARING_IMPAIRED",
434
543
  VISUALLY_IMPAIRED = "VISUALLY_IMPAIRED"
435
544
  }
545
+ /**
546
+ * @public
547
+ */
436
548
  export declare enum Eac3CodingMode {
437
549
  CODING_MODE_1_0 = "CODING_MODE_1_0",
438
550
  CODING_MODE_2_0 = "CODING_MODE_2_0",
439
551
  CODING_MODE_3_2 = "CODING_MODE_3_2"
440
552
  }
553
+ /**
554
+ * @public
555
+ */
441
556
  export declare enum Eac3DcFilter {
442
557
  DISABLED = "DISABLED",
443
558
  ENABLED = "ENABLED"
444
559
  }
560
+ /**
561
+ * @public
562
+ */
445
563
  export declare enum Eac3DynamicRangeCompressionLine {
446
564
  FILM_LIGHT = "FILM_LIGHT",
447
565
  FILM_STANDARD = "FILM_STANDARD",
@@ -450,6 +568,9 @@ export declare enum Eac3DynamicRangeCompressionLine {
450
568
  NONE = "NONE",
451
569
  SPEECH = "SPEECH"
452
570
  }
571
+ /**
572
+ * @public
573
+ */
453
574
  export declare enum Eac3DynamicRangeCompressionRf {
454
575
  FILM_LIGHT = "FILM_LIGHT",
455
576
  FILM_STANDARD = "FILM_STANDARD",
@@ -458,43 +579,68 @@ export declare enum Eac3DynamicRangeCompressionRf {
458
579
  NONE = "NONE",
459
580
  SPEECH = "SPEECH"
460
581
  }
582
+ /**
583
+ * @public
584
+ */
461
585
  export declare enum Eac3LfeControl {
462
586
  LFE = "LFE",
463
587
  NO_LFE = "NO_LFE"
464
588
  }
589
+ /**
590
+ * @public
591
+ */
465
592
  export declare enum Eac3LfeFilter {
466
593
  DISABLED = "DISABLED",
467
594
  ENABLED = "ENABLED"
468
595
  }
596
+ /**
597
+ * @public
598
+ */
469
599
  export declare enum Eac3MetadataControl {
470
600
  FOLLOW_INPUT = "FOLLOW_INPUT",
471
601
  USE_CONFIGURED = "USE_CONFIGURED"
472
602
  }
603
+ /**
604
+ * @public
605
+ */
473
606
  export declare enum Eac3PassthroughControl {
474
607
  NO_PASSTHROUGH = "NO_PASSTHROUGH",
475
608
  WHEN_POSSIBLE = "WHEN_POSSIBLE"
476
609
  }
610
+ /**
611
+ * @public
612
+ */
477
613
  export declare enum Eac3PhaseControl {
478
614
  NO_SHIFT = "NO_SHIFT",
479
615
  SHIFT_90_DEGREES = "SHIFT_90_DEGREES"
480
616
  }
617
+ /**
618
+ * @public
619
+ */
481
620
  export declare enum Eac3StereoDownmix {
482
621
  DPL2 = "DPL2",
483
622
  LO_RO = "LO_RO",
484
623
  LT_RT = "LT_RT",
485
624
  NOT_INDICATED = "NOT_INDICATED"
486
625
  }
626
+ /**
627
+ * @public
628
+ */
487
629
  export declare enum Eac3SurroundExMode {
488
630
  DISABLED = "DISABLED",
489
631
  ENABLED = "ENABLED",
490
632
  NOT_INDICATED = "NOT_INDICATED"
491
633
  }
634
+ /**
635
+ * @public
636
+ */
492
637
  export declare enum Eac3SurroundMode {
493
638
  DISABLED = "DISABLED",
494
639
  ENABLED = "ENABLED",
495
640
  NOT_INDICATED = "NOT_INDICATED"
496
641
  }
497
642
  /**
643
+ * @public
498
644
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3.
499
645
  */
500
646
  export interface Eac3Settings {
@@ -584,6 +730,7 @@ export interface Eac3Settings {
584
730
  SurroundMode?: Eac3SurroundMode | string;
585
731
  }
586
732
  /**
733
+ * @public
587
734
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value MP2.
588
735
  */
589
736
  export interface Mp2Settings {
@@ -600,11 +747,15 @@ export interface Mp2Settings {
600
747
  */
601
748
  SampleRate?: number;
602
749
  }
750
+ /**
751
+ * @public
752
+ */
603
753
  export declare enum Mp3RateControlMode {
604
754
  CBR = "CBR",
605
755
  VBR = "VBR"
606
756
  }
607
757
  /**
758
+ * @public
608
759
  * Required when you set Codec, under AudioDescriptions>CodecSettings, to the value MP3.
609
760
  */
610
761
  export interface Mp3Settings {
@@ -630,6 +781,7 @@ export interface Mp3Settings {
630
781
  VbrQuality?: number;
631
782
  }
632
783
  /**
784
+ * @public
633
785
  * Required when you set Codec, under AudioDescriptions>CodecSettings, to the value OPUS.
634
786
  */
635
787
  export interface OpusSettings {
@@ -647,6 +799,7 @@ export interface OpusSettings {
647
799
  SampleRate?: number;
648
800
  }
649
801
  /**
802
+ * @public
650
803
  * Required when you set Codec, under AudioDescriptions>CodecSettings, to the value Vorbis.
651
804
  */
652
805
  export interface VorbisSettings {
@@ -663,11 +816,15 @@ export interface VorbisSettings {
663
816
  */
664
817
  VbrQuality?: number;
665
818
  }
819
+ /**
820
+ * @public
821
+ */
666
822
  export declare enum WavFormat {
667
823
  RF64 = "RF64",
668
824
  RIFF = "RIFF"
669
825
  }
670
826
  /**
827
+ * @public
671
828
  * Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value WAV.
672
829
  */
673
830
  export interface WavSettings {
@@ -689,6 +846,7 @@ export interface WavSettings {
689
846
  SampleRate?: number;
690
847
  }
691
848
  /**
849
+ * @public
692
850
  * Settings related to audio encoding. The settings in this group vary depending on the value that you choose for your audio codec.
693
851
  */
694
852
  export interface AudioCodecSettings {
@@ -737,6 +895,9 @@ export interface AudioCodecSettings {
737
895
  */
738
896
  WavSettings?: WavSettings;
739
897
  }
898
+ /**
899
+ * @public
900
+ */
740
901
  export declare enum LanguageCode {
741
902
  AAR = "AAR",
742
903
  ABK = "ABK",
@@ -931,11 +1092,15 @@ export declare enum LanguageCode {
931
1092
  ZHO = "ZHO",
932
1093
  ZUL = "ZUL"
933
1094
  }
1095
+ /**
1096
+ * @public
1097
+ */
934
1098
  export declare enum AudioLanguageCodeControl {
935
1099
  FOLLOW_INPUT = "FOLLOW_INPUT",
936
1100
  USE_CONFIGURED = "USE_CONFIGURED"
937
1101
  }
938
1102
  /**
1103
+ * @public
939
1104
  * OutputChannel mapping settings.
940
1105
  */
941
1106
  export interface OutputChannelMapping {
@@ -949,6 +1114,7 @@ export interface OutputChannelMapping {
949
1114
  InputChannelsFineTune?: number[];
950
1115
  }
951
1116
  /**
1117
+ * @public
952
1118
  * Channel mapping (ChannelMapping) contains the group of fields that hold the remixing value for each channel, in dB. Specify remix values to indicate how much of the content from your input audio channel you want in your output audio channels. Each instance of the InputChannels or InputChannelsFineTune array specifies these values for one output channel. Use one instance of this array for each output channel. In the console, each array corresponds to a column in the graphical depiction of the mapping matrix. The rows of the graphical matrix correspond to input channels. Valid values are within the range from -60 (mute) through 6. A setting of 0 passes the input channel unchanged to the output channel (no attenuation or amplification). Use InputChannels or InputChannelsFineTune to specify your remix values. Don't use both.
953
1119
  */
954
1120
  export interface ChannelMapping {
@@ -958,6 +1124,7 @@ export interface ChannelMapping {
958
1124
  OutputChannels?: OutputChannelMapping[];
959
1125
  }
960
1126
  /**
1127
+ * @public
961
1128
  * Use Manual audio remixing (RemixSettings) to adjust audio levels for each audio channel in each output of your job. With audio remixing, you can output more or fewer audio channels than your input audio source provides.
962
1129
  */
963
1130
  export interface RemixSettings {
@@ -975,6 +1142,7 @@ export interface RemixSettings {
975
1142
  ChannelsOut?: number;
976
1143
  }
977
1144
  /**
1145
+ * @public
978
1146
  * Settings related to one audio tab on the MediaConvert console. In your job JSON, an instance of AudioDescription is equivalent to one audio tab in the console. Usually, one audio tab corresponds to one output audio track. Depending on how you set up your input audio selectors and whether you use audio selector groups, one audio tab can correspond to a group of output audio tracks.
979
1147
  */
980
1148
  export interface AudioDescription {
@@ -1024,6 +1192,7 @@ export interface AudioDescription {
1024
1192
  StreamName?: string;
1025
1193
  }
1026
1194
  /**
1195
+ * @public
1027
1196
  * Use Force include renditions to specify one or more resolutions to include your ABR stack. * (Recommended) To optimize automated ABR, specify as few resolutions as possible. * (Required) The number of resolutions that you specify must be equal to, or less than, the Max renditions setting. * If you specify a Min top rendition size rule, specify at least one resolution that is equal to, or greater than, Min top rendition size. * If you specify a Min bottom rendition size rule, only specify resolutions that are equal to, or greater than, Min bottom rendition size. * If you specify a Force include renditions rule, do not specify a separate rule for Allowed renditions. * Note: The ABR stack may include other resolutions that you do not specify here, depending on the Max renditions setting.
1028
1197
  */
1029
1198
  export interface ForceIncludeRenditionSize {
@@ -1037,6 +1206,7 @@ export interface ForceIncludeRenditionSize {
1037
1206
  Width?: number;
1038
1207
  }
1039
1208
  /**
1209
+ * @public
1040
1210
  * Use Min bottom rendition size to specify a minimum size for the lowest resolution in your ABR stack. * The lowest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 640x360 the lowest resolution in your ABR stack will be equal to or greater than to 640x360. * If you specify a Min top rendition size rule, the value that you specify for Min bottom rendition size must be less than, or equal to, Min top rendition size.
1041
1211
  */
1042
1212
  export interface MinBottomRenditionSize {
@@ -1050,6 +1220,7 @@ export interface MinBottomRenditionSize {
1050
1220
  Width?: number;
1051
1221
  }
1052
1222
  /**
1223
+ * @public
1053
1224
  * Use Min top rendition size to specify a minimum size for the highest resolution in your ABR stack. * The highest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 1280x720 the highest resolution in your ABR stack will be equal to or greater than 1280x720. * If you specify a value for Max resolution, the value that you specify for Min top rendition size must be less than, or equal to, Max resolution.
1054
1225
  */
1055
1226
  export interface MinTopRenditionSize {
@@ -1062,6 +1233,9 @@ export interface MinTopRenditionSize {
1062
1233
  */
1063
1234
  Width?: number;
1064
1235
  }
1236
+ /**
1237
+ * @public
1238
+ */
1065
1239
  export declare enum RuleType {
1066
1240
  ALLOWED_RENDITIONS = "ALLOWED_RENDITIONS",
1067
1241
  FORCE_INCLUDE_RENDITIONS = "FORCE_INCLUDE_RENDITIONS",
@@ -1069,6 +1243,7 @@ export declare enum RuleType {
1069
1243
  MIN_TOP_RENDITION_SIZE = "MIN_TOP_RENDITION_SIZE"
1070
1244
  }
1071
1245
  /**
1246
+ * @public
1072
1247
  * Specify one or more Automated ABR rule types. Note: Force include and Allowed renditions are mutually exclusive.
1073
1248
  */
1074
1249
  export interface AutomatedAbrRule {
@@ -1093,21 +1268,33 @@ export interface AutomatedAbrRule {
1093
1268
  */
1094
1269
  Type?: RuleType | string;
1095
1270
  }
1271
+ /**
1272
+ * @public
1273
+ */
1096
1274
  export declare enum BurninSubtitleAlignment {
1097
1275
  AUTO = "AUTO",
1098
1276
  CENTERED = "CENTERED",
1099
1277
  LEFT = "LEFT"
1100
1278
  }
1279
+ /**
1280
+ * @public
1281
+ */
1101
1282
  export declare enum BurninSubtitleApplyFontColor {
1102
1283
  ALL_TEXT = "ALL_TEXT",
1103
1284
  WHITE_TEXT_ONLY = "WHITE_TEXT_ONLY"
1104
1285
  }
1286
+ /**
1287
+ * @public
1288
+ */
1105
1289
  export declare enum BurninSubtitleBackgroundColor {
1106
1290
  AUTO = "AUTO",
1107
1291
  BLACK = "BLACK",
1108
1292
  NONE = "NONE",
1109
1293
  WHITE = "WHITE"
1110
1294
  }
1295
+ /**
1296
+ * @public
1297
+ */
1111
1298
  export declare enum BurninSubtitleFallbackFont {
1112
1299
  BEST_MATCH = "BEST_MATCH",
1113
1300
  MONOSPACED_SANSSERIF = "MONOSPACED_SANSSERIF",
@@ -1115,6 +1302,9 @@ export declare enum BurninSubtitleFallbackFont {
1115
1302
  PROPORTIONAL_SANSSERIF = "PROPORTIONAL_SANSSERIF",
1116
1303
  PROPORTIONAL_SERIF = "PROPORTIONAL_SERIF"
1117
1304
  }
1305
+ /**
1306
+ * @public
1307
+ */
1118
1308
  export declare enum BurninSubtitleFontColor {
1119
1309
  AUTO = "AUTO",
1120
1310
  BLACK = "BLACK",
@@ -1125,11 +1315,17 @@ export declare enum BurninSubtitleFontColor {
1125
1315
  WHITE = "WHITE",
1126
1316
  YELLOW = "YELLOW"
1127
1317
  }
1318
+ /**
1319
+ * @public
1320
+ */
1128
1321
  export declare enum FontScript {
1129
1322
  AUTOMATIC = "AUTOMATIC",
1130
1323
  HANS = "HANS",
1131
1324
  HANT = "HANT"
1132
1325
  }
1326
+ /**
1327
+ * @public
1328
+ */
1133
1329
  export declare enum BurninSubtitleOutlineColor {
1134
1330
  AUTO = "AUTO",
1135
1331
  BLACK = "BLACK",
@@ -1139,22 +1335,32 @@ export declare enum BurninSubtitleOutlineColor {
1139
1335
  WHITE = "WHITE",
1140
1336
  YELLOW = "YELLOW"
1141
1337
  }
1338
+ /**
1339
+ * @public
1340
+ */
1142
1341
  export declare enum BurninSubtitleShadowColor {
1143
1342
  AUTO = "AUTO",
1144
1343
  BLACK = "BLACK",
1145
1344
  NONE = "NONE",
1146
1345
  WHITE = "WHITE"
1147
1346
  }
1347
+ /**
1348
+ * @public
1349
+ */
1148
1350
  export declare enum BurnInSubtitleStylePassthrough {
1149
1351
  DISABLED = "DISABLED",
1150
1352
  ENABLED = "ENABLED"
1151
1353
  }
1354
+ /**
1355
+ * @public
1356
+ */
1152
1357
  export declare enum BurninSubtitleTeletextSpacing {
1153
1358
  AUTO = "AUTO",
1154
1359
  FIXED_GRID = "FIXED_GRID",
1155
1360
  PROPORTIONAL = "PROPORTIONAL"
1156
1361
  }
1157
1362
  /**
1363
+ * @public
1158
1364
  * Burn-in is a captions delivery method, rather than a captions format. Burn-in writes the captions directly on your video frames, replacing pixels of video content with the captions. Set up burn-in captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/burn-in-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to BURN_IN.
1159
1365
  */
1160
1366
  export interface BurninDestinationSettings {
@@ -1243,6 +1449,9 @@ export interface BurninDestinationSettings {
1243
1449
  */
1244
1450
  YPosition?: number;
1245
1451
  }
1452
+ /**
1453
+ * @public
1454
+ */
1246
1455
  export declare enum CaptionDestinationType {
1247
1456
  BURN_IN = "BURN_IN",
1248
1457
  DVB_SUB = "DVB_SUB",
@@ -1257,26 +1466,41 @@ export declare enum CaptionDestinationType {
1257
1466
  TTML = "TTML",
1258
1467
  WEBVTT = "WEBVTT"
1259
1468
  }
1469
+ /**
1470
+ * @public
1471
+ */
1260
1472
  export declare enum DvbSubtitleAlignment {
1261
1473
  AUTO = "AUTO",
1262
1474
  CENTERED = "CENTERED",
1263
1475
  LEFT = "LEFT"
1264
1476
  }
1477
+ /**
1478
+ * @public
1479
+ */
1265
1480
  export declare enum DvbSubtitleApplyFontColor {
1266
1481
  ALL_TEXT = "ALL_TEXT",
1267
1482
  WHITE_TEXT_ONLY = "WHITE_TEXT_ONLY"
1268
1483
  }
1484
+ /**
1485
+ * @public
1486
+ */
1269
1487
  export declare enum DvbSubtitleBackgroundColor {
1270
1488
  AUTO = "AUTO",
1271
1489
  BLACK = "BLACK",
1272
1490
  NONE = "NONE",
1273
1491
  WHITE = "WHITE"
1274
1492
  }
1493
+ /**
1494
+ * @public
1495
+ */
1275
1496
  export declare enum DvbddsHandling {
1276
1497
  NONE = "NONE",
1277
1498
  NO_DISPLAY_WINDOW = "NO_DISPLAY_WINDOW",
1278
1499
  SPECIFIED = "SPECIFIED"
1279
1500
  }
1501
+ /**
1502
+ * @public
1503
+ */
1280
1504
  export declare enum DvbSubSubtitleFallbackFont {
1281
1505
  BEST_MATCH = "BEST_MATCH",
1282
1506
  MONOSPACED_SANSSERIF = "MONOSPACED_SANSSERIF",
@@ -1284,6 +1508,9 @@ export declare enum DvbSubSubtitleFallbackFont {
1284
1508
  PROPORTIONAL_SANSSERIF = "PROPORTIONAL_SANSSERIF",
1285
1509
  PROPORTIONAL_SERIF = "PROPORTIONAL_SERIF"
1286
1510
  }
1511
+ /**
1512
+ * @public
1513
+ */
1287
1514
  export declare enum DvbSubtitleFontColor {
1288
1515
  AUTO = "AUTO",
1289
1516
  BLACK = "BLACK",
@@ -1294,6 +1521,9 @@ export declare enum DvbSubtitleFontColor {
1294
1521
  WHITE = "WHITE",
1295
1522
  YELLOW = "YELLOW"
1296
1523
  }
1524
+ /**
1525
+ * @public
1526
+ */
1297
1527
  export declare enum DvbSubtitleOutlineColor {
1298
1528
  AUTO = "AUTO",
1299
1529
  BLACK = "BLACK",
@@ -1303,26 +1533,39 @@ export declare enum DvbSubtitleOutlineColor {
1303
1533
  WHITE = "WHITE",
1304
1534
  YELLOW = "YELLOW"
1305
1535
  }
1536
+ /**
1537
+ * @public
1538
+ */
1306
1539
  export declare enum DvbSubtitleShadowColor {
1307
1540
  AUTO = "AUTO",
1308
1541
  BLACK = "BLACK",
1309
1542
  NONE = "NONE",
1310
1543
  WHITE = "WHITE"
1311
1544
  }
1545
+ /**
1546
+ * @public
1547
+ */
1312
1548
  export declare enum DvbSubtitleStylePassthrough {
1313
1549
  DISABLED = "DISABLED",
1314
1550
  ENABLED = "ENABLED"
1315
1551
  }
1552
+ /**
1553
+ * @public
1554
+ */
1316
1555
  export declare enum DvbSubtitlingType {
1317
1556
  HEARING_IMPAIRED = "HEARING_IMPAIRED",
1318
1557
  STANDARD = "STANDARD"
1319
1558
  }
1559
+ /**
1560
+ * @public
1561
+ */
1320
1562
  export declare enum DvbSubtitleTeletextSpacing {
1321
1563
  AUTO = "AUTO",
1322
1564
  FIXED_GRID = "FIXED_GRID",
1323
1565
  PROPORTIONAL = "PROPORTIONAL"
1324
1566
  }
1325
1567
  /**
1568
+ * @public
1326
1569
  * Settings related to DVB-Sub captions. Set up DVB-Sub captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/dvb-sub-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to DVB_SUB.
1327
1570
  */
1328
1571
  export interface DvbSubDestinationSettings {
@@ -1438,6 +1681,7 @@ export interface DvbSubDestinationSettings {
1438
1681
  YPosition?: number;
1439
1682
  }
1440
1683
  /**
1684
+ * @public
1441
1685
  * Settings related to CEA/EIA-608 and CEA/EIA-708 (also called embedded or ancillary) captions. Set up embedded captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/embedded-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to EMBEDDED, EMBEDDED_PLUS_SCTE20, or SCTE20_PLUS_EMBEDDED.
1442
1686
  */
1443
1687
  export interface EmbeddedDestinationSettings {
@@ -1450,15 +1694,22 @@ export interface EmbeddedDestinationSettings {
1450
1694
  */
1451
1695
  Destination708ServiceNumber?: number;
1452
1696
  }
1697
+ /**
1698
+ * @public
1699
+ */
1453
1700
  export declare enum ImscAccessibilitySubs {
1454
1701
  DISABLED = "DISABLED",
1455
1702
  ENABLED = "ENABLED"
1456
1703
  }
1704
+ /**
1705
+ * @public
1706
+ */
1457
1707
  export declare enum ImscStylePassthrough {
1458
1708
  DISABLED = "DISABLED",
1459
1709
  ENABLED = "ENABLED"
1460
1710
  }
1461
1711
  /**
1712
+ * @public
1462
1713
  * Settings related to IMSC captions. IMSC is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to IMSC.
1463
1714
  */
1464
1715
  export interface ImscDestinationSettings {
@@ -1471,6 +1722,9 @@ export interface ImscDestinationSettings {
1471
1722
  */
1472
1723
  StylePassthrough?: ImscStylePassthrough | string;
1473
1724
  }
1725
+ /**
1726
+ * @public
1727
+ */
1474
1728
  export declare enum SccDestinationFramerate {
1475
1729
  FRAMERATE_23_97 = "FRAMERATE_23_97",
1476
1730
  FRAMERATE_24 = "FRAMERATE_24",
@@ -1479,6 +1733,7 @@ export declare enum SccDestinationFramerate {
1479
1733
  FRAMERATE_29_97_NON_DROPFRAME = "FRAMERATE_29_97_NON_DROPFRAME"
1480
1734
  }
1481
1735
  /**
1736
+ * @public
1482
1737
  * Settings related to SCC captions. SCC is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/scc-srt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to SCC.
1483
1738
  */
1484
1739
  export interface SccDestinationSettings {
@@ -1487,11 +1742,15 @@ export interface SccDestinationSettings {
1487
1742
  */
1488
1743
  Framerate?: SccDestinationFramerate | string;
1489
1744
  }
1745
+ /**
1746
+ * @public
1747
+ */
1490
1748
  export declare enum SrtStylePassthrough {
1491
1749
  DISABLED = "DISABLED",
1492
1750
  ENABLED = "ENABLED"
1493
1751
  }
1494
1752
  /**
1753
+ * @public
1495
1754
  * Settings related to SRT captions. SRT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to SRT.
1496
1755
  */
1497
1756
  export interface SrtDestinationSettings {
@@ -1500,6 +1759,9 @@ export interface SrtDestinationSettings {
1500
1759
  */
1501
1760
  StylePassthrough?: SrtStylePassthrough | string;
1502
1761
  }
1762
+ /**
1763
+ * @public
1764
+ */
1503
1765
  export declare enum TeletextPageType {
1504
1766
  PAGE_TYPE_ADDL_INFO = "PAGE_TYPE_ADDL_INFO",
1505
1767
  PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE = "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE",
@@ -1508,6 +1770,7 @@ export declare enum TeletextPageType {
1508
1770
  PAGE_TYPE_SUBTITLE = "PAGE_TYPE_SUBTITLE"
1509
1771
  }
1510
1772
  /**
1773
+ * @public
1511
1774
  * Settings related to teletext captions. Set up teletext captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/teletext-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to TELETEXT.
1512
1775
  */
1513
1776
  export interface TeletextDestinationSettings {
@@ -1520,11 +1783,15 @@ export interface TeletextDestinationSettings {
1520
1783
  */
1521
1784
  PageTypes?: (TeletextPageType | string)[];
1522
1785
  }
1786
+ /**
1787
+ * @public
1788
+ */
1523
1789
  export declare enum TtmlStylePassthrough {
1524
1790
  DISABLED = "DISABLED",
1525
1791
  ENABLED = "ENABLED"
1526
1792
  }
1527
1793
  /**
1794
+ * @public
1528
1795
  * Settings related to TTML captions. TTML is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to TTML.
1529
1796
  */
1530
1797
  export interface TtmlDestinationSettings {
@@ -1533,16 +1800,23 @@ export interface TtmlDestinationSettings {
1533
1800
  */
1534
1801
  StylePassthrough?: TtmlStylePassthrough | string;
1535
1802
  }
1803
+ /**
1804
+ * @public
1805
+ */
1536
1806
  export declare enum WebvttAccessibilitySubs {
1537
1807
  DISABLED = "DISABLED",
1538
1808
  ENABLED = "ENABLED"
1539
1809
  }
1810
+ /**
1811
+ * @public
1812
+ */
1540
1813
  export declare enum WebvttStylePassthrough {
1541
1814
  DISABLED = "DISABLED",
1542
1815
  ENABLED = "ENABLED",
1543
1816
  STRICT = "STRICT"
1544
1817
  }
1545
1818
  /**
1819
+ * @public
1546
1820
  * Settings related to WebVTT captions. WebVTT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to WebVTT.
1547
1821
  */
1548
1822
  export interface WebvttDestinationSettings {
@@ -1556,6 +1830,7 @@ export interface WebvttDestinationSettings {
1556
1830
  StylePassthrough?: WebvttStylePassthrough | string;
1557
1831
  }
1558
1832
  /**
1833
+ * @public
1559
1834
  * Settings related to one captions tab on the MediaConvert console. In your job JSON, an instance of captions DestinationSettings is equivalent to one captions tab in the console. Usually, one captions tab corresponds to one output captions track. Depending on your output captions format, one tab might correspond to a set of output captions tracks. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/including-captions.html.
1560
1835
  */
1561
1836
  export interface CaptionDestinationSettings {
@@ -1601,6 +1876,7 @@ export interface CaptionDestinationSettings {
1601
1876
  WebvttDestinationSettings?: WebvttDestinationSettings;
1602
1877
  }
1603
1878
  /**
1879
+ * @public
1604
1880
  * This object holds groups of settings related to captions for one output. For each output that has captions, include one instance of CaptionDescriptions.
1605
1881
  */
1606
1882
  export interface CaptionDescription {
@@ -1626,6 +1902,7 @@ export interface CaptionDescription {
1626
1902
  LanguageDescription?: string;
1627
1903
  }
1628
1904
  /**
1905
+ * @public
1629
1906
  * Caption Description for preset
1630
1907
  */
1631
1908
  export interface CaptionDescriptionPreset {
@@ -1647,6 +1924,7 @@ export interface CaptionDescriptionPreset {
1647
1924
  LanguageDescription?: string;
1648
1925
  }
1649
1926
  /**
1927
+ * @public
1650
1928
  * Specify the details for each pair of HLS and DASH additional manifests that you want the service to generate for this CMAF output group. Each pair of manifests can reference a different subset of outputs in the group.
1651
1929
  */
1652
1930
  export interface CmafAdditionalManifest {
@@ -1660,6 +1938,7 @@ export interface CmafAdditionalManifest {
1660
1938
  SelectedOutputs?: string[];
1661
1939
  }
1662
1940
  /**
1941
+ * @public
1663
1942
  * Specify the details for each additional DASH manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
1664
1943
  */
1665
1944
  export interface DashAdditionalManifest {
@@ -1673,6 +1952,7 @@ export interface DashAdditionalManifest {
1673
1952
  SelectedOutputs?: string[];
1674
1953
  }
1675
1954
  /**
1955
+ * @public
1676
1956
  * Describes an account-specific API endpoint.
1677
1957
  */
1678
1958
  export interface Endpoint {
@@ -1682,6 +1962,7 @@ export interface Endpoint {
1682
1962
  Url?: string;
1683
1963
  }
1684
1964
  /**
1965
+ * @public
1685
1966
  * Specify the details for each additional HLS manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
1686
1967
  */
1687
1968
  export interface HlsAdditionalManifest {
@@ -1694,11 +1975,15 @@ export interface HlsAdditionalManifest {
1694
1975
  */
1695
1976
  SelectedOutputs?: string[];
1696
1977
  }
1978
+ /**
1979
+ * @public
1980
+ */
1697
1981
  export declare enum HlsAdMarkers {
1698
1982
  ELEMENTAL = "ELEMENTAL",
1699
1983
  ELEMENTAL_SCTE35 = "ELEMENTAL_SCTE35"
1700
1984
  }
1701
1985
  /**
1986
+ * @public
1702
1987
  * Caption Language Mapping
1703
1988
  */
1704
1989
  export interface HlsCaptionLanguageMapping {
@@ -1720,6 +2005,7 @@ export interface HlsCaptionLanguageMapping {
1720
2005
  LanguageDescription?: string;
1721
2006
  }
1722
2007
  /**
2008
+ * @public
1723
2009
  * Optional. Configuration for a destination queue to which the job can hop once a customer-defined minimum wait time has passed.
1724
2010
  */
1725
2011
  export interface HopDestination {
@@ -1737,6 +2023,7 @@ export interface HopDestination {
1737
2023
  WaitMinutes?: number;
1738
2024
  }
1739
2025
  /**
2026
+ * @public
1740
2027
  * To insert ID3 tags in your output, specify two values. Use ID3 tag (Id3) to specify the base 64 encoded string and use Timecode (TimeCode) to specify the time when the tag should be inserted. To insert multiple ID3 tags in your output, create multiple instances of ID3 insertion (Id3Insertion).
1741
2028
  */
1742
2029
  export interface Id3Insertion {
@@ -1750,6 +2037,7 @@ export interface Id3Insertion {
1750
2037
  Timecode?: string;
1751
2038
  }
1752
2039
  /**
2040
+ * @public
1753
2041
  * Use audio selector groups to combine multiple sidecar audio inputs so that you can assign them to a single output audio tab (AudioDescription). Note that, if you're working with embedded audio, it's simpler to assign multiple input tracks into a single audio selector rather than use an audio selector group.
1754
2042
  */
1755
2043
  export interface AudioSelectorGroup {
@@ -1758,17 +2046,24 @@ export interface AudioSelectorGroup {
1758
2046
  */
1759
2047
  AudioSelectorNames?: string[];
1760
2048
  }
2049
+ /**
2050
+ * @public
2051
+ */
1761
2052
  export declare enum AudioDurationCorrection {
1762
2053
  AUTO = "AUTO",
1763
2054
  DISABLED = "DISABLED",
1764
2055
  FRAME = "FRAME",
1765
2056
  TRACK = "TRACK"
1766
2057
  }
2058
+ /**
2059
+ * @public
2060
+ */
1767
2061
  export declare enum AudioDefaultSelection {
1768
2062
  DEFAULT = "DEFAULT",
1769
2063
  NOT_DEFAULT = "NOT_DEFAULT"
1770
2064
  }
1771
2065
  /**
2066
+ * @public
1772
2067
  * Settings specific to audio sources in an HLS alternate rendition group. Specify the properties (renditionGroupId, renditionName or renditionLanguageCode) to identify the unique audio track among the alternative rendition groups present in the HLS manifest. If no unique track is found, or multiple tracks match the properties provided, the job fails. If no properties in hlsRenditionGroupSettings are specified, the default audio track within the video segment is chosen. If there is no audio within video segment, the alternative audio with DEFAULT=YES is chosen instead.
1773
2068
  */
1774
2069
  export interface HlsRenditionGroupSettings {
@@ -1785,6 +2080,9 @@ export interface HlsRenditionGroupSettings {
1785
2080
  */
1786
2081
  RenditionName?: string;
1787
2082
  }
2083
+ /**
2084
+ * @public
2085
+ */
1788
2086
  export declare enum AudioSelectorType {
1789
2087
  HLS_RENDITION_GROUP = "HLS_RENDITION_GROUP",
1790
2088
  LANGUAGE_CODE = "LANGUAGE_CODE",
@@ -1792,6 +2090,7 @@ export declare enum AudioSelectorType {
1792
2090
  TRACK = "TRACK"
1793
2091
  }
1794
2092
  /**
2093
+ * @public
1795
2094
  * Use Audio selectors (AudioSelectors) to specify a track or set of tracks from the input that you will use in your outputs. You can use multiple Audio selectors per input.
1796
2095
  */
1797
2096
  export interface AudioSelector {
@@ -1844,15 +2143,22 @@ export interface AudioSelector {
1844
2143
  */
1845
2144
  Tracks?: number[];
1846
2145
  }
2146
+ /**
2147
+ * @public
2148
+ */
1847
2149
  export declare enum AncillaryConvert608To708 {
1848
2150
  DISABLED = "DISABLED",
1849
2151
  UPCONVERT = "UPCONVERT"
1850
2152
  }
2153
+ /**
2154
+ * @public
2155
+ */
1851
2156
  export declare enum AncillaryTerminateCaptions {
1852
2157
  DISABLED = "DISABLED",
1853
2158
  END_OF_INPUT = "END_OF_INPUT"
1854
2159
  }
1855
2160
  /**
2161
+ * @public
1856
2162
  * Settings for ancillary captions source.
1857
2163
  */
1858
2164
  export interface AncillarySourceSettings {
@@ -1870,6 +2176,7 @@ export interface AncillarySourceSettings {
1870
2176
  TerminateCaptions?: AncillaryTerminateCaptions | string;
1871
2177
  }
1872
2178
  /**
2179
+ * @public
1873
2180
  * DVB Sub Source Settings
1874
2181
  */
1875
2182
  export interface DvbSubSourceSettings {
@@ -1878,15 +2185,22 @@ export interface DvbSubSourceSettings {
1878
2185
  */
1879
2186
  Pid?: number;
1880
2187
  }
2188
+ /**
2189
+ * @public
2190
+ */
1881
2191
  export declare enum EmbeddedConvert608To708 {
1882
2192
  DISABLED = "DISABLED",
1883
2193
  UPCONVERT = "UPCONVERT"
1884
2194
  }
2195
+ /**
2196
+ * @public
2197
+ */
1885
2198
  export declare enum EmbeddedTerminateCaptions {
1886
2199
  DISABLED = "DISABLED",
1887
2200
  END_OF_INPUT = "END_OF_INPUT"
1888
2201
  }
1889
2202
  /**
2203
+ * @public
1890
2204
  * Settings for embedded captions Source
1891
2205
  */
1892
2206
  export interface EmbeddedSourceSettings {
@@ -1907,11 +2221,15 @@ export interface EmbeddedSourceSettings {
1907
2221
  */
1908
2222
  TerminateCaptions?: EmbeddedTerminateCaptions | string;
1909
2223
  }
2224
+ /**
2225
+ * @public
2226
+ */
1910
2227
  export declare enum FileSourceConvert608To708 {
1911
2228
  DISABLED = "DISABLED",
1912
2229
  UPCONVERT = "UPCONVERT"
1913
2230
  }
1914
2231
  /**
2232
+ * @public
1915
2233
  * Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. When you work directly in your JSON job specification, use the settings framerateNumerator and framerateDenominator. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.
1916
2234
  */
1917
2235
  export interface CaptionSourceFramerate {
@@ -1924,11 +2242,15 @@ export interface CaptionSourceFramerate {
1924
2242
  */
1925
2243
  FramerateNumerator?: number;
1926
2244
  }
2245
+ /**
2246
+ * @public
2247
+ */
1927
2248
  export declare enum FileSourceTimeDeltaUnits {
1928
2249
  MILLISECONDS = "MILLISECONDS",
1929
2250
  SECONDS = "SECONDS"
1930
2251
  }
1931
2252
  /**
2253
+ * @public
1932
2254
  * If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.
1933
2255
  */
1934
2256
  export interface FileSourceSettings {
@@ -1953,6 +2275,9 @@ export interface FileSourceSettings {
1953
2275
  */
1954
2276
  TimeDeltaUnits?: FileSourceTimeDeltaUnits | string;
1955
2277
  }
2278
+ /**
2279
+ * @public
2280
+ */
1956
2281
  export declare enum CaptionSourceType {
1957
2282
  ANCILLARY = "ANCILLARY",
1958
2283
  DVB_SUB = "DVB_SUB",
@@ -1970,6 +2295,7 @@ export declare enum CaptionSourceType {
1970
2295
  WEBVTT = "WEBVTT"
1971
2296
  }
1972
2297
  /**
2298
+ * @public
1973
2299
  * Settings specific to Teletext caption sources, including Page number.
1974
2300
  */
1975
2301
  export interface TeletextSourceSettings {
@@ -1979,6 +2305,7 @@ export interface TeletextSourceSettings {
1979
2305
  PageNumber?: string;
1980
2306
  }
1981
2307
  /**
2308
+ * @public
1982
2309
  * Settings specific to caption sources that are specified by track number. Currently, this is only IMSC captions in an IMF package. If your caption source is IMSC 1.1 in a separate xml file, use FileSourceSettings instead of TrackSourceSettings.
1983
2310
  */
1984
2311
  export interface TrackSourceSettings {
@@ -1988,6 +2315,7 @@ export interface TrackSourceSettings {
1988
2315
  TrackNumber?: number;
1989
2316
  }
1990
2317
  /**
2318
+ * @public
1991
2319
  * Settings specific to WebVTT sources in HLS alternative rendition group. Specify the properties (renditionGroupId, renditionName or renditionLanguageCode) to identify the unique subtitle track among the alternative rendition groups present in the HLS manifest. If no unique track is found, or multiple tracks match the specified properties, the job fails. If there is only one subtitle track in the rendition group, the settings can be left empty and the default subtitle track will be chosen. If your caption source is a sidecar file, use FileSourceSettings instead of WebvttHlsSourceSettings.
1992
2320
  */
1993
2321
  export interface WebvttHlsSourceSettings {
@@ -2005,6 +2333,7 @@ export interface WebvttHlsSourceSettings {
2005
2333
  RenditionName?: string;
2006
2334
  }
2007
2335
  /**
2336
+ * @public
2008
2337
  * If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.
2009
2338
  */
2010
2339
  export interface CaptionSourceSettings {
@@ -2042,6 +2371,7 @@ export interface CaptionSourceSettings {
2042
2371
  WebvttHlsSourceSettings?: WebvttHlsSourceSettings;
2043
2372
  }
2044
2373
  /**
2374
+ * @public
2045
2375
  * Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 20 captions selectors per input.
2046
2376
  */
2047
2377
  export interface CaptionSelector {
@@ -2059,6 +2389,7 @@ export interface CaptionSelector {
2059
2389
  SourceSettings?: CaptionSourceSettings;
2060
2390
  }
2061
2391
  /**
2392
+ * @public
2062
2393
  * Use Rectangle to identify a specific area of the video frame.
2063
2394
  */
2064
2395
  export interface Rectangle {
@@ -2079,16 +2410,23 @@ export interface Rectangle {
2079
2410
  */
2080
2411
  Y?: number;
2081
2412
  }
2413
+ /**
2414
+ * @public
2415
+ */
2082
2416
  export declare enum InputDeblockFilter {
2083
2417
  DISABLED = "DISABLED",
2084
2418
  ENABLED = "ENABLED"
2085
2419
  }
2420
+ /**
2421
+ * @public
2422
+ */
2086
2423
  export declare enum DecryptionMode {
2087
2424
  AES_CBC = "AES_CBC",
2088
2425
  AES_CTR = "AES_CTR",
2089
2426
  AES_GCM = "AES_GCM"
2090
2427
  }
2091
2428
  /**
2429
+ * @public
2092
2430
  * Settings for decrypting any input files that you encrypt before you upload them to Amazon S3. MediaConvert can decrypt files only when you use AWS Key Management Service (KMS) to encrypt the data key that you use to encrypt your content.
2093
2431
  */
2094
2432
  export interface InputDecryptionSettings {
@@ -2109,16 +2447,23 @@ export interface InputDecryptionSettings {
2109
2447
  */
2110
2448
  KmsKeyRegion?: string;
2111
2449
  }
2450
+ /**
2451
+ * @public
2452
+ */
2112
2453
  export declare enum InputDenoiseFilter {
2113
2454
  DISABLED = "DISABLED",
2114
2455
  ENABLED = "ENABLED"
2115
2456
  }
2457
+ /**
2458
+ * @public
2459
+ */
2116
2460
  export declare enum InputFilterEnable {
2117
2461
  AUTO = "AUTO",
2118
2462
  DISABLE = "DISABLE",
2119
2463
  FORCE = "FORCE"
2120
2464
  }
2121
2465
  /**
2466
+ * @public
2122
2467
  * These settings apply to a specific graphic overlay. You can include multiple overlays in your job.
2123
2468
  */
2124
2469
  export interface InsertableImage {
@@ -2168,6 +2513,7 @@ export interface InsertableImage {
2168
2513
  Width?: number;
2169
2514
  }
2170
2515
  /**
2516
+ * @public
2171
2517
  * Use the image inserter feature to include a graphic overlay on your video. Enable or disable this feature for each input or output individually. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/graphic-overlay.html. This setting is disabled by default.
2172
2518
  */
2173
2519
  export interface ImageInserter {
@@ -2181,6 +2527,7 @@ export interface ImageInserter {
2181
2527
  SdrReferenceWhiteLevel?: number;
2182
2528
  }
2183
2529
  /**
2530
+ * @public
2184
2531
  * To transcode only portions of your input, include one input clip for each part of your input that you want in your output. All input clips that you specify will be included in every output of the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/assembling-multiple-inputs-and-input-clips.html.
2185
2532
  */
2186
2533
  export interface InputClipping {
@@ -2193,20 +2540,30 @@ export interface InputClipping {
2193
2540
  */
2194
2541
  StartTimecode?: string;
2195
2542
  }
2543
+ /**
2544
+ * @public
2545
+ */
2196
2546
  export declare enum InputScanType {
2197
2547
  AUTO = "AUTO",
2198
2548
  PSF = "PSF"
2199
2549
  }
2550
+ /**
2551
+ * @public
2552
+ */
2200
2553
  export declare enum InputPsiControl {
2201
2554
  IGNORE_PSI = "IGNORE_PSI",
2202
2555
  USE_PSI = "USE_PSI"
2203
2556
  }
2557
+ /**
2558
+ * @public
2559
+ */
2204
2560
  export declare enum InputTimecodeSource {
2205
2561
  EMBEDDED = "EMBEDDED",
2206
2562
  SPECIFIEDSTART = "SPECIFIEDSTART",
2207
2563
  ZEROBASED = "ZEROBASED"
2208
2564
  }
2209
2565
  /**
2566
+ * @public
2210
2567
  * When you include Video generator, MediaConvert creates a video input with black frames. Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs. You can specify Video generator, or you can specify an Input file, but you cannot specify both. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
2211
2568
  */
2212
2569
  export interface InputVideoGenerator {
@@ -2215,10 +2572,16 @@ export interface InputVideoGenerator {
2215
2572
  */
2216
2573
  Duration?: number;
2217
2574
  }
2575
+ /**
2576
+ * @public
2577
+ */
2218
2578
  export declare enum AlphaBehavior {
2219
2579
  DISCARD = "DISCARD",
2220
2580
  REMAP_TO_LUMA = "REMAP_TO_LUMA"
2221
2581
  }
2582
+ /**
2583
+ * @public
2584
+ */
2222
2585
  export declare enum ColorSpace {
2223
2586
  FOLLOW = "FOLLOW",
2224
2587
  HDR10 = "HDR10",
@@ -2229,15 +2592,22 @@ export declare enum ColorSpace {
2229
2592
  REC_601 = "REC_601",
2230
2593
  REC_709 = "REC_709"
2231
2594
  }
2595
+ /**
2596
+ * @public
2597
+ */
2232
2598
  export declare enum ColorSpaceUsage {
2233
2599
  FALLBACK = "FALLBACK",
2234
2600
  FORCE = "FORCE"
2235
2601
  }
2602
+ /**
2603
+ * @public
2604
+ */
2236
2605
  export declare enum EmbeddedTimecodeOverride {
2237
2606
  NONE = "NONE",
2238
2607
  USE_MDPM = "USE_MDPM"
2239
2608
  }
2240
2609
  /**
2610
+ * @public
2241
2611
  * Use these settings to specify static color calibration metadata, as defined by SMPTE ST 2086. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator.
2242
2612
  */
2243
2613
  export interface Hdr10Metadata {
@@ -2290,10 +2660,16 @@ export interface Hdr10Metadata {
2290
2660
  */
2291
2661
  WhitePointY?: number;
2292
2662
  }
2663
+ /**
2664
+ * @public
2665
+ */
2293
2666
  export declare enum PadVideo {
2294
2667
  BLACK = "BLACK",
2295
2668
  DISABLED = "DISABLED"
2296
2669
  }
2670
+ /**
2671
+ * @public
2672
+ */
2297
2673
  export declare enum InputRotate {
2298
2674
  AUTO = "AUTO",
2299
2675
  DEGREES_180 = "DEGREES_180",
@@ -2301,12 +2677,16 @@ export declare enum InputRotate {
2301
2677
  DEGREES_90 = "DEGREES_90",
2302
2678
  DEGREE_0 = "DEGREE_0"
2303
2679
  }
2680
+ /**
2681
+ * @public
2682
+ */
2304
2683
  export declare enum InputSampleRange {
2305
2684
  FOLLOW = "FOLLOW",
2306
2685
  FULL_RANGE = "FULL_RANGE",
2307
2686
  LIMITED_RANGE = "LIMITED_RANGE"
2308
2687
  }
2309
2688
  /**
2689
+ * @public
2310
2690
  * Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
2311
2691
  */
2312
2692
  export interface VideoSelector {
@@ -2357,6 +2737,7 @@ export interface VideoSelector {
2357
2737
  SampleRange?: InputSampleRange | string;
2358
2738
  }
2359
2739
  /**
2740
+ * @public
2360
2741
  * Use inputs to define the source files used in your transcoding job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/specify-input-settings.html. You can use multiple video inputs to do input stitching. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/assembling-multiple-inputs-and-input-clips.html
2361
2742
  */
2362
2743
  export interface Input {
@@ -2450,6 +2831,7 @@ export interface Input {
2450
2831
  VideoSelector?: VideoSelector;
2451
2832
  }
2452
2833
  /**
2834
+ * @public
2453
2835
  * Specified video input in a template.
2454
2836
  */
2455
2837
  export interface InputTemplate {
@@ -2526,12 +2908,16 @@ export interface InputTemplate {
2526
2908
  */
2527
2909
  VideoSelector?: VideoSelector;
2528
2910
  }
2911
+ /**
2912
+ * @public
2913
+ */
2529
2914
  export declare enum AccelerationMode {
2530
2915
  DISABLED = "DISABLED",
2531
2916
  ENABLED = "ENABLED",
2532
2917
  PREFERRED = "PREFERRED"
2533
2918
  }
2534
2919
  /**
2920
+ * @public
2535
2921
  * Accelerated transcoding can significantly speed up jobs with long, visually complex content.
2536
2922
  */
2537
2923
  export interface AccelerationSettings {
@@ -2540,24 +2926,34 @@ export interface AccelerationSettings {
2540
2926
  */
2541
2927
  Mode: AccelerationMode | string | undefined;
2542
2928
  }
2929
+ /**
2930
+ * @public
2931
+ */
2543
2932
  export declare enum AccelerationStatus {
2544
2933
  ACCELERATED = "ACCELERATED",
2545
2934
  IN_PROGRESS = "IN_PROGRESS",
2546
2935
  NOT_ACCELERATED = "NOT_ACCELERATED",
2547
2936
  NOT_APPLICABLE = "NOT_APPLICABLE"
2548
2937
  }
2938
+ /**
2939
+ * @public
2940
+ */
2549
2941
  export declare enum BillingTagsSource {
2550
2942
  JOB = "JOB",
2551
2943
  JOB_TEMPLATE = "JOB_TEMPLATE",
2552
2944
  PRESET = "PRESET",
2553
2945
  QUEUE = "QUEUE"
2554
2946
  }
2947
+ /**
2948
+ * @public
2949
+ */
2555
2950
  export declare enum JobPhase {
2556
2951
  PROBING = "PROBING",
2557
2952
  TRANSCODING = "TRANSCODING",
2558
2953
  UPLOADING = "UPLOADING"
2559
2954
  }
2560
2955
  /**
2956
+ * @public
2561
2957
  * Provides messages from the service about jobs that you have already successfully submitted.
2562
2958
  */
2563
2959
  export interface JobMessages {
@@ -2571,6 +2967,7 @@ export interface JobMessages {
2571
2967
  Warning?: string[];
2572
2968
  }
2573
2969
  /**
2970
+ * @public
2574
2971
  * Contains details about the output's video stream
2575
2972
  */
2576
2973
  export interface VideoDetail {
@@ -2584,6 +2981,7 @@ export interface VideoDetail {
2584
2981
  WidthInPx?: number;
2585
2982
  }
2586
2983
  /**
2984
+ * @public
2587
2985
  * Details regarding output
2588
2986
  */
2589
2987
  export interface OutputDetail {
@@ -2597,6 +2995,7 @@ export interface OutputDetail {
2597
2995
  VideoDetails?: VideoDetail;
2598
2996
  }
2599
2997
  /**
2998
+ * @public
2600
2999
  * Contains details about the output groups specified in the job settings.
2601
3000
  */
2602
3001
  export interface OutputGroupDetail {
@@ -2606,6 +3005,7 @@ export interface OutputGroupDetail {
2606
3005
  OutputDetails?: OutputDetail[];
2607
3006
  }
2608
3007
  /**
3008
+ * @public
2609
3009
  * Description of the source and destination queues between which the job has moved, along with the timestamp of the move
2610
3010
  */
2611
3011
  export interface QueueTransition {
@@ -2623,6 +3023,7 @@ export interface QueueTransition {
2623
3023
  Timestamp?: Date;
2624
3024
  }
2625
3025
  /**
3026
+ * @public
2626
3027
  * Use ad avail blanking settings to specify your output content during SCTE-35 triggered ad avails. You can blank your video or overlay it with an image. MediaConvert also removes any audio and embedded captions during the ad avail. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ad-avail-blanking.html.
2627
3028
  */
2628
3029
  export interface AvailBlanking {
@@ -2632,6 +3033,7 @@ export interface AvailBlanking {
2632
3033
  AvailBlankingImage?: string;
2633
3034
  }
2634
3035
  /**
3036
+ * @public
2635
3037
  * ESAM ManifestConfirmConditionNotification defined by OC-SP-ESAM-API-I03-131025.
2636
3038
  */
2637
3039
  export interface EsamManifestConfirmConditionNotification {
@@ -2641,6 +3043,7 @@ export interface EsamManifestConfirmConditionNotification {
2641
3043
  MccXml?: string;
2642
3044
  }
2643
3045
  /**
3046
+ * @public
2644
3047
  * ESAM SignalProcessingNotification data defined by OC-SP-ESAM-API-I03-131025.
2645
3048
  */
2646
3049
  export interface EsamSignalProcessingNotification {
@@ -2650,6 +3053,7 @@ export interface EsamSignalProcessingNotification {
2650
3053
  SccXml?: string;
2651
3054
  }
2652
3055
  /**
3056
+ * @public
2653
3057
  * Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.
2654
3058
  */
2655
3059
  export interface EsamSettings {
@@ -2666,15 +3070,22 @@ export interface EsamSettings {
2666
3070
  */
2667
3071
  SignalProcessingNotification?: EsamSignalProcessingNotification;
2668
3072
  }
3073
+ /**
3074
+ * @public
3075
+ */
2669
3076
  export declare enum CopyProtectionAction {
2670
3077
  PASSTHROUGH = "PASSTHROUGH",
2671
3078
  STRIP = "STRIP"
2672
3079
  }
3080
+ /**
3081
+ * @public
3082
+ */
2673
3083
  export declare enum VchipAction {
2674
3084
  PASSTHROUGH = "PASSTHROUGH",
2675
3085
  STRIP = "STRIP"
2676
3086
  }
2677
3087
  /**
3088
+ * @public
2678
3089
  * If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
2679
3090
  */
2680
3091
  export interface ExtendedDataServices {
@@ -2688,6 +3099,7 @@ export interface ExtendedDataServices {
2688
3099
  VchipAction?: VchipAction | string;
2689
3100
  }
2690
3101
  /**
3102
+ * @public
2691
3103
  * Use these settings only when you use Kantar watermarking. Specify the values that MediaConvert uses to generate and place Kantar watermarks in your output audio. These settings apply to every output in your job. In addition to specifying these values, you also need to store your Kantar credentials in AWS Secrets Manager. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/kantar-watermarking.html.
2692
3104
  */
2693
3105
  export interface KantarWatermarkSettings {
@@ -2745,6 +3157,7 @@ export interface KantarWatermarkSettings {
2745
3157
  Metadata8?: string;
2746
3158
  }
2747
3159
  /**
3160
+ * @public
2748
3161
  * For motion overlays that don't have a built-in frame rate, specify the frame rate of the overlay in frames per second, as a fraction. For example, specify 24 fps as 24/1. The overlay frame rate doesn't need to match the frame rate of the underlying video.
2749
3162
  */
2750
3163
  export interface MotionImageInsertionFramerate {
@@ -2757,11 +3170,15 @@ export interface MotionImageInsertionFramerate {
2757
3170
  */
2758
3171
  FramerateNumerator?: number;
2759
3172
  }
3173
+ /**
3174
+ * @public
3175
+ */
2760
3176
  export declare enum MotionImageInsertionMode {
2761
3177
  MOV = "MOV",
2762
3178
  PNG = "PNG"
2763
3179
  }
2764
3180
  /**
3181
+ * @public
2765
3182
  * Specify the offset between the upper-left corner of the video frame and the top left corner of the overlay.
2766
3183
  */
2767
3184
  export interface MotionImageInsertionOffset {
@@ -2774,11 +3191,15 @@ export interface MotionImageInsertionOffset {
2774
3191
  */
2775
3192
  ImageY?: number;
2776
3193
  }
3194
+ /**
3195
+ * @public
3196
+ */
2777
3197
  export declare enum MotionImagePlayback {
2778
3198
  ONCE = "ONCE",
2779
3199
  REPEAT = "REPEAT"
2780
3200
  }
2781
3201
  /**
3202
+ * @public
2782
3203
  * Overlay motion graphics on top of your video. The motion graphics that you specify here appear on all outputs in all output groups. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/motion-graphic-overlay.html.
2783
3204
  */
2784
3205
  export interface MotionImageInserter {
@@ -2808,6 +3229,7 @@ export interface MotionImageInserter {
2808
3229
  StartTime?: string;
2809
3230
  }
2810
3231
  /**
3232
+ * @public
2811
3233
  * Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration (nielsenConfiguration), MediaConvert enables PCM to ID3 tagging for all outputs in the job. To enable Nielsen configuration programmatically, include an instance of nielsenConfiguration in your JSON job specification. Even if you don't include any children of nielsenConfiguration, you still enable the setting.
2812
3234
  */
2813
3235
  export interface NielsenConfiguration {
@@ -2820,20 +3242,30 @@ export interface NielsenConfiguration {
2820
3242
  */
2821
3243
  DistributorId?: string;
2822
3244
  }
3245
+ /**
3246
+ * @public
3247
+ */
2823
3248
  export declare enum NielsenActiveWatermarkProcessType {
2824
3249
  CBET = "CBET",
2825
3250
  NAES2_AND_NW = "NAES2_AND_NW",
2826
3251
  NAES2_AND_NW_AND_CBET = "NAES2_AND_NW_AND_CBET"
2827
3252
  }
3253
+ /**
3254
+ * @public
3255
+ */
2828
3256
  export declare enum NielsenSourceWatermarkStatusType {
2829
3257
  CLEAN = "CLEAN",
2830
3258
  WATERMARKED = "WATERMARKED"
2831
3259
  }
3260
+ /**
3261
+ * @public
3262
+ */
2832
3263
  export declare enum NielsenUniqueTicPerAudioTrackType {
2833
3264
  RESERVE_UNIQUE_TICS_PER_TRACK = "RESERVE_UNIQUE_TICS_PER_TRACK",
2834
3265
  SAME_TICS_PER_TRACK = "SAME_TICS_PER_TRACK"
2835
3266
  }
2836
3267
  /**
3268
+ * @public
2837
3269
  * Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version 5.2.1 Nielsen NLM Watermark Engine Version 1.2.7 Nielsen Watermark Authenticator [SID_TIC] Version [5.0.0]
2838
3270
  */
2839
3271
  export interface NielsenNonLinearWatermarkSettings {
@@ -2883,6 +3315,7 @@ export interface NielsenNonLinearWatermarkSettings {
2883
3315
  UniqueTicPerAudioTrack?: NielsenUniqueTicPerAudioTrackType | string;
2884
3316
  }
2885
3317
  /**
3318
+ * @public
2886
3319
  * Use automated ABR to have MediaConvert set up the renditions in your ABR package for you automatically, based on characteristics of your input video. This feature optimizes video quality while minimizing the overall size of your ABR package.
2887
3320
  */
2888
3321
  export interface AutomatedAbrSettings {
@@ -2904,6 +3337,7 @@ export interface AutomatedAbrSettings {
2904
3337
  Rules?: AutomatedAbrRule[];
2905
3338
  }
2906
3339
  /**
3340
+ * @public
2907
3341
  * Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
2908
3342
  */
2909
3343
  export interface AutomatedEncodingSettings {
@@ -2912,19 +3346,31 @@ export interface AutomatedEncodingSettings {
2912
3346
  */
2913
3347
  AbrSettings?: AutomatedAbrSettings;
2914
3348
  }
3349
+ /**
3350
+ * @public
3351
+ */
2915
3352
  export declare enum CmafClientCache {
2916
3353
  DISABLED = "DISABLED",
2917
3354
  ENABLED = "ENABLED"
2918
3355
  }
3356
+ /**
3357
+ * @public
3358
+ */
2919
3359
  export declare enum CmafCodecSpecification {
2920
3360
  RFC_4281 = "RFC_4281",
2921
3361
  RFC_6381 = "RFC_6381"
2922
3362
  }
3363
+ /**
3364
+ * @public
3365
+ */
2923
3366
  export declare enum DashManifestStyle {
2924
3367
  BASIC = "BASIC",
2925
3368
  COMPACT = "COMPACT",
2926
3369
  DISTINCT = "DISTINCT"
2927
3370
  }
3371
+ /**
3372
+ * @public
3373
+ */
2928
3374
  export declare enum S3ObjectCannedAcl {
2929
3375
  AUTHENTICATED_READ = "AUTHENTICATED_READ",
2930
3376
  BUCKET_OWNER_FULL_CONTROL = "BUCKET_OWNER_FULL_CONTROL",
@@ -2932,6 +3378,7 @@ export declare enum S3ObjectCannedAcl {
2932
3378
  PUBLIC_READ = "PUBLIC_READ"
2933
3379
  }
2934
3380
  /**
3381
+ * @public
2935
3382
  * Optional. Have MediaConvert automatically apply Amazon S3 access control for the outputs in this output group. When you don't use this setting, S3 automatically applies the default access control list PRIVATE.
2936
3383
  */
2937
3384
  export interface S3DestinationAccessControl {
@@ -2940,11 +3387,15 @@ export interface S3DestinationAccessControl {
2940
3387
  */
2941
3388
  CannedAcl?: S3ObjectCannedAcl | string;
2942
3389
  }
3390
+ /**
3391
+ * @public
3392
+ */
2943
3393
  export declare enum S3ServerSideEncryptionType {
2944
3394
  SERVER_SIDE_ENCRYPTION_KMS = "SERVER_SIDE_ENCRYPTION_KMS",
2945
3395
  SERVER_SIDE_ENCRYPTION_S3 = "SERVER_SIDE_ENCRYPTION_S3"
2946
3396
  }
2947
3397
  /**
3398
+ * @public
2948
3399
  * Settings for how your job outputs are encrypted as they are uploaded to Amazon S3.
2949
3400
  */
2950
3401
  export interface S3EncryptionSettings {
@@ -2962,6 +3413,7 @@ export interface S3EncryptionSettings {
2962
3413
  KmsKeyArn?: string;
2963
3414
  }
2964
3415
  /**
3416
+ * @public
2965
3417
  * Settings associated with S3 destination
2966
3418
  */
2967
3419
  export interface S3DestinationSettings {
@@ -2975,6 +3427,7 @@ export interface S3DestinationSettings {
2975
3427
  Encryption?: S3EncryptionSettings;
2976
3428
  }
2977
3429
  /**
3430
+ * @public
2978
3431
  * Settings associated with the destination. Will vary based on the type of destination
2979
3432
  */
2980
3433
  export interface DestinationSettings {
@@ -2983,15 +3436,22 @@ export interface DestinationSettings {
2983
3436
  */
2984
3437
  S3Settings?: S3DestinationSettings;
2985
3438
  }
3439
+ /**
3440
+ * @public
3441
+ */
2986
3442
  export declare enum CmafEncryptionType {
2987
3443
  AES_CTR = "AES_CTR",
2988
3444
  SAMPLE_AES = "SAMPLE_AES"
2989
3445
  }
3446
+ /**
3447
+ * @public
3448
+ */
2990
3449
  export declare enum CmafInitializationVectorInManifest {
2991
3450
  EXCLUDE = "EXCLUDE",
2992
3451
  INCLUDE = "INCLUDE"
2993
3452
  }
2994
3453
  /**
3454
+ * @public
2995
3455
  * If your output group type is CMAF, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is HLS, DASH, or Microsoft Smooth, use the SpekeKeyProvider settings instead.
2996
3456
  */
2997
3457
  export interface SpekeKeyProviderCmaf {
@@ -3017,6 +3477,7 @@ export interface SpekeKeyProviderCmaf {
3017
3477
  Url?: string;
3018
3478
  }
3019
3479
  /**
3480
+ * @public
3020
3481
  * Use these settings to set up encryption with a static key provider.
3021
3482
  */
3022
3483
  export interface StaticKeyProvider {
@@ -3037,11 +3498,15 @@ export interface StaticKeyProvider {
3037
3498
  */
3038
3499
  Url?: string;
3039
3500
  }
3501
+ /**
3502
+ * @public
3503
+ */
3040
3504
  export declare enum CmafKeyProviderType {
3041
3505
  SPEKE = "SPEKE",
3042
3506
  STATIC_KEY = "STATIC_KEY"
3043
3507
  }
3044
3508
  /**
3509
+ * @public
3045
3510
  * Settings for CMAF encryption
3046
3511
  */
3047
3512
  export interface CmafEncryptionSettings {
@@ -3070,17 +3535,24 @@ export interface CmafEncryptionSettings {
3070
3535
  */
3071
3536
  Type?: CmafKeyProviderType | string;
3072
3537
  }
3538
+ /**
3539
+ * @public
3540
+ */
3073
3541
  export declare enum CmafImageBasedTrickPlay {
3074
3542
  ADVANCED = "ADVANCED",
3075
3543
  NONE = "NONE",
3076
3544
  THUMBNAIL = "THUMBNAIL",
3077
3545
  THUMBNAIL_AND_FULLFRAME = "THUMBNAIL_AND_FULLFRAME"
3078
3546
  }
3547
+ /**
3548
+ * @public
3549
+ */
3079
3550
  export declare enum CmafIntervalCadence {
3080
3551
  FOLLOW_CUSTOM = "FOLLOW_CUSTOM",
3081
3552
  FOLLOW_IFRAME = "FOLLOW_IFRAME"
3082
3553
  }
3083
3554
  /**
3555
+ * @public
3084
3556
  * Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
3085
3557
  */
3086
3558
  export interface CmafImageBasedTrickPlaySettings {
@@ -3109,59 +3581,99 @@ export interface CmafImageBasedTrickPlaySettings {
3109
3581
  */
3110
3582
  TileWidth?: number;
3111
3583
  }
3584
+ /**
3585
+ * @public
3586
+ */
3112
3587
  export declare enum CmafManifestCompression {
3113
3588
  GZIP = "GZIP",
3114
3589
  NONE = "NONE"
3115
3590
  }
3591
+ /**
3592
+ * @public
3593
+ */
3116
3594
  export declare enum CmafManifestDurationFormat {
3117
3595
  FLOATING_POINT = "FLOATING_POINT",
3118
3596
  INTEGER = "INTEGER"
3119
3597
  }
3598
+ /**
3599
+ * @public
3600
+ */
3120
3601
  export declare enum CmafMpdManifestBandwidthType {
3121
3602
  AVERAGE = "AVERAGE",
3122
3603
  MAX = "MAX"
3123
3604
  }
3605
+ /**
3606
+ * @public
3607
+ */
3124
3608
  export declare enum CmafMpdProfile {
3125
3609
  MAIN_PROFILE = "MAIN_PROFILE",
3126
3610
  ON_DEMAND_PROFILE = "ON_DEMAND_PROFILE"
3127
3611
  }
3612
+ /**
3613
+ * @public
3614
+ */
3128
3615
  export declare enum CmafPtsOffsetHandlingForBFrames {
3129
3616
  MATCH_INITIAL_PTS = "MATCH_INITIAL_PTS",
3130
3617
  ZERO_BASED = "ZERO_BASED"
3131
3618
  }
3619
+ /**
3620
+ * @public
3621
+ */
3132
3622
  export declare enum CmafSegmentControl {
3133
3623
  SEGMENTED_FILES = "SEGMENTED_FILES",
3134
3624
  SINGLE_FILE = "SINGLE_FILE"
3135
3625
  }
3626
+ /**
3627
+ * @public
3628
+ */
3136
3629
  export declare enum CmafSegmentLengthControl {
3137
3630
  EXACT = "EXACT",
3138
3631
  GOP_MULTIPLE = "GOP_MULTIPLE"
3139
3632
  }
3633
+ /**
3634
+ * @public
3635
+ */
3140
3636
  export declare enum CmafStreamInfResolution {
3141
3637
  EXCLUDE = "EXCLUDE",
3142
3638
  INCLUDE = "INCLUDE"
3143
3639
  }
3640
+ /**
3641
+ * @public
3642
+ */
3144
3643
  export declare enum CmafTargetDurationCompatibilityMode {
3145
3644
  LEGACY = "LEGACY",
3146
3645
  SPEC_COMPLIANT = "SPEC_COMPLIANT"
3147
3646
  }
3647
+ /**
3648
+ * @public
3649
+ */
3148
3650
  export declare enum CmafVideoCompositionOffsets {
3149
3651
  SIGNED = "SIGNED",
3150
3652
  UNSIGNED = "UNSIGNED"
3151
3653
  }
3654
+ /**
3655
+ * @public
3656
+ */
3152
3657
  export declare enum CmafWriteDASHManifest {
3153
3658
  DISABLED = "DISABLED",
3154
3659
  ENABLED = "ENABLED"
3155
3660
  }
3661
+ /**
3662
+ * @public
3663
+ */
3156
3664
  export declare enum CmafWriteHLSManifest {
3157
3665
  DISABLED = "DISABLED",
3158
3666
  ENABLED = "ENABLED"
3159
3667
  }
3668
+ /**
3669
+ * @public
3670
+ */
3160
3671
  export declare enum CmafWriteSegmentTimelineInRepresentation {
3161
3672
  DISABLED = "DISABLED",
3162
3673
  ENABLED = "ENABLED"
3163
3674
  }
3164
3675
  /**
3676
+ * @public
3165
3677
  * Settings related to your CMAF output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to CMAF_GROUP_SETTINGS.
3166
3678
  */
3167
3679
  export interface CmafGroupSettings {
@@ -3274,15 +3786,22 @@ export interface CmafGroupSettings {
3274
3786
  */
3275
3787
  WriteSegmentTimelineInRepresentation?: CmafWriteSegmentTimelineInRepresentation | string;
3276
3788
  }
3789
+ /**
3790
+ * @public
3791
+ */
3277
3792
  export declare enum DashIsoGroupAudioChannelConfigSchemeIdUri {
3278
3793
  DOLBY_CHANNEL_CONFIGURATION = "DOLBY_CHANNEL_CONFIGURATION",
3279
3794
  MPEG_CHANNEL_CONFIGURATION = "MPEG_CHANNEL_CONFIGURATION"
3280
3795
  }
3796
+ /**
3797
+ * @public
3798
+ */
3281
3799
  export declare enum DashIsoPlaybackDeviceCompatibility {
3282
3800
  CENC_V1 = "CENC_V1",
3283
3801
  UNENCRYPTED_SEI = "UNENCRYPTED_SEI"
3284
3802
  }
3285
3803
  /**
3804
+ * @public
3286
3805
  * If your output group type is HLS, DASH, or Microsoft Smooth, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is CMAF, use the SpekeKeyProviderCmaf settings instead.
3287
3806
  */
3288
3807
  export interface SpekeKeyProvider {
@@ -3305,6 +3824,7 @@ export interface SpekeKeyProvider {
3305
3824
  Url?: string;
3306
3825
  }
3307
3826
  /**
3827
+ * @public
3308
3828
  * Specifies DRM settings for DASH outputs.
3309
3829
  */
3310
3830
  export interface DashIsoEncryptionSettings {
@@ -3317,21 +3837,31 @@ export interface DashIsoEncryptionSettings {
3317
3837
  */
3318
3838
  SpekeKeyProvider?: SpekeKeyProvider;
3319
3839
  }
3840
+ /**
3841
+ * @public
3842
+ */
3320
3843
  export declare enum DashIsoHbbtvCompliance {
3321
3844
  HBBTV_1_5 = "HBBTV_1_5",
3322
3845
  NONE = "NONE"
3323
3846
  }
3847
+ /**
3848
+ * @public
3849
+ */
3324
3850
  export declare enum DashIsoImageBasedTrickPlay {
3325
3851
  ADVANCED = "ADVANCED",
3326
3852
  NONE = "NONE",
3327
3853
  THUMBNAIL = "THUMBNAIL",
3328
3854
  THUMBNAIL_AND_FULLFRAME = "THUMBNAIL_AND_FULLFRAME"
3329
3855
  }
3856
+ /**
3857
+ * @public
3858
+ */
3330
3859
  export declare enum DashIsoIntervalCadence {
3331
3860
  FOLLOW_CUSTOM = "FOLLOW_CUSTOM",
3332
3861
  FOLLOW_IFRAME = "FOLLOW_IFRAME"
3333
3862
  }
3334
3863
  /**
3864
+ * @public
3335
3865
  * Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
3336
3866
  */
3337
3867
  export interface DashIsoImageBasedTrickPlaySettings {
@@ -3360,35 +3890,57 @@ export interface DashIsoImageBasedTrickPlaySettings {
3360
3890
  */
3361
3891
  TileWidth?: number;
3362
3892
  }
3893
+ /**
3894
+ * @public
3895
+ */
3363
3896
  export declare enum DashIsoMpdManifestBandwidthType {
3364
3897
  AVERAGE = "AVERAGE",
3365
3898
  MAX = "MAX"
3366
3899
  }
3900
+ /**
3901
+ * @public
3902
+ */
3367
3903
  export declare enum DashIsoMpdProfile {
3368
3904
  MAIN_PROFILE = "MAIN_PROFILE",
3369
3905
  ON_DEMAND_PROFILE = "ON_DEMAND_PROFILE"
3370
3906
  }
3907
+ /**
3908
+ * @public
3909
+ */
3371
3910
  export declare enum DashIsoPtsOffsetHandlingForBFrames {
3372
3911
  MATCH_INITIAL_PTS = "MATCH_INITIAL_PTS",
3373
3912
  ZERO_BASED = "ZERO_BASED"
3374
3913
  }
3914
+ /**
3915
+ * @public
3916
+ */
3375
3917
  export declare enum DashIsoSegmentControl {
3376
3918
  SEGMENTED_FILES = "SEGMENTED_FILES",
3377
3919
  SINGLE_FILE = "SINGLE_FILE"
3378
3920
  }
3921
+ /**
3922
+ * @public
3923
+ */
3379
3924
  export declare enum DashIsoSegmentLengthControl {
3380
3925
  EXACT = "EXACT",
3381
3926
  GOP_MULTIPLE = "GOP_MULTIPLE"
3382
3927
  }
3928
+ /**
3929
+ * @public
3930
+ */
3383
3931
  export declare enum DashIsoVideoCompositionOffsets {
3384
3932
  SIGNED = "SIGNED",
3385
3933
  UNSIGNED = "UNSIGNED"
3386
3934
  }
3935
+ /**
3936
+ * @public
3937
+ */
3387
3938
  export declare enum DashIsoWriteSegmentTimelineInRepresentation {
3388
3939
  DISABLED = "DISABLED",
3389
3940
  ENABLED = "ENABLED"
3390
3941
  }
3391
3942
  /**
3943
+ * @public
3392
3944
  * Settings related to your DASH output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to DASH_ISO_GROUP_SETTINGS.
3393
3945
  */
3394
3946
  export interface DashIsoGroupSettings {
@@ -3478,6 +4030,7 @@ export interface DashIsoGroupSettings {
3478
4030
  WriteSegmentTimelineInRepresentation?: DashIsoWriteSegmentTimelineInRepresentation | string;
3479
4031
  }
3480
4032
  /**
4033
+ * @public
3481
4034
  * Settings related to your File output group. MediaConvert uses this group of settings to generate a single standalone file, rather than a streaming package. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to FILE_GROUP_SETTINGS.
3482
4035
  */
3483
4036
  export interface FileGroupSettings {
@@ -3490,48 +4043,79 @@ export interface FileGroupSettings {
3490
4043
  */
3491
4044
  DestinationSettings?: DestinationSettings;
3492
4045
  }
4046
+ /**
4047
+ * @public
4048
+ */
3493
4049
  export declare enum HlsAudioOnlyHeader {
3494
4050
  EXCLUDE = "EXCLUDE",
3495
4051
  INCLUDE = "INCLUDE"
3496
4052
  }
4053
+ /**
4054
+ * @public
4055
+ */
3497
4056
  export declare enum HlsCaptionLanguageSetting {
3498
4057
  INSERT = "INSERT",
3499
4058
  NONE = "NONE",
3500
4059
  OMIT = "OMIT"
3501
4060
  }
4061
+ /**
4062
+ * @public
4063
+ */
3502
4064
  export declare enum HlsCaptionSegmentLengthControl {
3503
4065
  LARGE_SEGMENTS = "LARGE_SEGMENTS",
3504
4066
  MATCH_VIDEO = "MATCH_VIDEO"
3505
4067
  }
4068
+ /**
4069
+ * @public
4070
+ */
3506
4071
  export declare enum HlsClientCache {
3507
4072
  DISABLED = "DISABLED",
3508
4073
  ENABLED = "ENABLED"
3509
4074
  }
4075
+ /**
4076
+ * @public
4077
+ */
3510
4078
  export declare enum HlsCodecSpecification {
3511
4079
  RFC_4281 = "RFC_4281",
3512
4080
  RFC_6381 = "RFC_6381"
3513
4081
  }
4082
+ /**
4083
+ * @public
4084
+ */
3514
4085
  export declare enum HlsDirectoryStructure {
3515
4086
  SINGLE_DIRECTORY = "SINGLE_DIRECTORY",
3516
4087
  SUBDIRECTORY_PER_STREAM = "SUBDIRECTORY_PER_STREAM"
3517
4088
  }
4089
+ /**
4090
+ * @public
4091
+ */
3518
4092
  export declare enum HlsEncryptionType {
3519
4093
  AES128 = "AES128",
3520
4094
  SAMPLE_AES = "SAMPLE_AES"
3521
4095
  }
4096
+ /**
4097
+ * @public
4098
+ */
3522
4099
  export declare enum HlsInitializationVectorInManifest {
3523
4100
  EXCLUDE = "EXCLUDE",
3524
4101
  INCLUDE = "INCLUDE"
3525
4102
  }
4103
+ /**
4104
+ * @public
4105
+ */
3526
4106
  export declare enum HlsOfflineEncrypted {
3527
4107
  DISABLED = "DISABLED",
3528
4108
  ENABLED = "ENABLED"
3529
4109
  }
4110
+ /**
4111
+ * @public
4112
+ */
3530
4113
  export declare enum HlsKeyProviderType {
3531
4114
  SPEKE = "SPEKE",
3532
4115
  STATIC_KEY = "STATIC_KEY"
3533
4116
  }
3534
4117
  /**
4118
+ * @public
3535
4119
  * Settings for HLS encryption
3536
4120
  */
3537
4121
  export interface HlsEncryptionSettings {
@@ -3564,17 +4148,24 @@ export interface HlsEncryptionSettings {
3564
4148
  */
3565
4149
  Type?: HlsKeyProviderType | string;
3566
4150
  }
4151
+ /**
4152
+ * @public
4153
+ */
3567
4154
  export declare enum HlsImageBasedTrickPlay {
3568
4155
  ADVANCED = "ADVANCED",
3569
4156
  NONE = "NONE",
3570
4157
  THUMBNAIL = "THUMBNAIL",
3571
4158
  THUMBNAIL_AND_FULLFRAME = "THUMBNAIL_AND_FULLFRAME"
3572
4159
  }
4160
+ /**
4161
+ * @public
4162
+ */
3573
4163
  export declare enum HlsIntervalCadence {
3574
4164
  FOLLOW_CUSTOM = "FOLLOW_CUSTOM",
3575
4165
  FOLLOW_IFRAME = "FOLLOW_IFRAME"
3576
4166
  }
3577
4167
  /**
4168
+ * @public
3578
4169
  * Tile and thumbnail settings applicable when imageBasedTrickPlay is ADVANCED
3579
4170
  */
3580
4171
  export interface HlsImageBasedTrickPlaySettings {
@@ -3603,44 +4194,72 @@ export interface HlsImageBasedTrickPlaySettings {
3603
4194
  */
3604
4195
  TileWidth?: number;
3605
4196
  }
4197
+ /**
4198
+ * @public
4199
+ */
3606
4200
  export declare enum HlsManifestCompression {
3607
4201
  GZIP = "GZIP",
3608
4202
  NONE = "NONE"
3609
4203
  }
4204
+ /**
4205
+ * @public
4206
+ */
3610
4207
  export declare enum HlsManifestDurationFormat {
3611
4208
  FLOATING_POINT = "FLOATING_POINT",
3612
4209
  INTEGER = "INTEGER"
3613
4210
  }
4211
+ /**
4212
+ * @public
4213
+ */
3614
4214
  export declare enum HlsOutputSelection {
3615
4215
  MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
3616
4216
  SEGMENTS_ONLY = "SEGMENTS_ONLY"
3617
4217
  }
4218
+ /**
4219
+ * @public
4220
+ */
3618
4221
  export declare enum HlsProgramDateTime {
3619
4222
  EXCLUDE = "EXCLUDE",
3620
4223
  INCLUDE = "INCLUDE"
3621
4224
  }
4225
+ /**
4226
+ * @public
4227
+ */
3622
4228
  export declare enum HlsSegmentControl {
3623
4229
  SEGMENTED_FILES = "SEGMENTED_FILES",
3624
4230
  SINGLE_FILE = "SINGLE_FILE"
3625
4231
  }
4232
+ /**
4233
+ * @public
4234
+ */
3626
4235
  export declare enum HlsSegmentLengthControl {
3627
4236
  EXACT = "EXACT",
3628
4237
  GOP_MULTIPLE = "GOP_MULTIPLE"
3629
4238
  }
4239
+ /**
4240
+ * @public
4241
+ */
3630
4242
  export declare enum HlsStreamInfResolution {
3631
4243
  EXCLUDE = "EXCLUDE",
3632
4244
  INCLUDE = "INCLUDE"
3633
4245
  }
4246
+ /**
4247
+ * @public
4248
+ */
3634
4249
  export declare enum HlsTargetDurationCompatibilityMode {
3635
4250
  LEGACY = "LEGACY",
3636
4251
  SPEC_COMPLIANT = "SPEC_COMPLIANT"
3637
4252
  }
4253
+ /**
4254
+ * @public
4255
+ */
3638
4256
  export declare enum HlsTimedMetadataId3Frame {
3639
4257
  NONE = "NONE",
3640
4258
  PRIV = "PRIV",
3641
4259
  TDRL = "TDRL"
3642
4260
  }
3643
4261
  /**
4262
+ * @public
3644
4263
  * Settings related to your HLS output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to HLS_GROUP_SETTINGS.
3645
4264
  */
3646
4265
  export interface HlsGroupSettings {
@@ -3770,6 +4389,7 @@ export interface HlsGroupSettings {
3770
4389
  TimestampDeltaMilliseconds?: number;
3771
4390
  }
3772
4391
  /**
4392
+ * @public
3773
4393
  * Specify the details for each additional Microsoft Smooth Streaming manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.
3774
4394
  */
3775
4395
  export interface MsSmoothAdditionalManifest {
@@ -3782,11 +4402,15 @@ export interface MsSmoothAdditionalManifest {
3782
4402
  */
3783
4403
  SelectedOutputs?: string[];
3784
4404
  }
4405
+ /**
4406
+ * @public
4407
+ */
3785
4408
  export declare enum MsSmoothAudioDeduplication {
3786
4409
  COMBINE_DUPLICATE_STREAMS = "COMBINE_DUPLICATE_STREAMS",
3787
4410
  NONE = "NONE"
3788
4411
  }
3789
4412
  /**
4413
+ * @public
3790
4414
  * If you are using DRM, set DRM System (MsSmoothEncryptionSettings) to specify the value SpekeKeyProvider.
3791
4415
  */
3792
4416
  export interface MsSmoothEncryptionSettings {
@@ -3795,15 +4419,22 @@ export interface MsSmoothEncryptionSettings {
3795
4419
  */
3796
4420
  SpekeKeyProvider?: SpekeKeyProvider;
3797
4421
  }
4422
+ /**
4423
+ * @public
4424
+ */
3798
4425
  export declare enum MsSmoothFragmentLengthControl {
3799
4426
  EXACT = "EXACT",
3800
4427
  GOP_MULTIPLE = "GOP_MULTIPLE"
3801
4428
  }
4429
+ /**
4430
+ * @public
4431
+ */
3802
4432
  export declare enum MsSmoothManifestEncoding {
3803
4433
  UTF16 = "UTF16",
3804
4434
  UTF8 = "UTF8"
3805
4435
  }
3806
4436
  /**
4437
+ * @public
3807
4438
  * Settings related to your Microsoft Smooth Streaming output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to MS_SMOOTH_GROUP_SETTINGS.
3808
4439
  */
3809
4440
  export interface MsSmoothGroupSettings {
@@ -3840,6 +4471,9 @@ export interface MsSmoothGroupSettings {
3840
4471
  */
3841
4472
  ManifestEncoding?: MsSmoothManifestEncoding | string;
3842
4473
  }
4474
+ /**
4475
+ * @public
4476
+ */
3843
4477
  export declare enum OutputGroupType {
3844
4478
  CMAF_GROUP_SETTINGS = "CMAF_GROUP_SETTINGS",
3845
4479
  DASH_ISO_GROUP_SETTINGS = "DASH_ISO_GROUP_SETTINGS",
@@ -3848,6 +4482,7 @@ export declare enum OutputGroupType {
3848
4482
  MS_SMOOTH_GROUP_SETTINGS = "MS_SMOOTH_GROUP_SETTINGS"
3849
4483
  }
3850
4484
  /**
4485
+ * @public
3851
4486
  * Output Group settings, including type
3852
4487
  */
3853
4488
  export interface OutputGroupSettings {
@@ -3876,48 +4511,79 @@ export interface OutputGroupSettings {
3876
4511
  */
3877
4512
  Type?: OutputGroupType | string;
3878
4513
  }
4514
+ /**
4515
+ * @public
4516
+ */
3879
4517
  export declare enum CmfcAudioDuration {
3880
4518
  DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
3881
4519
  MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
3882
4520
  }
4521
+ /**
4522
+ * @public
4523
+ */
3883
4524
  export declare enum CmfcAudioTrackType {
3884
4525
  ALTERNATE_AUDIO_AUTO_SELECT = "ALTERNATE_AUDIO_AUTO_SELECT",
3885
4526
  ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT",
3886
4527
  ALTERNATE_AUDIO_NOT_AUTO_SELECT = "ALTERNATE_AUDIO_NOT_AUTO_SELECT"
3887
4528
  }
4529
+ /**
4530
+ * @public
4531
+ */
3888
4532
  export declare enum CmfcDescriptiveVideoServiceFlag {
3889
4533
  DONT_FLAG = "DONT_FLAG",
3890
4534
  FLAG = "FLAG"
3891
4535
  }
4536
+ /**
4537
+ * @public
4538
+ */
3892
4539
  export declare enum CmfcIFrameOnlyManifest {
3893
4540
  EXCLUDE = "EXCLUDE",
3894
4541
  INCLUDE = "INCLUDE"
3895
4542
  }
4543
+ /**
4544
+ * @public
4545
+ */
3896
4546
  export declare enum CmfcKlvMetadata {
3897
4547
  NONE = "NONE",
3898
4548
  PASSTHROUGH = "PASSTHROUGH"
3899
4549
  }
4550
+ /**
4551
+ * @public
4552
+ */
3900
4553
  export declare enum CmfcManifestMetadataSignaling {
3901
4554
  DISABLED = "DISABLED",
3902
4555
  ENABLED = "ENABLED"
3903
4556
  }
4557
+ /**
4558
+ * @public
4559
+ */
3904
4560
  export declare enum CmfcScte35Esam {
3905
4561
  INSERT = "INSERT",
3906
4562
  NONE = "NONE"
3907
4563
  }
4564
+ /**
4565
+ * @public
4566
+ */
3908
4567
  export declare enum CmfcScte35Source {
3909
4568
  NONE = "NONE",
3910
4569
  PASSTHROUGH = "PASSTHROUGH"
3911
4570
  }
4571
+ /**
4572
+ * @public
4573
+ */
3912
4574
  export declare enum CmfcTimedMetadata {
3913
4575
  NONE = "NONE",
3914
4576
  PASSTHROUGH = "PASSTHROUGH"
3915
4577
  }
4578
+ /**
4579
+ * @public
4580
+ */
3916
4581
  export declare enum CmfcTimedMetadataBoxVersion {
3917
4582
  VERSION_0 = "VERSION_0",
3918
4583
  VERSION_1 = "VERSION_1"
3919
4584
  }
3920
4585
  /**
4586
+ * @public
3921
4587
  * These settings relate to the fragmented MP4 container for the segments in your CMAF outputs.
3922
4588
  */
3923
4589
  export interface CmfcSettings {
@@ -3981,6 +4647,9 @@ export interface CmfcSettings {
3981
4647
  */
3982
4648
  TimedMetadataValue?: string;
3983
4649
  }
4650
+ /**
4651
+ * @public
4652
+ */
3984
4653
  export declare enum ContainerType {
3985
4654
  CMFC = "CMFC",
3986
4655
  F4V = "F4V",
@@ -3994,11 +4663,15 @@ export declare enum ContainerType {
3994
4663
  RAW = "RAW",
3995
4664
  WEBM = "WEBM"
3996
4665
  }
4666
+ /**
4667
+ * @public
4668
+ */
3997
4669
  export declare enum F4vMoovPlacement {
3998
4670
  NORMAL = "NORMAL",
3999
4671
  PROGRESSIVE_DOWNLOAD = "PROGRESSIVE_DOWNLOAD"
4000
4672
  }
4001
4673
  /**
4674
+ * @public
4002
4675
  * Settings for F4v container
4003
4676
  */
4004
4677
  export interface F4vSettings {
@@ -4007,23 +4680,36 @@ export interface F4vSettings {
4007
4680
  */
4008
4681
  MoovPlacement?: F4vMoovPlacement | string;
4009
4682
  }
4683
+ /**
4684
+ * @public
4685
+ */
4010
4686
  export declare enum M2tsAudioBufferModel {
4011
4687
  ATSC = "ATSC",
4012
4688
  DVB = "DVB"
4013
4689
  }
4690
+ /**
4691
+ * @public
4692
+ */
4014
4693
  export declare enum M2tsAudioDuration {
4015
4694
  DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
4016
4695
  MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
4017
4696
  }
4697
+ /**
4698
+ * @public
4699
+ */
4018
4700
  export declare enum M2tsBufferModel {
4019
4701
  MULTIPLEX = "MULTIPLEX",
4020
4702
  NONE = "NONE"
4021
4703
  }
4704
+ /**
4705
+ * @public
4706
+ */
4022
4707
  export declare enum M2tsDataPtsControl {
4023
4708
  ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
4024
4709
  AUTO = "AUTO"
4025
4710
  }
4026
4711
  /**
4712
+ * @public
4027
4713
  * Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output. When you work directly in your JSON job specification, include this object only when your job has a transport stream output and the container settings contain the object M2tsSettings.
4028
4714
  */
4029
4715
  export interface DvbNitSettings {