@aws-sdk/client-mediaconvert 3.301.0 → 3.303.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.
@@ -3,13 +3,18 @@ import { MediaConvertServiceException as __BaseException } from "./MediaConvertS
3
3
  import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, DvbNitSettings, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
4
4
  /**
5
5
  * @public
6
+ * @enum
6
7
  */
7
- export declare enum OutputSdt {
8
- SDT_FOLLOW = "SDT_FOLLOW",
9
- SDT_FOLLOW_IF_PRESENT = "SDT_FOLLOW_IF_PRESENT",
10
- SDT_MANUAL = "SDT_MANUAL",
11
- SDT_NONE = "SDT_NONE"
12
- }
8
+ export declare const OutputSdt: {
9
+ readonly SDT_FOLLOW: "SDT_FOLLOW";
10
+ readonly SDT_FOLLOW_IF_PRESENT: "SDT_FOLLOW_IF_PRESENT";
11
+ readonly SDT_MANUAL: "SDT_MANUAL";
12
+ readonly SDT_NONE: "SDT_NONE";
13
+ };
14
+ /**
15
+ * @public
16
+ */
17
+ export type OutputSdt = (typeof OutputSdt)[keyof typeof OutputSdt];
13
18
  /**
14
19
  * @public
15
20
  * Use these settings to insert a DVB Service Description Table (SDT) 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.
@@ -44,60 +49,100 @@ export interface DvbTdtSettings {
44
49
  }
45
50
  /**
46
51
  * @public
52
+ * @enum
47
53
  */
48
- export declare enum M2tsEbpAudioInterval {
49
- VIDEO_AND_FIXED_INTERVALS = "VIDEO_AND_FIXED_INTERVALS",
50
- VIDEO_INTERVAL = "VIDEO_INTERVAL"
51
- }
54
+ export declare const M2tsEbpAudioInterval: {
55
+ readonly VIDEO_AND_FIXED_INTERVALS: "VIDEO_AND_FIXED_INTERVALS";
56
+ readonly VIDEO_INTERVAL: "VIDEO_INTERVAL";
57
+ };
52
58
  /**
53
59
  * @public
54
60
  */
55
- export declare enum M2tsEbpPlacement {
56
- VIDEO_AND_AUDIO_PIDS = "VIDEO_AND_AUDIO_PIDS",
57
- VIDEO_PID = "VIDEO_PID"
58
- }
61
+ export type M2tsEbpAudioInterval = (typeof M2tsEbpAudioInterval)[keyof typeof M2tsEbpAudioInterval];
59
62
  /**
60
63
  * @public
64
+ * @enum
61
65
  */
62
- export declare enum M2tsEsRateInPes {
63
- EXCLUDE = "EXCLUDE",
64
- INCLUDE = "INCLUDE"
65
- }
66
+ export declare const M2tsEbpPlacement: {
67
+ readonly VIDEO_AND_AUDIO_PIDS: "VIDEO_AND_AUDIO_PIDS";
68
+ readonly VIDEO_PID: "VIDEO_PID";
69
+ };
66
70
  /**
67
71
  * @public
68
72
  */
69
- export declare enum M2tsForceTsVideoEbpOrder {
70
- DEFAULT = "DEFAULT",
71
- FORCE = "FORCE"
72
- }
73
+ export type M2tsEbpPlacement = (typeof M2tsEbpPlacement)[keyof typeof M2tsEbpPlacement];
73
74
  /**
74
75
  * @public
76
+ * @enum
75
77
  */
76
- export declare enum M2tsKlvMetadata {
77
- NONE = "NONE",
78
- PASSTHROUGH = "PASSTHROUGH"
79
- }
78
+ export declare const M2tsEsRateInPes: {
79
+ readonly EXCLUDE: "EXCLUDE";
80
+ readonly INCLUDE: "INCLUDE";
81
+ };
80
82
  /**
81
83
  * @public
82
84
  */
83
- export declare enum M2tsNielsenId3 {
84
- INSERT = "INSERT",
85
- NONE = "NONE"
86
- }
85
+ export type M2tsEsRateInPes = (typeof M2tsEsRateInPes)[keyof typeof M2tsEsRateInPes];
87
86
  /**
88
87
  * @public
88
+ * @enum
89
89
  */
90
- export declare enum M2tsPcrControl {
91
- CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
92
- PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET"
93
- }
90
+ export declare const M2tsForceTsVideoEbpOrder: {
91
+ readonly DEFAULT: "DEFAULT";
92
+ readonly FORCE: "FORCE";
93
+ };
94
94
  /**
95
95
  * @public
96
96
  */
97
- export declare enum M2tsRateMode {
98
- CBR = "CBR",
99
- VBR = "VBR"
100
- }
97
+ export type M2tsForceTsVideoEbpOrder = (typeof M2tsForceTsVideoEbpOrder)[keyof typeof M2tsForceTsVideoEbpOrder];
98
+ /**
99
+ * @public
100
+ * @enum
101
+ */
102
+ export declare const M2tsKlvMetadata: {
103
+ readonly NONE: "NONE";
104
+ readonly PASSTHROUGH: "PASSTHROUGH";
105
+ };
106
+ /**
107
+ * @public
108
+ */
109
+ export type M2tsKlvMetadata = (typeof M2tsKlvMetadata)[keyof typeof M2tsKlvMetadata];
110
+ /**
111
+ * @public
112
+ * @enum
113
+ */
114
+ export declare const M2tsNielsenId3: {
115
+ readonly INSERT: "INSERT";
116
+ readonly NONE: "NONE";
117
+ };
118
+ /**
119
+ * @public
120
+ */
121
+ export type M2tsNielsenId3 = (typeof M2tsNielsenId3)[keyof typeof M2tsNielsenId3];
122
+ /**
123
+ * @public
124
+ * @enum
125
+ */
126
+ export declare const M2tsPcrControl: {
127
+ readonly CONFIGURED_PCR_PERIOD: "CONFIGURED_PCR_PERIOD";
128
+ readonly PCR_EVERY_PES_PACKET: "PCR_EVERY_PES_PACKET";
129
+ };
130
+ /**
131
+ * @public
132
+ */
133
+ export type M2tsPcrControl = (typeof M2tsPcrControl)[keyof typeof M2tsPcrControl];
134
+ /**
135
+ * @public
136
+ * @enum
137
+ */
138
+ export declare const M2tsRateMode: {
139
+ readonly CBR: "CBR";
140
+ readonly VBR: "VBR";
141
+ };
142
+ /**
143
+ * @public
144
+ */
145
+ export type M2tsRateMode = (typeof M2tsRateMode)[keyof typeof M2tsRateMode];
101
146
  /**
102
147
  * @public
103
148
  * Settings for SCTE-35 signals from ESAM. Include this in your job settings to put SCTE-35 markers in your HLS and transport stream outputs at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML (sccXml).
@@ -110,29 +155,44 @@ export interface M2tsScte35Esam {
110
155
  }
111
156
  /**
112
157
  * @public
158
+ * @enum
113
159
  */
114
- export declare enum M2tsScte35Source {
115
- NONE = "NONE",
116
- PASSTHROUGH = "PASSTHROUGH"
117
- }
160
+ export declare const M2tsScte35Source: {
161
+ readonly NONE: "NONE";
162
+ readonly PASSTHROUGH: "PASSTHROUGH";
163
+ };
118
164
  /**
119
165
  * @public
120
166
  */
121
- export declare enum M2tsSegmentationMarkers {
122
- EBP = "EBP",
123
- EBP_LEGACY = "EBP_LEGACY",
124
- NONE = "NONE",
125
- PSI_SEGSTART = "PSI_SEGSTART",
126
- RAI_ADAPT = "RAI_ADAPT",
127
- RAI_SEGSTART = "RAI_SEGSTART"
128
- }
167
+ export type M2tsScte35Source = (typeof M2tsScte35Source)[keyof typeof M2tsScte35Source];
129
168
  /**
130
169
  * @public
170
+ * @enum
131
171
  */
132
- export declare enum M2tsSegmentationStyle {
133
- MAINTAIN_CADENCE = "MAINTAIN_CADENCE",
134
- RESET_CADENCE = "RESET_CADENCE"
135
- }
172
+ export declare const M2tsSegmentationMarkers: {
173
+ readonly EBP: "EBP";
174
+ readonly EBP_LEGACY: "EBP_LEGACY";
175
+ readonly NONE: "NONE";
176
+ readonly PSI_SEGSTART: "PSI_SEGSTART";
177
+ readonly RAI_ADAPT: "RAI_ADAPT";
178
+ readonly RAI_SEGSTART: "RAI_SEGSTART";
179
+ };
180
+ /**
181
+ * @public
182
+ */
183
+ export type M2tsSegmentationMarkers = (typeof M2tsSegmentationMarkers)[keyof typeof M2tsSegmentationMarkers];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const M2tsSegmentationStyle: {
189
+ readonly MAINTAIN_CADENCE: "MAINTAIN_CADENCE";
190
+ readonly RESET_CADENCE: "RESET_CADENCE";
191
+ };
192
+ /**
193
+ * @public
194
+ */
195
+ export type M2tsSegmentationStyle = (typeof M2tsSegmentationStyle)[keyof typeof M2tsSegmentationStyle];
136
196
  /**
137
197
  * @public
138
198
  * MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container (ContainerType) is MPEG-2 Transport Stream (M2TS). In these assets, data is organized by the program map table (PMT). Each transport stream program contains subsets of data, including audio, video, and metadata. Each of these subsets of data has a numerical label called a packet identifier (PID). Each transport stream program corresponds to one MediaConvert output. The PMT lists the types of data in a program along with their PID. Downstream systems and players use the program map table to look up the PID for each type of data it accesses and then uses the PIDs to locate specific data within the asset.
@@ -297,46 +357,76 @@ export interface M2tsSettings {
297
357
  }
298
358
  /**
299
359
  * @public
360
+ * @enum
300
361
  */
301
- export declare enum M3u8AudioDuration {
302
- DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
303
- MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
304
- }
362
+ export declare const M3u8AudioDuration: {
363
+ readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
364
+ readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
365
+ };
305
366
  /**
306
367
  * @public
307
368
  */
308
- export declare enum M3u8DataPtsControl {
309
- ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
310
- AUTO = "AUTO"
311
- }
369
+ export type M3u8AudioDuration = (typeof M3u8AudioDuration)[keyof typeof M3u8AudioDuration];
312
370
  /**
313
371
  * @public
372
+ * @enum
314
373
  */
315
- export declare enum M3u8NielsenId3 {
316
- INSERT = "INSERT",
317
- NONE = "NONE"
318
- }
374
+ export declare const M3u8DataPtsControl: {
375
+ readonly ALIGN_TO_VIDEO: "ALIGN_TO_VIDEO";
376
+ readonly AUTO: "AUTO";
377
+ };
319
378
  /**
320
379
  * @public
321
380
  */
322
- export declare enum M3u8PcrControl {
323
- CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
324
- PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET"
325
- }
381
+ export type M3u8DataPtsControl = (typeof M3u8DataPtsControl)[keyof typeof M3u8DataPtsControl];
326
382
  /**
327
383
  * @public
384
+ * @enum
328
385
  */
329
- export declare enum M3u8Scte35Source {
330
- NONE = "NONE",
331
- PASSTHROUGH = "PASSTHROUGH"
332
- }
386
+ export declare const M3u8NielsenId3: {
387
+ readonly INSERT: "INSERT";
388
+ readonly NONE: "NONE";
389
+ };
333
390
  /**
334
391
  * @public
335
392
  */
336
- export declare enum TimedMetadata {
337
- NONE = "NONE",
338
- PASSTHROUGH = "PASSTHROUGH"
339
- }
393
+ export type M3u8NielsenId3 = (typeof M3u8NielsenId3)[keyof typeof M3u8NielsenId3];
394
+ /**
395
+ * @public
396
+ * @enum
397
+ */
398
+ export declare const M3u8PcrControl: {
399
+ readonly CONFIGURED_PCR_PERIOD: "CONFIGURED_PCR_PERIOD";
400
+ readonly PCR_EVERY_PES_PACKET: "PCR_EVERY_PES_PACKET";
401
+ };
402
+ /**
403
+ * @public
404
+ */
405
+ export type M3u8PcrControl = (typeof M3u8PcrControl)[keyof typeof M3u8PcrControl];
406
+ /**
407
+ * @public
408
+ * @enum
409
+ */
410
+ export declare const M3u8Scte35Source: {
411
+ readonly NONE: "NONE";
412
+ readonly PASSTHROUGH: "PASSTHROUGH";
413
+ };
414
+ /**
415
+ * @public
416
+ */
417
+ export type M3u8Scte35Source = (typeof M3u8Scte35Source)[keyof typeof M3u8Scte35Source];
418
+ /**
419
+ * @public
420
+ * @enum
421
+ */
422
+ export declare const TimedMetadata: {
423
+ readonly NONE: "NONE";
424
+ readonly PASSTHROUGH: "PASSTHROUGH";
425
+ };
426
+ /**
427
+ * @public
428
+ */
429
+ export type TimedMetadata = (typeof TimedMetadata)[keyof typeof TimedMetadata];
340
430
  /**
341
431
  * @public
342
432
  * These settings relate to the MPEG-2 transport stream (MPEG2-TS) container for the MPEG2-TS segments in your HLS outputs.
@@ -421,39 +511,64 @@ export interface M3u8Settings {
421
511
  }
422
512
  /**
423
513
  * @public
514
+ * @enum
424
515
  */
425
- export declare enum MovClapAtom {
426
- EXCLUDE = "EXCLUDE",
427
- INCLUDE = "INCLUDE"
428
- }
516
+ export declare const MovClapAtom: {
517
+ readonly EXCLUDE: "EXCLUDE";
518
+ readonly INCLUDE: "INCLUDE";
519
+ };
429
520
  /**
430
521
  * @public
431
522
  */
432
- export declare enum MovCslgAtom {
433
- EXCLUDE = "EXCLUDE",
434
- INCLUDE = "INCLUDE"
435
- }
523
+ export type MovClapAtom = (typeof MovClapAtom)[keyof typeof MovClapAtom];
436
524
  /**
437
525
  * @public
526
+ * @enum
438
527
  */
439
- export declare enum MovMpeg2FourCCControl {
440
- MPEG = "MPEG",
441
- XDCAM = "XDCAM"
442
- }
528
+ export declare const MovCslgAtom: {
529
+ readonly EXCLUDE: "EXCLUDE";
530
+ readonly INCLUDE: "INCLUDE";
531
+ };
443
532
  /**
444
533
  * @public
445
534
  */
446
- export declare enum MovPaddingControl {
447
- NONE = "NONE",
448
- OMNEON = "OMNEON"
449
- }
535
+ export type MovCslgAtom = (typeof MovCslgAtom)[keyof typeof MovCslgAtom];
450
536
  /**
451
537
  * @public
538
+ * @enum
452
539
  */
453
- export declare enum MovReference {
454
- EXTERNAL = "EXTERNAL",
455
- SELF_CONTAINED = "SELF_CONTAINED"
456
- }
540
+ export declare const MovMpeg2FourCCControl: {
541
+ readonly MPEG: "MPEG";
542
+ readonly XDCAM: "XDCAM";
543
+ };
544
+ /**
545
+ * @public
546
+ */
547
+ export type MovMpeg2FourCCControl = (typeof MovMpeg2FourCCControl)[keyof typeof MovMpeg2FourCCControl];
548
+ /**
549
+ * @public
550
+ * @enum
551
+ */
552
+ export declare const MovPaddingControl: {
553
+ readonly NONE: "NONE";
554
+ readonly OMNEON: "OMNEON";
555
+ };
556
+ /**
557
+ * @public
558
+ */
559
+ export type MovPaddingControl = (typeof MovPaddingControl)[keyof typeof MovPaddingControl];
560
+ /**
561
+ * @public
562
+ * @enum
563
+ */
564
+ export declare const MovReference: {
565
+ readonly EXTERNAL: "EXTERNAL";
566
+ readonly SELF_CONTAINED: "SELF_CONTAINED";
567
+ };
568
+ /**
569
+ * @public
570
+ */
571
+ export type MovReference = (typeof MovReference)[keyof typeof MovReference];
457
572
  /**
458
573
  * @public
459
574
  * These settings relate to your QuickTime MOV output container.
@@ -482,25 +597,40 @@ export interface MovSettings {
482
597
  }
483
598
  /**
484
599
  * @public
600
+ * @enum
485
601
  */
486
- export declare enum Mp4CslgAtom {
487
- EXCLUDE = "EXCLUDE",
488
- INCLUDE = "INCLUDE"
489
- }
602
+ export declare const Mp4CslgAtom: {
603
+ readonly EXCLUDE: "EXCLUDE";
604
+ readonly INCLUDE: "INCLUDE";
605
+ };
490
606
  /**
491
607
  * @public
492
608
  */
493
- export declare enum Mp4FreeSpaceBox {
494
- EXCLUDE = "EXCLUDE",
495
- INCLUDE = "INCLUDE"
496
- }
609
+ export type Mp4CslgAtom = (typeof Mp4CslgAtom)[keyof typeof Mp4CslgAtom];
497
610
  /**
498
611
  * @public
612
+ * @enum
499
613
  */
500
- export declare enum Mp4MoovPlacement {
501
- NORMAL = "NORMAL",
502
- PROGRESSIVE_DOWNLOAD = "PROGRESSIVE_DOWNLOAD"
503
- }
614
+ export declare const Mp4FreeSpaceBox: {
615
+ readonly EXCLUDE: "EXCLUDE";
616
+ readonly INCLUDE: "INCLUDE";
617
+ };
618
+ /**
619
+ * @public
620
+ */
621
+ export type Mp4FreeSpaceBox = (typeof Mp4FreeSpaceBox)[keyof typeof Mp4FreeSpaceBox];
622
+ /**
623
+ * @public
624
+ * @enum
625
+ */
626
+ export declare const Mp4MoovPlacement: {
627
+ readonly NORMAL: "NORMAL";
628
+ readonly PROGRESSIVE_DOWNLOAD: "PROGRESSIVE_DOWNLOAD";
629
+ };
630
+ /**
631
+ * @public
632
+ */
633
+ export type Mp4MoovPlacement = (typeof Mp4MoovPlacement)[keyof typeof Mp4MoovPlacement];
504
634
  /**
505
635
  * @public
506
636
  * These settings relate to your MP4 output container. You can create audio only outputs with this container. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/supported-codecs-containers-audio-only.html#output-codecs-and-containers-supported-for-audio-only.
@@ -533,67 +663,112 @@ export interface Mp4Settings {
533
663
  }
534
664
  /**
535
665
  * @public
666
+ * @enum
536
667
  */
537
- export declare enum MpdAccessibilityCaptionHints {
538
- EXCLUDE = "EXCLUDE",
539
- INCLUDE = "INCLUDE"
540
- }
668
+ export declare const MpdAccessibilityCaptionHints: {
669
+ readonly EXCLUDE: "EXCLUDE";
670
+ readonly INCLUDE: "INCLUDE";
671
+ };
541
672
  /**
542
673
  * @public
543
674
  */
544
- export declare enum MpdAudioDuration {
545
- DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
546
- MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
547
- }
675
+ export type MpdAccessibilityCaptionHints = (typeof MpdAccessibilityCaptionHints)[keyof typeof MpdAccessibilityCaptionHints];
548
676
  /**
549
677
  * @public
678
+ * @enum
550
679
  */
551
- export declare enum MpdCaptionContainerType {
552
- FRAGMENTED_MP4 = "FRAGMENTED_MP4",
553
- RAW = "RAW"
554
- }
680
+ export declare const MpdAudioDuration: {
681
+ readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
682
+ readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
683
+ };
555
684
  /**
556
685
  * @public
557
686
  */
558
- export declare enum MpdKlvMetadata {
559
- NONE = "NONE",
560
- PASSTHROUGH = "PASSTHROUGH"
561
- }
687
+ export type MpdAudioDuration = (typeof MpdAudioDuration)[keyof typeof MpdAudioDuration];
562
688
  /**
563
689
  * @public
690
+ * @enum
564
691
  */
565
- export declare enum MpdManifestMetadataSignaling {
566
- DISABLED = "DISABLED",
567
- ENABLED = "ENABLED"
568
- }
692
+ export declare const MpdCaptionContainerType: {
693
+ readonly FRAGMENTED_MP4: "FRAGMENTED_MP4";
694
+ readonly RAW: "RAW";
695
+ };
569
696
  /**
570
697
  * @public
571
698
  */
572
- export declare enum MpdScte35Esam {
573
- INSERT = "INSERT",
574
- NONE = "NONE"
575
- }
699
+ export type MpdCaptionContainerType = (typeof MpdCaptionContainerType)[keyof typeof MpdCaptionContainerType];
576
700
  /**
577
701
  * @public
702
+ * @enum
578
703
  */
579
- export declare enum MpdScte35Source {
580
- NONE = "NONE",
581
- PASSTHROUGH = "PASSTHROUGH"
582
- }
704
+ export declare const MpdKlvMetadata: {
705
+ readonly NONE: "NONE";
706
+ readonly PASSTHROUGH: "PASSTHROUGH";
707
+ };
583
708
  /**
584
709
  * @public
585
710
  */
586
- export declare enum MpdTimedMetadata {
587
- NONE = "NONE",
588
- PASSTHROUGH = "PASSTHROUGH"
589
- }
711
+ export type MpdKlvMetadata = (typeof MpdKlvMetadata)[keyof typeof MpdKlvMetadata];
590
712
  /**
591
713
  * @public
714
+ * @enum
592
715
  */
593
- export declare enum MpdTimedMetadataBoxVersion {
594
- VERSION_0 = "VERSION_0",
595
- VERSION_1 = "VERSION_1"
596
- }
716
+ export declare const MpdManifestMetadataSignaling: {
717
+ readonly DISABLED: "DISABLED";
718
+ readonly ENABLED: "ENABLED";
719
+ };
720
+ /**
721
+ * @public
722
+ */
723
+ export type MpdManifestMetadataSignaling = (typeof MpdManifestMetadataSignaling)[keyof typeof MpdManifestMetadataSignaling];
724
+ /**
725
+ * @public
726
+ * @enum
727
+ */
728
+ export declare const MpdScte35Esam: {
729
+ readonly INSERT: "INSERT";
730
+ readonly NONE: "NONE";
731
+ };
732
+ /**
733
+ * @public
734
+ */
735
+ export type MpdScte35Esam = (typeof MpdScte35Esam)[keyof typeof MpdScte35Esam];
736
+ /**
737
+ * @public
738
+ * @enum
739
+ */
740
+ export declare const MpdScte35Source: {
741
+ readonly NONE: "NONE";
742
+ readonly PASSTHROUGH: "PASSTHROUGH";
743
+ };
744
+ /**
745
+ * @public
746
+ */
747
+ export type MpdScte35Source = (typeof MpdScte35Source)[keyof typeof MpdScte35Source];
748
+ /**
749
+ * @public
750
+ * @enum
751
+ */
752
+ export declare const MpdTimedMetadata: {
753
+ readonly NONE: "NONE";
754
+ readonly PASSTHROUGH: "PASSTHROUGH";
755
+ };
756
+ /**
757
+ * @public
758
+ */
759
+ export type MpdTimedMetadata = (typeof MpdTimedMetadata)[keyof typeof MpdTimedMetadata];
760
+ /**
761
+ * @public
762
+ * @enum
763
+ */
764
+ export declare const MpdTimedMetadataBoxVersion: {
765
+ readonly VERSION_0: "VERSION_0";
766
+ readonly VERSION_1: "VERSION_1";
767
+ };
768
+ /**
769
+ * @public
770
+ */
771
+ export type MpdTimedMetadataBoxVersion = (typeof MpdTimedMetadataBoxVersion)[keyof typeof MpdTimedMetadataBoxVersion];
597
772
  /**
598
773
  * @public
599
774
  * These settings relate to the fragmented MP4 container for the segments in your DASH outputs.
@@ -649,27 +824,42 @@ export interface MpdSettings {
649
824
  }
650
825
  /**
651
826
  * @public
827
+ * @enum
652
828
  */
653
- export declare enum MxfAfdSignaling {
654
- COPY_FROM_VIDEO = "COPY_FROM_VIDEO",
655
- NO_COPY = "NO_COPY"
656
- }
829
+ export declare const MxfAfdSignaling: {
830
+ readonly COPY_FROM_VIDEO: "COPY_FROM_VIDEO";
831
+ readonly NO_COPY: "NO_COPY";
832
+ };
657
833
  /**
658
834
  * @public
659
835
  */
660
- export declare enum MxfProfile {
661
- D_10 = "D_10",
662
- OP1A = "OP1A",
663
- XAVC = "XAVC",
664
- XDCAM = "XDCAM"
665
- }
836
+ export type MxfAfdSignaling = (typeof MxfAfdSignaling)[keyof typeof MxfAfdSignaling];
666
837
  /**
667
838
  * @public
839
+ * @enum
668
840
  */
669
- export declare enum MxfXavcDurationMode {
670
- ALLOW_ANY_DURATION = "ALLOW_ANY_DURATION",
671
- DROP_FRAMES_FOR_COMPLIANCE = "DROP_FRAMES_FOR_COMPLIANCE"
672
- }
841
+ export declare const MxfProfile: {
842
+ readonly D_10: "D_10";
843
+ readonly OP1A: "OP1A";
844
+ readonly XAVC: "XAVC";
845
+ readonly XDCAM: "XDCAM";
846
+ };
847
+ /**
848
+ * @public
849
+ */
850
+ export type MxfProfile = (typeof MxfProfile)[keyof typeof MxfProfile];
851
+ /**
852
+ * @public
853
+ * @enum
854
+ */
855
+ export declare const MxfXavcDurationMode: {
856
+ readonly ALLOW_ANY_DURATION: "ALLOW_ANY_DURATION";
857
+ readonly DROP_FRAMES_FOR_COMPLIANCE: "DROP_FRAMES_FOR_COMPLIANCE";
858
+ };
859
+ /**
860
+ * @public
861
+ */
862
+ export type MxfXavcDurationMode = (typeof MxfXavcDurationMode)[keyof typeof MxfXavcDurationMode];
673
863
  /**
674
864
  * @public
675
865
  * Specify the XAVC profile settings for MXF outputs when you set your MXF profile to XAVC.
@@ -746,34 +936,54 @@ export interface ContainerSettings {
746
936
  }
747
937
  /**
748
938
  * @public
939
+ * @enum
749
940
  */
750
- export declare enum HlsAudioOnlyContainer {
751
- AUTOMATIC = "AUTOMATIC",
752
- M2TS = "M2TS"
753
- }
941
+ export declare const HlsAudioOnlyContainer: {
942
+ readonly AUTOMATIC: "AUTOMATIC";
943
+ readonly M2TS: "M2TS";
944
+ };
754
945
  /**
755
946
  * @public
756
947
  */
757
- export declare enum HlsAudioTrackType {
758
- ALTERNATE_AUDIO_AUTO_SELECT = "ALTERNATE_AUDIO_AUTO_SELECT",
759
- ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT",
760
- ALTERNATE_AUDIO_NOT_AUTO_SELECT = "ALTERNATE_AUDIO_NOT_AUTO_SELECT",
761
- AUDIO_ONLY_VARIANT_STREAM = "AUDIO_ONLY_VARIANT_STREAM"
762
- }
948
+ export type HlsAudioOnlyContainer = (typeof HlsAudioOnlyContainer)[keyof typeof HlsAudioOnlyContainer];
763
949
  /**
764
950
  * @public
951
+ * @enum
765
952
  */
766
- export declare enum HlsDescriptiveVideoServiceFlag {
767
- DONT_FLAG = "DONT_FLAG",
768
- FLAG = "FLAG"
769
- }
953
+ export declare const HlsAudioTrackType: {
954
+ readonly ALTERNATE_AUDIO_AUTO_SELECT: "ALTERNATE_AUDIO_AUTO_SELECT";
955
+ readonly ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT";
956
+ readonly ALTERNATE_AUDIO_NOT_AUTO_SELECT: "ALTERNATE_AUDIO_NOT_AUTO_SELECT";
957
+ readonly AUDIO_ONLY_VARIANT_STREAM: "AUDIO_ONLY_VARIANT_STREAM";
958
+ };
770
959
  /**
771
960
  * @public
772
961
  */
773
- export declare enum HlsIFrameOnlyManifest {
774
- EXCLUDE = "EXCLUDE",
775
- INCLUDE = "INCLUDE"
776
- }
962
+ export type HlsAudioTrackType = (typeof HlsAudioTrackType)[keyof typeof HlsAudioTrackType];
963
+ /**
964
+ * @public
965
+ * @enum
966
+ */
967
+ export declare const HlsDescriptiveVideoServiceFlag: {
968
+ readonly DONT_FLAG: "DONT_FLAG";
969
+ readonly FLAG: "FLAG";
970
+ };
971
+ /**
972
+ * @public
973
+ */
974
+ export type HlsDescriptiveVideoServiceFlag = (typeof HlsDescriptiveVideoServiceFlag)[keyof typeof HlsDescriptiveVideoServiceFlag];
975
+ /**
976
+ * @public
977
+ * @enum
978
+ */
979
+ export declare const HlsIFrameOnlyManifest: {
980
+ readonly EXCLUDE: "EXCLUDE";
981
+ readonly INCLUDE: "INCLUDE";
982
+ };
983
+ /**
984
+ * @public
985
+ */
986
+ export type HlsIFrameOnlyManifest = (typeof HlsIFrameOnlyManifest)[keyof typeof HlsIFrameOnlyManifest];
777
987
  /**
778
988
  * @public
779
989
  * Settings for HLS output groups
@@ -820,52 +1030,82 @@ export interface OutputSettings {
820
1030
  }
821
1031
  /**
822
1032
  * @public
1033
+ * @enum
823
1034
  */
824
- export declare enum AfdSignaling {
825
- AUTO = "AUTO",
826
- FIXED = "FIXED",
827
- NONE = "NONE"
828
- }
1035
+ export declare const AfdSignaling: {
1036
+ readonly AUTO: "AUTO";
1037
+ readonly FIXED: "FIXED";
1038
+ readonly NONE: "NONE";
1039
+ };
829
1040
  /**
830
1041
  * @public
831
1042
  */
832
- export declare enum AntiAlias {
833
- DISABLED = "DISABLED",
834
- ENABLED = "ENABLED"
835
- }
1043
+ export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
836
1044
  /**
837
1045
  * @public
1046
+ * @enum
838
1047
  */
839
- export declare enum Av1AdaptiveQuantization {
840
- HIGH = "HIGH",
841
- HIGHER = "HIGHER",
842
- LOW = "LOW",
843
- MAX = "MAX",
844
- MEDIUM = "MEDIUM",
845
- OFF = "OFF"
846
- }
1048
+ export declare const AntiAlias: {
1049
+ readonly DISABLED: "DISABLED";
1050
+ readonly ENABLED: "ENABLED";
1051
+ };
847
1052
  /**
848
1053
  * @public
849
1054
  */
850
- export declare enum Av1BitDepth {
851
- BIT_10 = "BIT_10",
852
- BIT_8 = "BIT_8"
853
- }
1055
+ export type AntiAlias = (typeof AntiAlias)[keyof typeof AntiAlias];
854
1056
  /**
855
1057
  * @public
1058
+ * @enum
856
1059
  */
857
- export declare enum Av1FramerateControl {
858
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
859
- SPECIFIED = "SPECIFIED"
860
- }
1060
+ export declare const Av1AdaptiveQuantization: {
1061
+ readonly HIGH: "HIGH";
1062
+ readonly HIGHER: "HIGHER";
1063
+ readonly LOW: "LOW";
1064
+ readonly MAX: "MAX";
1065
+ readonly MEDIUM: "MEDIUM";
1066
+ readonly OFF: "OFF";
1067
+ };
861
1068
  /**
862
1069
  * @public
863
1070
  */
864
- export declare enum Av1FramerateConversionAlgorithm {
865
- DUPLICATE_DROP = "DUPLICATE_DROP",
866
- FRAMEFORMER = "FRAMEFORMER",
867
- INTERPOLATE = "INTERPOLATE"
868
- }
1071
+ export type Av1AdaptiveQuantization = (typeof Av1AdaptiveQuantization)[keyof typeof Av1AdaptiveQuantization];
1072
+ /**
1073
+ * @public
1074
+ * @enum
1075
+ */
1076
+ export declare const Av1BitDepth: {
1077
+ readonly BIT_10: "BIT_10";
1078
+ readonly BIT_8: "BIT_8";
1079
+ };
1080
+ /**
1081
+ * @public
1082
+ */
1083
+ export type Av1BitDepth = (typeof Av1BitDepth)[keyof typeof Av1BitDepth];
1084
+ /**
1085
+ * @public
1086
+ * @enum
1087
+ */
1088
+ export declare const Av1FramerateControl: {
1089
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
1090
+ readonly SPECIFIED: "SPECIFIED";
1091
+ };
1092
+ /**
1093
+ * @public
1094
+ */
1095
+ export type Av1FramerateControl = (typeof Av1FramerateControl)[keyof typeof Av1FramerateControl];
1096
+ /**
1097
+ * @public
1098
+ * @enum
1099
+ */
1100
+ export declare const Av1FramerateConversionAlgorithm: {
1101
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
1102
+ readonly FRAMEFORMER: "FRAMEFORMER";
1103
+ readonly INTERPOLATE: "INTERPOLATE";
1104
+ };
1105
+ /**
1106
+ * @public
1107
+ */
1108
+ export type Av1FramerateConversionAlgorithm = (typeof Av1FramerateConversionAlgorithm)[keyof typeof Av1FramerateConversionAlgorithm];
869
1109
  /**
870
1110
  * @public
871
1111
  * Settings for quality-defined variable bitrate encoding with the AV1 codec. Use these settings only when you set QVBR for Rate control mode (RateControlMode).
@@ -882,17 +1122,27 @@ export interface Av1QvbrSettings {
882
1122
  }
883
1123
  /**
884
1124
  * @public
1125
+ * @enum
885
1126
  */
886
- export declare enum Av1RateControlMode {
887
- QVBR = "QVBR"
888
- }
1127
+ export declare const Av1RateControlMode: {
1128
+ readonly QVBR: "QVBR";
1129
+ };
889
1130
  /**
890
1131
  * @public
891
1132
  */
892
- export declare enum Av1SpatialAdaptiveQuantization {
893
- DISABLED = "DISABLED",
894
- ENABLED = "ENABLED"
895
- }
1133
+ export type Av1RateControlMode = (typeof Av1RateControlMode)[keyof typeof Av1RateControlMode];
1134
+ /**
1135
+ * @public
1136
+ * @enum
1137
+ */
1138
+ export declare const Av1SpatialAdaptiveQuantization: {
1139
+ readonly DISABLED: "DISABLED";
1140
+ readonly ENABLED: "ENABLED";
1141
+ };
1142
+ /**
1143
+ * @public
1144
+ */
1145
+ export type Av1SpatialAdaptiveQuantization = (typeof Av1SpatialAdaptiveQuantization)[keyof typeof Av1SpatialAdaptiveQuantization];
896
1146
  /**
897
1147
  * @public
898
1148
  * Required when you set Codec, under VideoDescription>CodecSettings to the value AV1.
@@ -953,20 +1203,30 @@ export interface Av1Settings {
953
1203
  }
954
1204
  /**
955
1205
  * @public
1206
+ * @enum
956
1207
  */
957
- export declare enum AvcIntraClass {
958
- CLASS_100 = "CLASS_100",
959
- CLASS_200 = "CLASS_200",
960
- CLASS_4K_2K = "CLASS_4K_2K",
961
- CLASS_50 = "CLASS_50"
962
- }
1208
+ export declare const AvcIntraClass: {
1209
+ readonly CLASS_100: "CLASS_100";
1210
+ readonly CLASS_200: "CLASS_200";
1211
+ readonly CLASS_4K_2K: "CLASS_4K_2K";
1212
+ readonly CLASS_50: "CLASS_50";
1213
+ };
963
1214
  /**
964
1215
  * @public
965
1216
  */
966
- export declare enum AvcIntraUhdQualityTuningLevel {
967
- MULTI_PASS = "MULTI_PASS",
968
- SINGLE_PASS = "SINGLE_PASS"
969
- }
1217
+ export type AvcIntraClass = (typeof AvcIntraClass)[keyof typeof AvcIntraClass];
1218
+ /**
1219
+ * @public
1220
+ * @enum
1221
+ */
1222
+ export declare const AvcIntraUhdQualityTuningLevel: {
1223
+ readonly MULTI_PASS: "MULTI_PASS";
1224
+ readonly SINGLE_PASS: "SINGLE_PASS";
1225
+ };
1226
+ /**
1227
+ * @public
1228
+ */
1229
+ export type AvcIntraUhdQualityTuningLevel = (typeof AvcIntraUhdQualityTuningLevel)[keyof typeof AvcIntraUhdQualityTuningLevel];
970
1230
  /**
971
1231
  * @public
972
1232
  * Optional when you set AVC-Intra class (avcIntraClass) to Class 4K/2K (CLASS_4K_2K). When you set AVC-Intra class to a different value, this object isn't allowed.
@@ -979,50 +1239,80 @@ export interface AvcIntraUhdSettings {
979
1239
  }
980
1240
  /**
981
1241
  * @public
1242
+ * @enum
982
1243
  */
983
- export declare enum AvcIntraFramerateControl {
984
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
985
- SPECIFIED = "SPECIFIED"
986
- }
1244
+ export declare const AvcIntraFramerateControl: {
1245
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
1246
+ readonly SPECIFIED: "SPECIFIED";
1247
+ };
987
1248
  /**
988
1249
  * @public
989
1250
  */
990
- export declare enum AvcIntraFramerateConversionAlgorithm {
991
- DUPLICATE_DROP = "DUPLICATE_DROP",
992
- FRAMEFORMER = "FRAMEFORMER",
993
- INTERPOLATE = "INTERPOLATE"
994
- }
1251
+ export type AvcIntraFramerateControl = (typeof AvcIntraFramerateControl)[keyof typeof AvcIntraFramerateControl];
995
1252
  /**
996
1253
  * @public
1254
+ * @enum
997
1255
  */
998
- export declare enum AvcIntraInterlaceMode {
999
- BOTTOM_FIELD = "BOTTOM_FIELD",
1000
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1001
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1002
- PROGRESSIVE = "PROGRESSIVE",
1003
- TOP_FIELD = "TOP_FIELD"
1004
- }
1256
+ export declare const AvcIntraFramerateConversionAlgorithm: {
1257
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
1258
+ readonly FRAMEFORMER: "FRAMEFORMER";
1259
+ readonly INTERPOLATE: "INTERPOLATE";
1260
+ };
1005
1261
  /**
1006
1262
  * @public
1007
1263
  */
1008
- export declare enum AvcIntraScanTypeConversionMode {
1009
- INTERLACED = "INTERLACED",
1010
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
1011
- }
1264
+ export type AvcIntraFramerateConversionAlgorithm = (typeof AvcIntraFramerateConversionAlgorithm)[keyof typeof AvcIntraFramerateConversionAlgorithm];
1012
1265
  /**
1013
1266
  * @public
1267
+ * @enum
1014
1268
  */
1015
- export declare enum AvcIntraSlowPal {
1016
- DISABLED = "DISABLED",
1017
- ENABLED = "ENABLED"
1018
- }
1269
+ export declare const AvcIntraInterlaceMode: {
1270
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
1271
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
1272
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
1273
+ readonly PROGRESSIVE: "PROGRESSIVE";
1274
+ readonly TOP_FIELD: "TOP_FIELD";
1275
+ };
1019
1276
  /**
1020
1277
  * @public
1021
1278
  */
1022
- export declare enum AvcIntraTelecine {
1023
- HARD = "HARD",
1024
- NONE = "NONE"
1025
- }
1279
+ export type AvcIntraInterlaceMode = (typeof AvcIntraInterlaceMode)[keyof typeof AvcIntraInterlaceMode];
1280
+ /**
1281
+ * @public
1282
+ * @enum
1283
+ */
1284
+ export declare const AvcIntraScanTypeConversionMode: {
1285
+ readonly INTERLACED: "INTERLACED";
1286
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
1287
+ };
1288
+ /**
1289
+ * @public
1290
+ */
1291
+ export type AvcIntraScanTypeConversionMode = (typeof AvcIntraScanTypeConversionMode)[keyof typeof AvcIntraScanTypeConversionMode];
1292
+ /**
1293
+ * @public
1294
+ * @enum
1295
+ */
1296
+ export declare const AvcIntraSlowPal: {
1297
+ readonly DISABLED: "DISABLED";
1298
+ readonly ENABLED: "ENABLED";
1299
+ };
1300
+ /**
1301
+ * @public
1302
+ */
1303
+ export type AvcIntraSlowPal = (typeof AvcIntraSlowPal)[keyof typeof AvcIntraSlowPal];
1304
+ /**
1305
+ * @public
1306
+ * @enum
1307
+ */
1308
+ export declare const AvcIntraTelecine: {
1309
+ readonly HARD: "HARD";
1310
+ readonly NONE: "NONE";
1311
+ };
1312
+ /**
1313
+ * @public
1314
+ */
1315
+ export type AvcIntraTelecine = (typeof AvcIntraTelecine)[keyof typeof AvcIntraTelecine];
1026
1316
  /**
1027
1317
  * @public
1028
1318
  * Required when you choose AVC-Intra for your output video codec. For more information about the AVC-Intra settings, see the relevant specification. For detailed information about SD and HD in AVC-Intra, see https://ieeexplore.ieee.org/document/7290936. For information about 4K/2K in AVC-Intra, see https://pro-av.panasonic.net/en/avc-ultra/AVC-ULTRAoverview.pdf.
@@ -1071,20 +1361,25 @@ export interface AvcIntraSettings {
1071
1361
  }
1072
1362
  /**
1073
1363
  * @public
1364
+ * @enum
1074
1365
  */
1075
- export declare enum VideoCodec {
1076
- AV1 = "AV1",
1077
- AVC_INTRA = "AVC_INTRA",
1078
- FRAME_CAPTURE = "FRAME_CAPTURE",
1079
- H_264 = "H_264",
1080
- H_265 = "H_265",
1081
- MPEG2 = "MPEG2",
1082
- PRORES = "PRORES",
1083
- VC3 = "VC3",
1084
- VP8 = "VP8",
1085
- VP9 = "VP9",
1086
- XAVC = "XAVC"
1087
- }
1366
+ export declare const VideoCodec: {
1367
+ readonly AV1: "AV1";
1368
+ readonly AVC_INTRA: "AVC_INTRA";
1369
+ readonly FRAME_CAPTURE: "FRAME_CAPTURE";
1370
+ readonly H_264: "H_264";
1371
+ readonly H_265: "H_265";
1372
+ readonly MPEG2: "MPEG2";
1373
+ readonly PRORES: "PRORES";
1374
+ readonly VC3: "VC3";
1375
+ readonly VP8: "VP8";
1376
+ readonly VP9: "VP9";
1377
+ readonly XAVC: "XAVC";
1378
+ };
1379
+ /**
1380
+ * @public
1381
+ */
1382
+ export type VideoCodec = (typeof VideoCodec)[keyof typeof VideoCodec];
1088
1383
  /**
1089
1384
  * @public
1090
1385
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value FRAME_CAPTURE.
@@ -1109,35 +1404,50 @@ export interface FrameCaptureSettings {
1109
1404
  }
1110
1405
  /**
1111
1406
  * @public
1407
+ * @enum
1112
1408
  */
1113
- export declare enum H264AdaptiveQuantization {
1114
- AUTO = "AUTO",
1115
- HIGH = "HIGH",
1116
- HIGHER = "HIGHER",
1117
- LOW = "LOW",
1118
- MAX = "MAX",
1119
- MEDIUM = "MEDIUM",
1120
- OFF = "OFF"
1121
- }
1409
+ export declare const H264AdaptiveQuantization: {
1410
+ readonly AUTO: "AUTO";
1411
+ readonly HIGH: "HIGH";
1412
+ readonly HIGHER: "HIGHER";
1413
+ readonly LOW: "LOW";
1414
+ readonly MAX: "MAX";
1415
+ readonly MEDIUM: "MEDIUM";
1416
+ readonly OFF: "OFF";
1417
+ };
1122
1418
  /**
1123
1419
  * @public
1124
1420
  */
1125
- export declare enum BandwidthReductionFilterSharpening {
1126
- HIGH = "HIGH",
1127
- LOW = "LOW",
1128
- MEDIUM = "MEDIUM",
1129
- OFF = "OFF"
1130
- }
1421
+ export type H264AdaptiveQuantization = (typeof H264AdaptiveQuantization)[keyof typeof H264AdaptiveQuantization];
1131
1422
  /**
1132
1423
  * @public
1424
+ * @enum
1133
1425
  */
1134
- export declare enum BandwidthReductionFilterStrength {
1135
- AUTO = "AUTO",
1136
- HIGH = "HIGH",
1137
- LOW = "LOW",
1138
- MEDIUM = "MEDIUM",
1139
- OFF = "OFF"
1140
- }
1426
+ export declare const BandwidthReductionFilterSharpening: {
1427
+ readonly HIGH: "HIGH";
1428
+ readonly LOW: "LOW";
1429
+ readonly MEDIUM: "MEDIUM";
1430
+ readonly OFF: "OFF";
1431
+ };
1432
+ /**
1433
+ * @public
1434
+ */
1435
+ export type BandwidthReductionFilterSharpening = (typeof BandwidthReductionFilterSharpening)[keyof typeof BandwidthReductionFilterSharpening];
1436
+ /**
1437
+ * @public
1438
+ * @enum
1439
+ */
1440
+ export declare const BandwidthReductionFilterStrength: {
1441
+ readonly AUTO: "AUTO";
1442
+ readonly HIGH: "HIGH";
1443
+ readonly LOW: "LOW";
1444
+ readonly MEDIUM: "MEDIUM";
1445
+ readonly OFF: "OFF";
1446
+ };
1447
+ /**
1448
+ * @public
1449
+ */
1450
+ export type BandwidthReductionFilterStrength = (typeof BandwidthReductionFilterStrength)[keyof typeof BandwidthReductionFilterStrength];
1141
1451
  /**
1142
1452
  * @public
1143
1453
  * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
@@ -1154,121 +1464,186 @@ export interface BandwidthReductionFilter {
1154
1464
  }
1155
1465
  /**
1156
1466
  * @public
1467
+ * @enum
1157
1468
  */
1158
- export declare enum H264CodecLevel {
1159
- AUTO = "AUTO",
1160
- LEVEL_1 = "LEVEL_1",
1161
- LEVEL_1_1 = "LEVEL_1_1",
1162
- LEVEL_1_2 = "LEVEL_1_2",
1163
- LEVEL_1_3 = "LEVEL_1_3",
1164
- LEVEL_2 = "LEVEL_2",
1165
- LEVEL_2_1 = "LEVEL_2_1",
1166
- LEVEL_2_2 = "LEVEL_2_2",
1167
- LEVEL_3 = "LEVEL_3",
1168
- LEVEL_3_1 = "LEVEL_3_1",
1169
- LEVEL_3_2 = "LEVEL_3_2",
1170
- LEVEL_4 = "LEVEL_4",
1171
- LEVEL_4_1 = "LEVEL_4_1",
1172
- LEVEL_4_2 = "LEVEL_4_2",
1173
- LEVEL_5 = "LEVEL_5",
1174
- LEVEL_5_1 = "LEVEL_5_1",
1175
- LEVEL_5_2 = "LEVEL_5_2"
1176
- }
1469
+ export declare const H264CodecLevel: {
1470
+ readonly AUTO: "AUTO";
1471
+ readonly LEVEL_1: "LEVEL_1";
1472
+ readonly LEVEL_1_1: "LEVEL_1_1";
1473
+ readonly LEVEL_1_2: "LEVEL_1_2";
1474
+ readonly LEVEL_1_3: "LEVEL_1_3";
1475
+ readonly LEVEL_2: "LEVEL_2";
1476
+ readonly LEVEL_2_1: "LEVEL_2_1";
1477
+ readonly LEVEL_2_2: "LEVEL_2_2";
1478
+ readonly LEVEL_3: "LEVEL_3";
1479
+ readonly LEVEL_3_1: "LEVEL_3_1";
1480
+ readonly LEVEL_3_2: "LEVEL_3_2";
1481
+ readonly LEVEL_4: "LEVEL_4";
1482
+ readonly LEVEL_4_1: "LEVEL_4_1";
1483
+ readonly LEVEL_4_2: "LEVEL_4_2";
1484
+ readonly LEVEL_5: "LEVEL_5";
1485
+ readonly LEVEL_5_1: "LEVEL_5_1";
1486
+ readonly LEVEL_5_2: "LEVEL_5_2";
1487
+ };
1177
1488
  /**
1178
1489
  * @public
1179
1490
  */
1180
- export declare enum H264CodecProfile {
1181
- BASELINE = "BASELINE",
1182
- HIGH = "HIGH",
1183
- HIGH_10BIT = "HIGH_10BIT",
1184
- HIGH_422 = "HIGH_422",
1185
- HIGH_422_10BIT = "HIGH_422_10BIT",
1186
- MAIN = "MAIN"
1187
- }
1491
+ export type H264CodecLevel = (typeof H264CodecLevel)[keyof typeof H264CodecLevel];
1188
1492
  /**
1189
1493
  * @public
1494
+ * @enum
1190
1495
  */
1191
- export declare enum H264DynamicSubGop {
1192
- ADAPTIVE = "ADAPTIVE",
1193
- STATIC = "STATIC"
1194
- }
1496
+ export declare const H264CodecProfile: {
1497
+ readonly BASELINE: "BASELINE";
1498
+ readonly HIGH: "HIGH";
1499
+ readonly HIGH_10BIT: "HIGH_10BIT";
1500
+ readonly HIGH_422: "HIGH_422";
1501
+ readonly HIGH_422_10BIT: "HIGH_422_10BIT";
1502
+ readonly MAIN: "MAIN";
1503
+ };
1195
1504
  /**
1196
1505
  * @public
1197
1506
  */
1198
- export declare enum H264EntropyEncoding {
1199
- CABAC = "CABAC",
1200
- CAVLC = "CAVLC"
1201
- }
1507
+ export type H264CodecProfile = (typeof H264CodecProfile)[keyof typeof H264CodecProfile];
1202
1508
  /**
1203
1509
  * @public
1510
+ * @enum
1204
1511
  */
1205
- export declare enum H264FieldEncoding {
1206
- FORCE_FIELD = "FORCE_FIELD",
1207
- MBAFF = "MBAFF",
1208
- PAFF = "PAFF"
1209
- }
1512
+ export declare const H264DynamicSubGop: {
1513
+ readonly ADAPTIVE: "ADAPTIVE";
1514
+ readonly STATIC: "STATIC";
1515
+ };
1210
1516
  /**
1211
1517
  * @public
1212
1518
  */
1213
- export declare enum H264FlickerAdaptiveQuantization {
1214
- DISABLED = "DISABLED",
1215
- ENABLED = "ENABLED"
1216
- }
1519
+ export type H264DynamicSubGop = (typeof H264DynamicSubGop)[keyof typeof H264DynamicSubGop];
1217
1520
  /**
1218
1521
  * @public
1522
+ * @enum
1219
1523
  */
1220
- export declare enum H264FramerateControl {
1221
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1222
- SPECIFIED = "SPECIFIED"
1223
- }
1524
+ export declare const H264EntropyEncoding: {
1525
+ readonly CABAC: "CABAC";
1526
+ readonly CAVLC: "CAVLC";
1527
+ };
1224
1528
  /**
1225
1529
  * @public
1226
1530
  */
1227
- export declare enum H264FramerateConversionAlgorithm {
1228
- DUPLICATE_DROP = "DUPLICATE_DROP",
1229
- FRAMEFORMER = "FRAMEFORMER",
1230
- INTERPOLATE = "INTERPOLATE"
1231
- }
1531
+ export type H264EntropyEncoding = (typeof H264EntropyEncoding)[keyof typeof H264EntropyEncoding];
1232
1532
  /**
1233
1533
  * @public
1534
+ * @enum
1234
1535
  */
1235
- export declare enum H264GopBReference {
1236
- DISABLED = "DISABLED",
1237
- ENABLED = "ENABLED"
1238
- }
1536
+ export declare const H264FieldEncoding: {
1537
+ readonly FORCE_FIELD: "FORCE_FIELD";
1538
+ readonly MBAFF: "MBAFF";
1539
+ readonly PAFF: "PAFF";
1540
+ };
1239
1541
  /**
1240
1542
  * @public
1241
1543
  */
1242
- export declare enum H264GopSizeUnits {
1243
- AUTO = "AUTO",
1244
- FRAMES = "FRAMES",
1245
- SECONDS = "SECONDS"
1246
- }
1544
+ export type H264FieldEncoding = (typeof H264FieldEncoding)[keyof typeof H264FieldEncoding];
1247
1545
  /**
1248
1546
  * @public
1547
+ * @enum
1249
1548
  */
1250
- export declare enum H264InterlaceMode {
1251
- BOTTOM_FIELD = "BOTTOM_FIELD",
1252
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1253
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1254
- PROGRESSIVE = "PROGRESSIVE",
1255
- TOP_FIELD = "TOP_FIELD"
1256
- }
1549
+ export declare const H264FlickerAdaptiveQuantization: {
1550
+ readonly DISABLED: "DISABLED";
1551
+ readonly ENABLED: "ENABLED";
1552
+ };
1257
1553
  /**
1258
1554
  * @public
1259
1555
  */
1260
- export declare enum H264ParControl {
1261
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1262
- SPECIFIED = "SPECIFIED"
1263
- }
1556
+ export type H264FlickerAdaptiveQuantization = (typeof H264FlickerAdaptiveQuantization)[keyof typeof H264FlickerAdaptiveQuantization];
1264
1557
  /**
1265
1558
  * @public
1559
+ * @enum
1266
1560
  */
1267
- export declare enum H264QualityTuningLevel {
1268
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1269
- SINGLE_PASS = "SINGLE_PASS",
1270
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ"
1271
- }
1561
+ export declare const H264FramerateControl: {
1562
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
1563
+ readonly SPECIFIED: "SPECIFIED";
1564
+ };
1565
+ /**
1566
+ * @public
1567
+ */
1568
+ export type H264FramerateControl = (typeof H264FramerateControl)[keyof typeof H264FramerateControl];
1569
+ /**
1570
+ * @public
1571
+ * @enum
1572
+ */
1573
+ export declare const H264FramerateConversionAlgorithm: {
1574
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
1575
+ readonly FRAMEFORMER: "FRAMEFORMER";
1576
+ readonly INTERPOLATE: "INTERPOLATE";
1577
+ };
1578
+ /**
1579
+ * @public
1580
+ */
1581
+ export type H264FramerateConversionAlgorithm = (typeof H264FramerateConversionAlgorithm)[keyof typeof H264FramerateConversionAlgorithm];
1582
+ /**
1583
+ * @public
1584
+ * @enum
1585
+ */
1586
+ export declare const H264GopBReference: {
1587
+ readonly DISABLED: "DISABLED";
1588
+ readonly ENABLED: "ENABLED";
1589
+ };
1590
+ /**
1591
+ * @public
1592
+ */
1593
+ export type H264GopBReference = (typeof H264GopBReference)[keyof typeof H264GopBReference];
1594
+ /**
1595
+ * @public
1596
+ * @enum
1597
+ */
1598
+ export declare const H264GopSizeUnits: {
1599
+ readonly AUTO: "AUTO";
1600
+ readonly FRAMES: "FRAMES";
1601
+ readonly SECONDS: "SECONDS";
1602
+ };
1603
+ /**
1604
+ * @public
1605
+ */
1606
+ export type H264GopSizeUnits = (typeof H264GopSizeUnits)[keyof typeof H264GopSizeUnits];
1607
+ /**
1608
+ * @public
1609
+ * @enum
1610
+ */
1611
+ export declare const H264InterlaceMode: {
1612
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
1613
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
1614
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
1615
+ readonly PROGRESSIVE: "PROGRESSIVE";
1616
+ readonly TOP_FIELD: "TOP_FIELD";
1617
+ };
1618
+ /**
1619
+ * @public
1620
+ */
1621
+ export type H264InterlaceMode = (typeof H264InterlaceMode)[keyof typeof H264InterlaceMode];
1622
+ /**
1623
+ * @public
1624
+ * @enum
1625
+ */
1626
+ export declare const H264ParControl: {
1627
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
1628
+ readonly SPECIFIED: "SPECIFIED";
1629
+ };
1630
+ /**
1631
+ * @public
1632
+ */
1633
+ export type H264ParControl = (typeof H264ParControl)[keyof typeof H264ParControl];
1634
+ /**
1635
+ * @public
1636
+ * @enum
1637
+ */
1638
+ export declare const H264QualityTuningLevel: {
1639
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
1640
+ readonly SINGLE_PASS: "SINGLE_PASS";
1641
+ readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
1642
+ };
1643
+ /**
1644
+ * @public
1645
+ */
1646
+ export type H264QualityTuningLevel = (typeof H264QualityTuningLevel)[keyof typeof H264QualityTuningLevel];
1272
1647
  /**
1273
1648
  * @public
1274
1649
  * Settings for quality-defined variable bitrate encoding with the H.264 codec. Use these settings only when you set QVBR for Rate control mode (RateControlMode).
@@ -1289,77 +1664,127 @@ export interface H264QvbrSettings {
1289
1664
  }
1290
1665
  /**
1291
1666
  * @public
1667
+ * @enum
1292
1668
  */
1293
- export declare enum H264RateControlMode {
1294
- CBR = "CBR",
1295
- QVBR = "QVBR",
1296
- VBR = "VBR"
1297
- }
1669
+ export declare const H264RateControlMode: {
1670
+ readonly CBR: "CBR";
1671
+ readonly QVBR: "QVBR";
1672
+ readonly VBR: "VBR";
1673
+ };
1298
1674
  /**
1299
1675
  * @public
1300
1676
  */
1301
- export declare enum H264RepeatPps {
1302
- DISABLED = "DISABLED",
1303
- ENABLED = "ENABLED"
1304
- }
1677
+ export type H264RateControlMode = (typeof H264RateControlMode)[keyof typeof H264RateControlMode];
1305
1678
  /**
1306
1679
  * @public
1680
+ * @enum
1307
1681
  */
1308
- export declare enum H264ScanTypeConversionMode {
1309
- INTERLACED = "INTERLACED",
1310
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
1311
- }
1682
+ export declare const H264RepeatPps: {
1683
+ readonly DISABLED: "DISABLED";
1684
+ readonly ENABLED: "ENABLED";
1685
+ };
1312
1686
  /**
1313
1687
  * @public
1314
1688
  */
1315
- export declare enum H264SceneChangeDetect {
1316
- DISABLED = "DISABLED",
1317
- ENABLED = "ENABLED",
1318
- TRANSITION_DETECTION = "TRANSITION_DETECTION"
1319
- }
1689
+ export type H264RepeatPps = (typeof H264RepeatPps)[keyof typeof H264RepeatPps];
1320
1690
  /**
1321
1691
  * @public
1692
+ * @enum
1322
1693
  */
1323
- export declare enum H264SlowPal {
1324
- DISABLED = "DISABLED",
1325
- ENABLED = "ENABLED"
1326
- }
1694
+ export declare const H264ScanTypeConversionMode: {
1695
+ readonly INTERLACED: "INTERLACED";
1696
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
1697
+ };
1327
1698
  /**
1328
1699
  * @public
1329
1700
  */
1330
- export declare enum H264SpatialAdaptiveQuantization {
1331
- DISABLED = "DISABLED",
1332
- ENABLED = "ENABLED"
1333
- }
1701
+ export type H264ScanTypeConversionMode = (typeof H264ScanTypeConversionMode)[keyof typeof H264ScanTypeConversionMode];
1334
1702
  /**
1335
1703
  * @public
1704
+ * @enum
1336
1705
  */
1337
- export declare enum H264Syntax {
1338
- DEFAULT = "DEFAULT",
1339
- RP2027 = "RP2027"
1340
- }
1706
+ export declare const H264SceneChangeDetect: {
1707
+ readonly DISABLED: "DISABLED";
1708
+ readonly ENABLED: "ENABLED";
1709
+ readonly TRANSITION_DETECTION: "TRANSITION_DETECTION";
1710
+ };
1341
1711
  /**
1342
1712
  * @public
1343
1713
  */
1344
- export declare enum H264Telecine {
1345
- HARD = "HARD",
1346
- NONE = "NONE",
1347
- SOFT = "SOFT"
1348
- }
1714
+ export type H264SceneChangeDetect = (typeof H264SceneChangeDetect)[keyof typeof H264SceneChangeDetect];
1349
1715
  /**
1350
1716
  * @public
1717
+ * @enum
1351
1718
  */
1352
- export declare enum H264TemporalAdaptiveQuantization {
1353
- DISABLED = "DISABLED",
1354
- ENABLED = "ENABLED"
1355
- }
1719
+ export declare const H264SlowPal: {
1720
+ readonly DISABLED: "DISABLED";
1721
+ readonly ENABLED: "ENABLED";
1722
+ };
1356
1723
  /**
1357
1724
  * @public
1358
1725
  */
1359
- export declare enum H264UnregisteredSeiTimecode {
1360
- DISABLED = "DISABLED",
1361
- ENABLED = "ENABLED"
1362
- }
1726
+ export type H264SlowPal = (typeof H264SlowPal)[keyof typeof H264SlowPal];
1727
+ /**
1728
+ * @public
1729
+ * @enum
1730
+ */
1731
+ export declare const H264SpatialAdaptiveQuantization: {
1732
+ readonly DISABLED: "DISABLED";
1733
+ readonly ENABLED: "ENABLED";
1734
+ };
1735
+ /**
1736
+ * @public
1737
+ */
1738
+ export type H264SpatialAdaptiveQuantization = (typeof H264SpatialAdaptiveQuantization)[keyof typeof H264SpatialAdaptiveQuantization];
1739
+ /**
1740
+ * @public
1741
+ * @enum
1742
+ */
1743
+ export declare const H264Syntax: {
1744
+ readonly DEFAULT: "DEFAULT";
1745
+ readonly RP2027: "RP2027";
1746
+ };
1747
+ /**
1748
+ * @public
1749
+ */
1750
+ export type H264Syntax = (typeof H264Syntax)[keyof typeof H264Syntax];
1751
+ /**
1752
+ * @public
1753
+ * @enum
1754
+ */
1755
+ export declare const H264Telecine: {
1756
+ readonly HARD: "HARD";
1757
+ readonly NONE: "NONE";
1758
+ readonly SOFT: "SOFT";
1759
+ };
1760
+ /**
1761
+ * @public
1762
+ */
1763
+ export type H264Telecine = (typeof H264Telecine)[keyof typeof H264Telecine];
1764
+ /**
1765
+ * @public
1766
+ * @enum
1767
+ */
1768
+ export declare const H264TemporalAdaptiveQuantization: {
1769
+ readonly DISABLED: "DISABLED";
1770
+ readonly ENABLED: "ENABLED";
1771
+ };
1772
+ /**
1773
+ * @public
1774
+ */
1775
+ export type H264TemporalAdaptiveQuantization = (typeof H264TemporalAdaptiveQuantization)[keyof typeof H264TemporalAdaptiveQuantization];
1776
+ /**
1777
+ * @public
1778
+ * @enum
1779
+ */
1780
+ export declare const H264UnregisteredSeiTimecode: {
1781
+ readonly DISABLED: "DISABLED";
1782
+ readonly ENABLED: "ENABLED";
1783
+ };
1784
+ /**
1785
+ * @public
1786
+ */
1787
+ export type H264UnregisteredSeiTimecode = (typeof H264UnregisteredSeiTimecode)[keyof typeof H264UnregisteredSeiTimecode];
1363
1788
  /**
1364
1789
  * @public
1365
1790
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value H_264.
@@ -1536,124 +1961,189 @@ export interface H264Settings {
1536
1961
  }
1537
1962
  /**
1538
1963
  * @public
1964
+ * @enum
1539
1965
  */
1540
- export declare enum H265AdaptiveQuantization {
1541
- AUTO = "AUTO",
1542
- HIGH = "HIGH",
1543
- HIGHER = "HIGHER",
1544
- LOW = "LOW",
1545
- MAX = "MAX",
1546
- MEDIUM = "MEDIUM",
1547
- OFF = "OFF"
1548
- }
1966
+ export declare const H265AdaptiveQuantization: {
1967
+ readonly AUTO: "AUTO";
1968
+ readonly HIGH: "HIGH";
1969
+ readonly HIGHER: "HIGHER";
1970
+ readonly LOW: "LOW";
1971
+ readonly MAX: "MAX";
1972
+ readonly MEDIUM: "MEDIUM";
1973
+ readonly OFF: "OFF";
1974
+ };
1549
1975
  /**
1550
1976
  * @public
1551
1977
  */
1552
- export declare enum H265AlternateTransferFunctionSei {
1553
- DISABLED = "DISABLED",
1554
- ENABLED = "ENABLED"
1555
- }
1978
+ export type H265AdaptiveQuantization = (typeof H265AdaptiveQuantization)[keyof typeof H265AdaptiveQuantization];
1556
1979
  /**
1557
1980
  * @public
1981
+ * @enum
1558
1982
  */
1559
- export declare enum H265CodecLevel {
1560
- AUTO = "AUTO",
1561
- LEVEL_1 = "LEVEL_1",
1562
- LEVEL_2 = "LEVEL_2",
1563
- LEVEL_2_1 = "LEVEL_2_1",
1564
- LEVEL_3 = "LEVEL_3",
1565
- LEVEL_3_1 = "LEVEL_3_1",
1566
- LEVEL_4 = "LEVEL_4",
1567
- LEVEL_4_1 = "LEVEL_4_1",
1568
- LEVEL_5 = "LEVEL_5",
1569
- LEVEL_5_1 = "LEVEL_5_1",
1570
- LEVEL_5_2 = "LEVEL_5_2",
1571
- LEVEL_6 = "LEVEL_6",
1572
- LEVEL_6_1 = "LEVEL_6_1",
1573
- LEVEL_6_2 = "LEVEL_6_2"
1574
- }
1983
+ export declare const H265AlternateTransferFunctionSei: {
1984
+ readonly DISABLED: "DISABLED";
1985
+ readonly ENABLED: "ENABLED";
1986
+ };
1575
1987
  /**
1576
1988
  * @public
1577
1989
  */
1578
- export declare enum H265CodecProfile {
1579
- MAIN10_HIGH = "MAIN10_HIGH",
1580
- MAIN10_MAIN = "MAIN10_MAIN",
1581
- MAIN_422_10BIT_HIGH = "MAIN_422_10BIT_HIGH",
1582
- MAIN_422_10BIT_MAIN = "MAIN_422_10BIT_MAIN",
1583
- MAIN_422_8BIT_HIGH = "MAIN_422_8BIT_HIGH",
1584
- MAIN_422_8BIT_MAIN = "MAIN_422_8BIT_MAIN",
1585
- MAIN_HIGH = "MAIN_HIGH",
1586
- MAIN_MAIN = "MAIN_MAIN"
1587
- }
1990
+ export type H265AlternateTransferFunctionSei = (typeof H265AlternateTransferFunctionSei)[keyof typeof H265AlternateTransferFunctionSei];
1588
1991
  /**
1589
1992
  * @public
1993
+ * @enum
1590
1994
  */
1591
- export declare enum H265DynamicSubGop {
1592
- ADAPTIVE = "ADAPTIVE",
1593
- STATIC = "STATIC"
1594
- }
1995
+ export declare const H265CodecLevel: {
1996
+ readonly AUTO: "AUTO";
1997
+ readonly LEVEL_1: "LEVEL_1";
1998
+ readonly LEVEL_2: "LEVEL_2";
1999
+ readonly LEVEL_2_1: "LEVEL_2_1";
2000
+ readonly LEVEL_3: "LEVEL_3";
2001
+ readonly LEVEL_3_1: "LEVEL_3_1";
2002
+ readonly LEVEL_4: "LEVEL_4";
2003
+ readonly LEVEL_4_1: "LEVEL_4_1";
2004
+ readonly LEVEL_5: "LEVEL_5";
2005
+ readonly LEVEL_5_1: "LEVEL_5_1";
2006
+ readonly LEVEL_5_2: "LEVEL_5_2";
2007
+ readonly LEVEL_6: "LEVEL_6";
2008
+ readonly LEVEL_6_1: "LEVEL_6_1";
2009
+ readonly LEVEL_6_2: "LEVEL_6_2";
2010
+ };
1595
2011
  /**
1596
2012
  * @public
1597
2013
  */
1598
- export declare enum H265FlickerAdaptiveQuantization {
1599
- DISABLED = "DISABLED",
1600
- ENABLED = "ENABLED"
1601
- }
2014
+ export type H265CodecLevel = (typeof H265CodecLevel)[keyof typeof H265CodecLevel];
1602
2015
  /**
1603
2016
  * @public
2017
+ * @enum
1604
2018
  */
1605
- export declare enum H265FramerateControl {
1606
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1607
- SPECIFIED = "SPECIFIED"
1608
- }
2019
+ export declare const H265CodecProfile: {
2020
+ readonly MAIN10_HIGH: "MAIN10_HIGH";
2021
+ readonly MAIN10_MAIN: "MAIN10_MAIN";
2022
+ readonly MAIN_422_10BIT_HIGH: "MAIN_422_10BIT_HIGH";
2023
+ readonly MAIN_422_10BIT_MAIN: "MAIN_422_10BIT_MAIN";
2024
+ readonly MAIN_422_8BIT_HIGH: "MAIN_422_8BIT_HIGH";
2025
+ readonly MAIN_422_8BIT_MAIN: "MAIN_422_8BIT_MAIN";
2026
+ readonly MAIN_HIGH: "MAIN_HIGH";
2027
+ readonly MAIN_MAIN: "MAIN_MAIN";
2028
+ };
1609
2029
  /**
1610
2030
  * @public
1611
2031
  */
1612
- export declare enum H265FramerateConversionAlgorithm {
1613
- DUPLICATE_DROP = "DUPLICATE_DROP",
1614
- FRAMEFORMER = "FRAMEFORMER",
1615
- INTERPOLATE = "INTERPOLATE"
1616
- }
2032
+ export type H265CodecProfile = (typeof H265CodecProfile)[keyof typeof H265CodecProfile];
1617
2033
  /**
1618
2034
  * @public
2035
+ * @enum
1619
2036
  */
1620
- export declare enum H265GopBReference {
1621
- DISABLED = "DISABLED",
1622
- ENABLED = "ENABLED"
1623
- }
2037
+ export declare const H265DynamicSubGop: {
2038
+ readonly ADAPTIVE: "ADAPTIVE";
2039
+ readonly STATIC: "STATIC";
2040
+ };
1624
2041
  /**
1625
2042
  * @public
1626
2043
  */
1627
- export declare enum H265GopSizeUnits {
1628
- AUTO = "AUTO",
1629
- FRAMES = "FRAMES",
1630
- SECONDS = "SECONDS"
1631
- }
2044
+ export type H265DynamicSubGop = (typeof H265DynamicSubGop)[keyof typeof H265DynamicSubGop];
1632
2045
  /**
1633
2046
  * @public
2047
+ * @enum
1634
2048
  */
1635
- export declare enum H265InterlaceMode {
1636
- BOTTOM_FIELD = "BOTTOM_FIELD",
1637
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1638
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1639
- PROGRESSIVE = "PROGRESSIVE",
1640
- TOP_FIELD = "TOP_FIELD"
1641
- }
2049
+ export declare const H265FlickerAdaptiveQuantization: {
2050
+ readonly DISABLED: "DISABLED";
2051
+ readonly ENABLED: "ENABLED";
2052
+ };
1642
2053
  /**
1643
2054
  * @public
1644
2055
  */
1645
- export declare enum H265ParControl {
1646
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1647
- SPECIFIED = "SPECIFIED"
1648
- }
2056
+ export type H265FlickerAdaptiveQuantization = (typeof H265FlickerAdaptiveQuantization)[keyof typeof H265FlickerAdaptiveQuantization];
1649
2057
  /**
1650
2058
  * @public
2059
+ * @enum
1651
2060
  */
1652
- export declare enum H265QualityTuningLevel {
1653
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
1654
- SINGLE_PASS = "SINGLE_PASS",
1655
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ"
1656
- }
2061
+ export declare const H265FramerateControl: {
2062
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2063
+ readonly SPECIFIED: "SPECIFIED";
2064
+ };
2065
+ /**
2066
+ * @public
2067
+ */
2068
+ export type H265FramerateControl = (typeof H265FramerateControl)[keyof typeof H265FramerateControl];
2069
+ /**
2070
+ * @public
2071
+ * @enum
2072
+ */
2073
+ export declare const H265FramerateConversionAlgorithm: {
2074
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
2075
+ readonly FRAMEFORMER: "FRAMEFORMER";
2076
+ readonly INTERPOLATE: "INTERPOLATE";
2077
+ };
2078
+ /**
2079
+ * @public
2080
+ */
2081
+ export type H265FramerateConversionAlgorithm = (typeof H265FramerateConversionAlgorithm)[keyof typeof H265FramerateConversionAlgorithm];
2082
+ /**
2083
+ * @public
2084
+ * @enum
2085
+ */
2086
+ export declare const H265GopBReference: {
2087
+ readonly DISABLED: "DISABLED";
2088
+ readonly ENABLED: "ENABLED";
2089
+ };
2090
+ /**
2091
+ * @public
2092
+ */
2093
+ export type H265GopBReference = (typeof H265GopBReference)[keyof typeof H265GopBReference];
2094
+ /**
2095
+ * @public
2096
+ * @enum
2097
+ */
2098
+ export declare const H265GopSizeUnits: {
2099
+ readonly AUTO: "AUTO";
2100
+ readonly FRAMES: "FRAMES";
2101
+ readonly SECONDS: "SECONDS";
2102
+ };
2103
+ /**
2104
+ * @public
2105
+ */
2106
+ export type H265GopSizeUnits = (typeof H265GopSizeUnits)[keyof typeof H265GopSizeUnits];
2107
+ /**
2108
+ * @public
2109
+ * @enum
2110
+ */
2111
+ export declare const H265InterlaceMode: {
2112
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
2113
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
2114
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
2115
+ readonly PROGRESSIVE: "PROGRESSIVE";
2116
+ readonly TOP_FIELD: "TOP_FIELD";
2117
+ };
2118
+ /**
2119
+ * @public
2120
+ */
2121
+ export type H265InterlaceMode = (typeof H265InterlaceMode)[keyof typeof H265InterlaceMode];
2122
+ /**
2123
+ * @public
2124
+ * @enum
2125
+ */
2126
+ export declare const H265ParControl: {
2127
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2128
+ readonly SPECIFIED: "SPECIFIED";
2129
+ };
2130
+ /**
2131
+ * @public
2132
+ */
2133
+ export type H265ParControl = (typeof H265ParControl)[keyof typeof H265ParControl];
2134
+ /**
2135
+ * @public
2136
+ * @enum
2137
+ */
2138
+ export declare const H265QualityTuningLevel: {
2139
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
2140
+ readonly SINGLE_PASS: "SINGLE_PASS";
2141
+ readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
2142
+ };
2143
+ /**
2144
+ * @public
2145
+ */
2146
+ export type H265QualityTuningLevel = (typeof H265QualityTuningLevel)[keyof typeof H265QualityTuningLevel];
1657
2147
  /**
1658
2148
  * @public
1659
2149
  * Settings for quality-defined variable bitrate encoding with the H.265 codec. Use these settings only when you set QVBR for Rate control mode (RateControlMode).
@@ -1674,92 +2164,152 @@ export interface H265QvbrSettings {
1674
2164
  }
1675
2165
  /**
1676
2166
  * @public
2167
+ * @enum
1677
2168
  */
1678
- export declare enum H265RateControlMode {
1679
- CBR = "CBR",
1680
- QVBR = "QVBR",
1681
- VBR = "VBR"
1682
- }
2169
+ export declare const H265RateControlMode: {
2170
+ readonly CBR: "CBR";
2171
+ readonly QVBR: "QVBR";
2172
+ readonly VBR: "VBR";
2173
+ };
1683
2174
  /**
1684
2175
  * @public
1685
2176
  */
1686
- export declare enum H265SampleAdaptiveOffsetFilterMode {
1687
- ADAPTIVE = "ADAPTIVE",
1688
- DEFAULT = "DEFAULT",
1689
- OFF = "OFF"
1690
- }
2177
+ export type H265RateControlMode = (typeof H265RateControlMode)[keyof typeof H265RateControlMode];
1691
2178
  /**
1692
2179
  * @public
2180
+ * @enum
1693
2181
  */
1694
- export declare enum H265ScanTypeConversionMode {
1695
- INTERLACED = "INTERLACED",
1696
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
1697
- }
2182
+ export declare const H265SampleAdaptiveOffsetFilterMode: {
2183
+ readonly ADAPTIVE: "ADAPTIVE";
2184
+ readonly DEFAULT: "DEFAULT";
2185
+ readonly OFF: "OFF";
2186
+ };
1698
2187
  /**
1699
2188
  * @public
1700
2189
  */
1701
- export declare enum H265SceneChangeDetect {
1702
- DISABLED = "DISABLED",
1703
- ENABLED = "ENABLED",
1704
- TRANSITION_DETECTION = "TRANSITION_DETECTION"
1705
- }
2190
+ export type H265SampleAdaptiveOffsetFilterMode = (typeof H265SampleAdaptiveOffsetFilterMode)[keyof typeof H265SampleAdaptiveOffsetFilterMode];
1706
2191
  /**
1707
2192
  * @public
2193
+ * @enum
1708
2194
  */
1709
- export declare enum H265SlowPal {
1710
- DISABLED = "DISABLED",
1711
- ENABLED = "ENABLED"
1712
- }
2195
+ export declare const H265ScanTypeConversionMode: {
2196
+ readonly INTERLACED: "INTERLACED";
2197
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
2198
+ };
1713
2199
  /**
1714
2200
  * @public
1715
2201
  */
1716
- export declare enum H265SpatialAdaptiveQuantization {
1717
- DISABLED = "DISABLED",
1718
- ENABLED = "ENABLED"
1719
- }
2202
+ export type H265ScanTypeConversionMode = (typeof H265ScanTypeConversionMode)[keyof typeof H265ScanTypeConversionMode];
1720
2203
  /**
1721
2204
  * @public
2205
+ * @enum
1722
2206
  */
1723
- export declare enum H265Telecine {
1724
- HARD = "HARD",
1725
- NONE = "NONE",
1726
- SOFT = "SOFT"
1727
- }
2207
+ export declare const H265SceneChangeDetect: {
2208
+ readonly DISABLED: "DISABLED";
2209
+ readonly ENABLED: "ENABLED";
2210
+ readonly TRANSITION_DETECTION: "TRANSITION_DETECTION";
2211
+ };
1728
2212
  /**
1729
2213
  * @public
1730
2214
  */
1731
- export declare enum H265TemporalAdaptiveQuantization {
1732
- DISABLED = "DISABLED",
1733
- ENABLED = "ENABLED"
1734
- }
2215
+ export type H265SceneChangeDetect = (typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
1735
2216
  /**
1736
2217
  * @public
2218
+ * @enum
1737
2219
  */
1738
- export declare enum H265TemporalIds {
1739
- DISABLED = "DISABLED",
1740
- ENABLED = "ENABLED"
1741
- }
2220
+ export declare const H265SlowPal: {
2221
+ readonly DISABLED: "DISABLED";
2222
+ readonly ENABLED: "ENABLED";
2223
+ };
1742
2224
  /**
1743
2225
  * @public
1744
2226
  */
1745
- export declare enum H265Tiles {
1746
- DISABLED = "DISABLED",
1747
- ENABLED = "ENABLED"
1748
- }
2227
+ export type H265SlowPal = (typeof H265SlowPal)[keyof typeof H265SlowPal];
1749
2228
  /**
1750
2229
  * @public
2230
+ * @enum
1751
2231
  */
1752
- export declare enum H265UnregisteredSeiTimecode {
1753
- DISABLED = "DISABLED",
1754
- ENABLED = "ENABLED"
1755
- }
2232
+ export declare const H265SpatialAdaptiveQuantization: {
2233
+ readonly DISABLED: "DISABLED";
2234
+ readonly ENABLED: "ENABLED";
2235
+ };
1756
2236
  /**
1757
2237
  * @public
1758
2238
  */
1759
- export declare enum H265WriteMp4PackagingType {
1760
- HEV1 = "HEV1",
1761
- HVC1 = "HVC1"
1762
- }
2239
+ export type H265SpatialAdaptiveQuantization = (typeof H265SpatialAdaptiveQuantization)[keyof typeof H265SpatialAdaptiveQuantization];
2240
+ /**
2241
+ * @public
2242
+ * @enum
2243
+ */
2244
+ export declare const H265Telecine: {
2245
+ readonly HARD: "HARD";
2246
+ readonly NONE: "NONE";
2247
+ readonly SOFT: "SOFT";
2248
+ };
2249
+ /**
2250
+ * @public
2251
+ */
2252
+ export type H265Telecine = (typeof H265Telecine)[keyof typeof H265Telecine];
2253
+ /**
2254
+ * @public
2255
+ * @enum
2256
+ */
2257
+ export declare const H265TemporalAdaptiveQuantization: {
2258
+ readonly DISABLED: "DISABLED";
2259
+ readonly ENABLED: "ENABLED";
2260
+ };
2261
+ /**
2262
+ * @public
2263
+ */
2264
+ export type H265TemporalAdaptiveQuantization = (typeof H265TemporalAdaptiveQuantization)[keyof typeof H265TemporalAdaptiveQuantization];
2265
+ /**
2266
+ * @public
2267
+ * @enum
2268
+ */
2269
+ export declare const H265TemporalIds: {
2270
+ readonly DISABLED: "DISABLED";
2271
+ readonly ENABLED: "ENABLED";
2272
+ };
2273
+ /**
2274
+ * @public
2275
+ */
2276
+ export type H265TemporalIds = (typeof H265TemporalIds)[keyof typeof H265TemporalIds];
2277
+ /**
2278
+ * @public
2279
+ * @enum
2280
+ */
2281
+ export declare const H265Tiles: {
2282
+ readonly DISABLED: "DISABLED";
2283
+ readonly ENABLED: "ENABLED";
2284
+ };
2285
+ /**
2286
+ * @public
2287
+ */
2288
+ export type H265Tiles = (typeof H265Tiles)[keyof typeof H265Tiles];
2289
+ /**
2290
+ * @public
2291
+ * @enum
2292
+ */
2293
+ export declare const H265UnregisteredSeiTimecode: {
2294
+ readonly DISABLED: "DISABLED";
2295
+ readonly ENABLED: "ENABLED";
2296
+ };
2297
+ /**
2298
+ * @public
2299
+ */
2300
+ export type H265UnregisteredSeiTimecode = (typeof H265UnregisteredSeiTimecode)[keyof typeof H265UnregisteredSeiTimecode];
2301
+ /**
2302
+ * @public
2303
+ * @enum
2304
+ */
2305
+ export declare const H265WriteMp4PackagingType: {
2306
+ readonly HEV1: "HEV1";
2307
+ readonly HVC1: "HVC1";
2308
+ };
2309
+ /**
2310
+ * @public
2311
+ */
2312
+ export type H265WriteMp4PackagingType = (typeof H265WriteMp4PackagingType)[keyof typeof H265WriteMp4PackagingType];
1763
2313
  /**
1764
2314
  * @public
1765
2315
  * Settings for H265 codec
@@ -1932,150 +2482,245 @@ export interface H265Settings {
1932
2482
  }
1933
2483
  /**
1934
2484
  * @public
2485
+ * @enum
1935
2486
  */
1936
- export declare enum Mpeg2AdaptiveQuantization {
1937
- HIGH = "HIGH",
1938
- LOW = "LOW",
1939
- MEDIUM = "MEDIUM",
1940
- OFF = "OFF"
1941
- }
2487
+ export declare const Mpeg2AdaptiveQuantization: {
2488
+ readonly HIGH: "HIGH";
2489
+ readonly LOW: "LOW";
2490
+ readonly MEDIUM: "MEDIUM";
2491
+ readonly OFF: "OFF";
2492
+ };
1942
2493
  /**
1943
2494
  * @public
1944
2495
  */
1945
- export declare enum Mpeg2CodecLevel {
1946
- AUTO = "AUTO",
1947
- HIGH = "HIGH",
1948
- HIGH1440 = "HIGH1440",
1949
- LOW = "LOW",
1950
- MAIN = "MAIN"
1951
- }
2496
+ export type Mpeg2AdaptiveQuantization = (typeof Mpeg2AdaptiveQuantization)[keyof typeof Mpeg2AdaptiveQuantization];
1952
2497
  /**
1953
2498
  * @public
2499
+ * @enum
1954
2500
  */
1955
- export declare enum Mpeg2CodecProfile {
1956
- MAIN = "MAIN",
1957
- PROFILE_422 = "PROFILE_422"
1958
- }
2501
+ export declare const Mpeg2CodecLevel: {
2502
+ readonly AUTO: "AUTO";
2503
+ readonly HIGH: "HIGH";
2504
+ readonly HIGH1440: "HIGH1440";
2505
+ readonly LOW: "LOW";
2506
+ readonly MAIN: "MAIN";
2507
+ };
1959
2508
  /**
1960
2509
  * @public
1961
2510
  */
1962
- export declare enum Mpeg2DynamicSubGop {
1963
- ADAPTIVE = "ADAPTIVE",
1964
- STATIC = "STATIC"
1965
- }
2511
+ export type Mpeg2CodecLevel = (typeof Mpeg2CodecLevel)[keyof typeof Mpeg2CodecLevel];
1966
2512
  /**
1967
2513
  * @public
2514
+ * @enum
1968
2515
  */
1969
- export declare enum Mpeg2FramerateControl {
1970
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
1971
- SPECIFIED = "SPECIFIED"
1972
- }
2516
+ export declare const Mpeg2CodecProfile: {
2517
+ readonly MAIN: "MAIN";
2518
+ readonly PROFILE_422: "PROFILE_422";
2519
+ };
1973
2520
  /**
1974
2521
  * @public
1975
2522
  */
1976
- export declare enum Mpeg2FramerateConversionAlgorithm {
1977
- DUPLICATE_DROP = "DUPLICATE_DROP",
1978
- FRAMEFORMER = "FRAMEFORMER",
1979
- INTERPOLATE = "INTERPOLATE"
1980
- }
2523
+ export type Mpeg2CodecProfile = (typeof Mpeg2CodecProfile)[keyof typeof Mpeg2CodecProfile];
1981
2524
  /**
1982
2525
  * @public
2526
+ * @enum
1983
2527
  */
1984
- export declare enum Mpeg2GopSizeUnits {
1985
- FRAMES = "FRAMES",
1986
- SECONDS = "SECONDS"
1987
- }
2528
+ export declare const Mpeg2DynamicSubGop: {
2529
+ readonly ADAPTIVE: "ADAPTIVE";
2530
+ readonly STATIC: "STATIC";
2531
+ };
1988
2532
  /**
1989
2533
  * @public
1990
2534
  */
1991
- export declare enum Mpeg2InterlaceMode {
1992
- BOTTOM_FIELD = "BOTTOM_FIELD",
1993
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
1994
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
1995
- PROGRESSIVE = "PROGRESSIVE",
1996
- TOP_FIELD = "TOP_FIELD"
1997
- }
2535
+ export type Mpeg2DynamicSubGop = (typeof Mpeg2DynamicSubGop)[keyof typeof Mpeg2DynamicSubGop];
1998
2536
  /**
1999
2537
  * @public
2538
+ * @enum
2000
2539
  */
2001
- export declare enum Mpeg2IntraDcPrecision {
2002
- AUTO = "AUTO",
2003
- INTRA_DC_PRECISION_10 = "INTRA_DC_PRECISION_10",
2004
- INTRA_DC_PRECISION_11 = "INTRA_DC_PRECISION_11",
2005
- INTRA_DC_PRECISION_8 = "INTRA_DC_PRECISION_8",
2006
- INTRA_DC_PRECISION_9 = "INTRA_DC_PRECISION_9"
2007
- }
2540
+ export declare const Mpeg2FramerateControl: {
2541
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2542
+ readonly SPECIFIED: "SPECIFIED";
2543
+ };
2008
2544
  /**
2009
2545
  * @public
2010
2546
  */
2011
- export declare enum Mpeg2ParControl {
2012
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2013
- SPECIFIED = "SPECIFIED"
2014
- }
2547
+ export type Mpeg2FramerateControl = (typeof Mpeg2FramerateControl)[keyof typeof Mpeg2FramerateControl];
2015
2548
  /**
2016
2549
  * @public
2550
+ * @enum
2017
2551
  */
2018
- export declare enum Mpeg2QualityTuningLevel {
2019
- MULTI_PASS = "MULTI_PASS",
2020
- SINGLE_PASS = "SINGLE_PASS"
2021
- }
2552
+ export declare const Mpeg2FramerateConversionAlgorithm: {
2553
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
2554
+ readonly FRAMEFORMER: "FRAMEFORMER";
2555
+ readonly INTERPOLATE: "INTERPOLATE";
2556
+ };
2022
2557
  /**
2023
2558
  * @public
2024
2559
  */
2025
- export declare enum Mpeg2RateControlMode {
2026
- CBR = "CBR",
2027
- VBR = "VBR"
2028
- }
2560
+ export type Mpeg2FramerateConversionAlgorithm = (typeof Mpeg2FramerateConversionAlgorithm)[keyof typeof Mpeg2FramerateConversionAlgorithm];
2029
2561
  /**
2030
2562
  * @public
2563
+ * @enum
2031
2564
  */
2032
- export declare enum Mpeg2ScanTypeConversionMode {
2033
- INTERLACED = "INTERLACED",
2034
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
2035
- }
2565
+ export declare const Mpeg2GopSizeUnits: {
2566
+ readonly FRAMES: "FRAMES";
2567
+ readonly SECONDS: "SECONDS";
2568
+ };
2036
2569
  /**
2037
2570
  * @public
2038
2571
  */
2039
- export declare enum Mpeg2SceneChangeDetect {
2040
- DISABLED = "DISABLED",
2041
- ENABLED = "ENABLED"
2042
- }
2572
+ export type Mpeg2GopSizeUnits = (typeof Mpeg2GopSizeUnits)[keyof typeof Mpeg2GopSizeUnits];
2043
2573
  /**
2044
2574
  * @public
2575
+ * @enum
2045
2576
  */
2046
- export declare enum Mpeg2SlowPal {
2047
- DISABLED = "DISABLED",
2048
- ENABLED = "ENABLED"
2049
- }
2577
+ export declare const Mpeg2InterlaceMode: {
2578
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
2579
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
2580
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
2581
+ readonly PROGRESSIVE: "PROGRESSIVE";
2582
+ readonly TOP_FIELD: "TOP_FIELD";
2583
+ };
2050
2584
  /**
2051
2585
  * @public
2052
2586
  */
2053
- export declare enum Mpeg2SpatialAdaptiveQuantization {
2054
- DISABLED = "DISABLED",
2055
- ENABLED = "ENABLED"
2056
- }
2587
+ export type Mpeg2InterlaceMode = (typeof Mpeg2InterlaceMode)[keyof typeof Mpeg2InterlaceMode];
2057
2588
  /**
2058
2589
  * @public
2590
+ * @enum
2059
2591
  */
2060
- export declare enum Mpeg2Syntax {
2061
- DEFAULT = "DEFAULT",
2062
- D_10 = "D_10"
2063
- }
2592
+ export declare const Mpeg2IntraDcPrecision: {
2593
+ readonly AUTO: "AUTO";
2594
+ readonly INTRA_DC_PRECISION_10: "INTRA_DC_PRECISION_10";
2595
+ readonly INTRA_DC_PRECISION_11: "INTRA_DC_PRECISION_11";
2596
+ readonly INTRA_DC_PRECISION_8: "INTRA_DC_PRECISION_8";
2597
+ readonly INTRA_DC_PRECISION_9: "INTRA_DC_PRECISION_9";
2598
+ };
2064
2599
  /**
2065
2600
  * @public
2066
2601
  */
2067
- export declare enum Mpeg2Telecine {
2068
- HARD = "HARD",
2069
- NONE = "NONE",
2070
- SOFT = "SOFT"
2071
- }
2602
+ export type Mpeg2IntraDcPrecision = (typeof Mpeg2IntraDcPrecision)[keyof typeof Mpeg2IntraDcPrecision];
2072
2603
  /**
2073
2604
  * @public
2605
+ * @enum
2074
2606
  */
2075
- export declare enum Mpeg2TemporalAdaptiveQuantization {
2076
- DISABLED = "DISABLED",
2077
- ENABLED = "ENABLED"
2078
- }
2607
+ export declare const Mpeg2ParControl: {
2608
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2609
+ readonly SPECIFIED: "SPECIFIED";
2610
+ };
2611
+ /**
2612
+ * @public
2613
+ */
2614
+ export type Mpeg2ParControl = (typeof Mpeg2ParControl)[keyof typeof Mpeg2ParControl];
2615
+ /**
2616
+ * @public
2617
+ * @enum
2618
+ */
2619
+ export declare const Mpeg2QualityTuningLevel: {
2620
+ readonly MULTI_PASS: "MULTI_PASS";
2621
+ readonly SINGLE_PASS: "SINGLE_PASS";
2622
+ };
2623
+ /**
2624
+ * @public
2625
+ */
2626
+ export type Mpeg2QualityTuningLevel = (typeof Mpeg2QualityTuningLevel)[keyof typeof Mpeg2QualityTuningLevel];
2627
+ /**
2628
+ * @public
2629
+ * @enum
2630
+ */
2631
+ export declare const Mpeg2RateControlMode: {
2632
+ readonly CBR: "CBR";
2633
+ readonly VBR: "VBR";
2634
+ };
2635
+ /**
2636
+ * @public
2637
+ */
2638
+ export type Mpeg2RateControlMode = (typeof Mpeg2RateControlMode)[keyof typeof Mpeg2RateControlMode];
2639
+ /**
2640
+ * @public
2641
+ * @enum
2642
+ */
2643
+ export declare const Mpeg2ScanTypeConversionMode: {
2644
+ readonly INTERLACED: "INTERLACED";
2645
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
2646
+ };
2647
+ /**
2648
+ * @public
2649
+ */
2650
+ export type Mpeg2ScanTypeConversionMode = (typeof Mpeg2ScanTypeConversionMode)[keyof typeof Mpeg2ScanTypeConversionMode];
2651
+ /**
2652
+ * @public
2653
+ * @enum
2654
+ */
2655
+ export declare const Mpeg2SceneChangeDetect: {
2656
+ readonly DISABLED: "DISABLED";
2657
+ readonly ENABLED: "ENABLED";
2658
+ };
2659
+ /**
2660
+ * @public
2661
+ */
2662
+ export type Mpeg2SceneChangeDetect = (typeof Mpeg2SceneChangeDetect)[keyof typeof Mpeg2SceneChangeDetect];
2663
+ /**
2664
+ * @public
2665
+ * @enum
2666
+ */
2667
+ export declare const Mpeg2SlowPal: {
2668
+ readonly DISABLED: "DISABLED";
2669
+ readonly ENABLED: "ENABLED";
2670
+ };
2671
+ /**
2672
+ * @public
2673
+ */
2674
+ export type Mpeg2SlowPal = (typeof Mpeg2SlowPal)[keyof typeof Mpeg2SlowPal];
2675
+ /**
2676
+ * @public
2677
+ * @enum
2678
+ */
2679
+ export declare const Mpeg2SpatialAdaptiveQuantization: {
2680
+ readonly DISABLED: "DISABLED";
2681
+ readonly ENABLED: "ENABLED";
2682
+ };
2683
+ /**
2684
+ * @public
2685
+ */
2686
+ export type Mpeg2SpatialAdaptiveQuantization = (typeof Mpeg2SpatialAdaptiveQuantization)[keyof typeof Mpeg2SpatialAdaptiveQuantization];
2687
+ /**
2688
+ * @public
2689
+ * @enum
2690
+ */
2691
+ export declare const Mpeg2Syntax: {
2692
+ readonly DEFAULT: "DEFAULT";
2693
+ readonly D_10: "D_10";
2694
+ };
2695
+ /**
2696
+ * @public
2697
+ */
2698
+ export type Mpeg2Syntax = (typeof Mpeg2Syntax)[keyof typeof Mpeg2Syntax];
2699
+ /**
2700
+ * @public
2701
+ * @enum
2702
+ */
2703
+ export declare const Mpeg2Telecine: {
2704
+ readonly HARD: "HARD";
2705
+ readonly NONE: "NONE";
2706
+ readonly SOFT: "SOFT";
2707
+ };
2708
+ /**
2709
+ * @public
2710
+ */
2711
+ export type Mpeg2Telecine = (typeof Mpeg2Telecine)[keyof typeof Mpeg2Telecine];
2712
+ /**
2713
+ * @public
2714
+ * @enum
2715
+ */
2716
+ export declare const Mpeg2TemporalAdaptiveQuantization: {
2717
+ readonly DISABLED: "DISABLED";
2718
+ readonly ENABLED: "ENABLED";
2719
+ };
2720
+ /**
2721
+ * @public
2722
+ */
2723
+ export type Mpeg2TemporalAdaptiveQuantization = (typeof Mpeg2TemporalAdaptiveQuantization)[keyof typeof Mpeg2TemporalAdaptiveQuantization];
2079
2724
  /**
2080
2725
  * @public
2081
2726
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value MPEG2.
@@ -2216,75 +2861,120 @@ export interface Mpeg2Settings {
2216
2861
  }
2217
2862
  /**
2218
2863
  * @public
2864
+ * @enum
2219
2865
  */
2220
- export declare enum ProresChromaSampling {
2221
- PRESERVE_444_SAMPLING = "PRESERVE_444_SAMPLING",
2222
- SUBSAMPLE_TO_422 = "SUBSAMPLE_TO_422"
2223
- }
2866
+ export declare const ProresChromaSampling: {
2867
+ readonly PRESERVE_444_SAMPLING: "PRESERVE_444_SAMPLING";
2868
+ readonly SUBSAMPLE_TO_422: "SUBSAMPLE_TO_422";
2869
+ };
2224
2870
  /**
2225
2871
  * @public
2226
2872
  */
2227
- export declare enum ProresCodecProfile {
2228
- APPLE_PRORES_422 = "APPLE_PRORES_422",
2229
- APPLE_PRORES_422_HQ = "APPLE_PRORES_422_HQ",
2230
- APPLE_PRORES_422_LT = "APPLE_PRORES_422_LT",
2231
- APPLE_PRORES_422_PROXY = "APPLE_PRORES_422_PROXY",
2232
- APPLE_PRORES_4444 = "APPLE_PRORES_4444",
2233
- APPLE_PRORES_4444_XQ = "APPLE_PRORES_4444_XQ"
2234
- }
2873
+ export type ProresChromaSampling = (typeof ProresChromaSampling)[keyof typeof ProresChromaSampling];
2235
2874
  /**
2236
2875
  * @public
2876
+ * @enum
2237
2877
  */
2238
- export declare enum ProresFramerateControl {
2239
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2240
- SPECIFIED = "SPECIFIED"
2241
- }
2878
+ export declare const ProresCodecProfile: {
2879
+ readonly APPLE_PRORES_422: "APPLE_PRORES_422";
2880
+ readonly APPLE_PRORES_422_HQ: "APPLE_PRORES_422_HQ";
2881
+ readonly APPLE_PRORES_422_LT: "APPLE_PRORES_422_LT";
2882
+ readonly APPLE_PRORES_422_PROXY: "APPLE_PRORES_422_PROXY";
2883
+ readonly APPLE_PRORES_4444: "APPLE_PRORES_4444";
2884
+ readonly APPLE_PRORES_4444_XQ: "APPLE_PRORES_4444_XQ";
2885
+ };
2242
2886
  /**
2243
2887
  * @public
2244
2888
  */
2245
- export declare enum ProresFramerateConversionAlgorithm {
2246
- DUPLICATE_DROP = "DUPLICATE_DROP",
2247
- FRAMEFORMER = "FRAMEFORMER",
2248
- INTERPOLATE = "INTERPOLATE"
2249
- }
2889
+ export type ProresCodecProfile = (typeof ProresCodecProfile)[keyof typeof ProresCodecProfile];
2250
2890
  /**
2251
2891
  * @public
2892
+ * @enum
2252
2893
  */
2253
- export declare enum ProresInterlaceMode {
2254
- BOTTOM_FIELD = "BOTTOM_FIELD",
2255
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
2256
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
2257
- PROGRESSIVE = "PROGRESSIVE",
2258
- TOP_FIELD = "TOP_FIELD"
2259
- }
2894
+ export declare const ProresFramerateControl: {
2895
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2896
+ readonly SPECIFIED: "SPECIFIED";
2897
+ };
2260
2898
  /**
2261
2899
  * @public
2262
2900
  */
2263
- export declare enum ProresParControl {
2264
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2265
- SPECIFIED = "SPECIFIED"
2266
- }
2901
+ export type ProresFramerateControl = (typeof ProresFramerateControl)[keyof typeof ProresFramerateControl];
2267
2902
  /**
2268
2903
  * @public
2904
+ * @enum
2269
2905
  */
2270
- export declare enum ProresScanTypeConversionMode {
2271
- INTERLACED = "INTERLACED",
2272
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
2273
- }
2906
+ export declare const ProresFramerateConversionAlgorithm: {
2907
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
2908
+ readonly FRAMEFORMER: "FRAMEFORMER";
2909
+ readonly INTERPOLATE: "INTERPOLATE";
2910
+ };
2274
2911
  /**
2275
2912
  * @public
2276
2913
  */
2277
- export declare enum ProresSlowPal {
2278
- DISABLED = "DISABLED",
2279
- ENABLED = "ENABLED"
2280
- }
2914
+ export type ProresFramerateConversionAlgorithm = (typeof ProresFramerateConversionAlgorithm)[keyof typeof ProresFramerateConversionAlgorithm];
2281
2915
  /**
2282
2916
  * @public
2917
+ * @enum
2283
2918
  */
2284
- export declare enum ProresTelecine {
2285
- HARD = "HARD",
2286
- NONE = "NONE"
2287
- }
2919
+ export declare const ProresInterlaceMode: {
2920
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
2921
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
2922
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
2923
+ readonly PROGRESSIVE: "PROGRESSIVE";
2924
+ readonly TOP_FIELD: "TOP_FIELD";
2925
+ };
2926
+ /**
2927
+ * @public
2928
+ */
2929
+ export type ProresInterlaceMode = (typeof ProresInterlaceMode)[keyof typeof ProresInterlaceMode];
2930
+ /**
2931
+ * @public
2932
+ * @enum
2933
+ */
2934
+ export declare const ProresParControl: {
2935
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
2936
+ readonly SPECIFIED: "SPECIFIED";
2937
+ };
2938
+ /**
2939
+ * @public
2940
+ */
2941
+ export type ProresParControl = (typeof ProresParControl)[keyof typeof ProresParControl];
2942
+ /**
2943
+ * @public
2944
+ * @enum
2945
+ */
2946
+ export declare const ProresScanTypeConversionMode: {
2947
+ readonly INTERLACED: "INTERLACED";
2948
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
2949
+ };
2950
+ /**
2951
+ * @public
2952
+ */
2953
+ export type ProresScanTypeConversionMode = (typeof ProresScanTypeConversionMode)[keyof typeof ProresScanTypeConversionMode];
2954
+ /**
2955
+ * @public
2956
+ * @enum
2957
+ */
2958
+ export declare const ProresSlowPal: {
2959
+ readonly DISABLED: "DISABLED";
2960
+ readonly ENABLED: "ENABLED";
2961
+ };
2962
+ /**
2963
+ * @public
2964
+ */
2965
+ export type ProresSlowPal = (typeof ProresSlowPal)[keyof typeof ProresSlowPal];
2966
+ /**
2967
+ * @public
2968
+ * @enum
2969
+ */
2970
+ export declare const ProresTelecine: {
2971
+ readonly HARD: "HARD";
2972
+ readonly NONE: "NONE";
2973
+ };
2974
+ /**
2975
+ * @public
2976
+ */
2977
+ export type ProresTelecine = (typeof ProresTelecine)[keyof typeof ProresTelecine];
2288
2978
  /**
2289
2979
  * @public
2290
2980
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value PRORES.
@@ -2345,55 +3035,90 @@ export interface ProresSettings {
2345
3035
  }
2346
3036
  /**
2347
3037
  * @public
3038
+ * @enum
3039
+ */
3040
+ export declare const Vc3FramerateControl: {
3041
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3042
+ readonly SPECIFIED: "SPECIFIED";
3043
+ };
3044
+ /**
3045
+ * @public
3046
+ */
3047
+ export type Vc3FramerateControl = (typeof Vc3FramerateControl)[keyof typeof Vc3FramerateControl];
3048
+ /**
3049
+ * @public
3050
+ * @enum
3051
+ */
3052
+ export declare const Vc3FramerateConversionAlgorithm: {
3053
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
3054
+ readonly FRAMEFORMER: "FRAMEFORMER";
3055
+ readonly INTERPOLATE: "INTERPOLATE";
3056
+ };
3057
+ /**
3058
+ * @public
3059
+ */
3060
+ export type Vc3FramerateConversionAlgorithm = (typeof Vc3FramerateConversionAlgorithm)[keyof typeof Vc3FramerateConversionAlgorithm];
3061
+ /**
3062
+ * @public
3063
+ * @enum
2348
3064
  */
2349
- export declare enum Vc3FramerateControl {
2350
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2351
- SPECIFIED = "SPECIFIED"
2352
- }
3065
+ export declare const Vc3InterlaceMode: {
3066
+ readonly INTERLACED: "INTERLACED";
3067
+ readonly PROGRESSIVE: "PROGRESSIVE";
3068
+ };
2353
3069
  /**
2354
3070
  * @public
2355
3071
  */
2356
- export declare enum Vc3FramerateConversionAlgorithm {
2357
- DUPLICATE_DROP = "DUPLICATE_DROP",
2358
- FRAMEFORMER = "FRAMEFORMER",
2359
- INTERPOLATE = "INTERPOLATE"
2360
- }
3072
+ export type Vc3InterlaceMode = (typeof Vc3InterlaceMode)[keyof typeof Vc3InterlaceMode];
2361
3073
  /**
2362
3074
  * @public
3075
+ * @enum
2363
3076
  */
2364
- export declare enum Vc3InterlaceMode {
2365
- INTERLACED = "INTERLACED",
2366
- PROGRESSIVE = "PROGRESSIVE"
2367
- }
3077
+ export declare const Vc3ScanTypeConversionMode: {
3078
+ readonly INTERLACED: "INTERLACED";
3079
+ readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
3080
+ };
2368
3081
  /**
2369
3082
  * @public
2370
3083
  */
2371
- export declare enum Vc3ScanTypeConversionMode {
2372
- INTERLACED = "INTERLACED",
2373
- INTERLACED_OPTIMIZE = "INTERLACED_OPTIMIZE"
2374
- }
3084
+ export type Vc3ScanTypeConversionMode = (typeof Vc3ScanTypeConversionMode)[keyof typeof Vc3ScanTypeConversionMode];
2375
3085
  /**
2376
3086
  * @public
3087
+ * @enum
2377
3088
  */
2378
- export declare enum Vc3SlowPal {
2379
- DISABLED = "DISABLED",
2380
- ENABLED = "ENABLED"
2381
- }
3089
+ export declare const Vc3SlowPal: {
3090
+ readonly DISABLED: "DISABLED";
3091
+ readonly ENABLED: "ENABLED";
3092
+ };
2382
3093
  /**
2383
3094
  * @public
2384
3095
  */
2385
- export declare enum Vc3Telecine {
2386
- HARD = "HARD",
2387
- NONE = "NONE"
2388
- }
3096
+ export type Vc3SlowPal = (typeof Vc3SlowPal)[keyof typeof Vc3SlowPal];
2389
3097
  /**
2390
3098
  * @public
3099
+ * @enum
2391
3100
  */
2392
- export declare enum Vc3Class {
2393
- CLASS_145_8BIT = "CLASS_145_8BIT",
2394
- CLASS_220_10BIT = "CLASS_220_10BIT",
2395
- CLASS_220_8BIT = "CLASS_220_8BIT"
2396
- }
3101
+ export declare const Vc3Telecine: {
3102
+ readonly HARD: "HARD";
3103
+ readonly NONE: "NONE";
3104
+ };
3105
+ /**
3106
+ * @public
3107
+ */
3108
+ export type Vc3Telecine = (typeof Vc3Telecine)[keyof typeof Vc3Telecine];
3109
+ /**
3110
+ * @public
3111
+ * @enum
3112
+ */
3113
+ export declare const Vc3Class: {
3114
+ readonly CLASS_145_8BIT: "CLASS_145_8BIT";
3115
+ readonly CLASS_220_10BIT: "CLASS_220_10BIT";
3116
+ readonly CLASS_220_8BIT: "CLASS_220_8BIT";
3117
+ };
3118
+ /**
3119
+ * @public
3120
+ */
3121
+ export type Vc3Class = (typeof Vc3Class)[keyof typeof Vc3Class];
2397
3122
  /**
2398
3123
  * @public
2399
3124
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value VC3
@@ -2438,39 +3163,64 @@ export interface Vc3Settings {
2438
3163
  }
2439
3164
  /**
2440
3165
  * @public
3166
+ * @enum
2441
3167
  */
2442
- export declare enum Vp8FramerateControl {
2443
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2444
- SPECIFIED = "SPECIFIED"
2445
- }
3168
+ export declare const Vp8FramerateControl: {
3169
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3170
+ readonly SPECIFIED: "SPECIFIED";
3171
+ };
2446
3172
  /**
2447
3173
  * @public
2448
3174
  */
2449
- export declare enum Vp8FramerateConversionAlgorithm {
2450
- DUPLICATE_DROP = "DUPLICATE_DROP",
2451
- FRAMEFORMER = "FRAMEFORMER",
2452
- INTERPOLATE = "INTERPOLATE"
2453
- }
3175
+ export type Vp8FramerateControl = (typeof Vp8FramerateControl)[keyof typeof Vp8FramerateControl];
2454
3176
  /**
2455
3177
  * @public
3178
+ * @enum
2456
3179
  */
2457
- export declare enum Vp8ParControl {
2458
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2459
- SPECIFIED = "SPECIFIED"
2460
- }
3180
+ export declare const Vp8FramerateConversionAlgorithm: {
3181
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
3182
+ readonly FRAMEFORMER: "FRAMEFORMER";
3183
+ readonly INTERPOLATE: "INTERPOLATE";
3184
+ };
2461
3185
  /**
2462
3186
  * @public
2463
3187
  */
2464
- export declare enum Vp8QualityTuningLevel {
2465
- MULTI_PASS = "MULTI_PASS",
2466
- MULTI_PASS_HQ = "MULTI_PASS_HQ"
2467
- }
3188
+ export type Vp8FramerateConversionAlgorithm = (typeof Vp8FramerateConversionAlgorithm)[keyof typeof Vp8FramerateConversionAlgorithm];
2468
3189
  /**
2469
3190
  * @public
3191
+ * @enum
2470
3192
  */
2471
- export declare enum Vp8RateControlMode {
2472
- VBR = "VBR"
2473
- }
3193
+ export declare const Vp8ParControl: {
3194
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3195
+ readonly SPECIFIED: "SPECIFIED";
3196
+ };
3197
+ /**
3198
+ * @public
3199
+ */
3200
+ export type Vp8ParControl = (typeof Vp8ParControl)[keyof typeof Vp8ParControl];
3201
+ /**
3202
+ * @public
3203
+ * @enum
3204
+ */
3205
+ export declare const Vp8QualityTuningLevel: {
3206
+ readonly MULTI_PASS: "MULTI_PASS";
3207
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
3208
+ };
3209
+ /**
3210
+ * @public
3211
+ */
3212
+ export type Vp8QualityTuningLevel = (typeof Vp8QualityTuningLevel)[keyof typeof Vp8QualityTuningLevel];
3213
+ /**
3214
+ * @public
3215
+ * @enum
3216
+ */
3217
+ export declare const Vp8RateControlMode: {
3218
+ readonly VBR: "VBR";
3219
+ };
3220
+ /**
3221
+ * @public
3222
+ */
3223
+ export type Vp8RateControlMode = (typeof Vp8RateControlMode)[keyof typeof Vp8RateControlMode];
2474
3224
  /**
2475
3225
  * @public
2476
3226
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value VP8.
@@ -2531,39 +3281,64 @@ export interface Vp8Settings {
2531
3281
  }
2532
3282
  /**
2533
3283
  * @public
3284
+ * @enum
2534
3285
  */
2535
- export declare enum Vp9FramerateControl {
2536
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2537
- SPECIFIED = "SPECIFIED"
2538
- }
3286
+ export declare const Vp9FramerateControl: {
3287
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3288
+ readonly SPECIFIED: "SPECIFIED";
3289
+ };
2539
3290
  /**
2540
3291
  * @public
2541
3292
  */
2542
- export declare enum Vp9FramerateConversionAlgorithm {
2543
- DUPLICATE_DROP = "DUPLICATE_DROP",
2544
- FRAMEFORMER = "FRAMEFORMER",
2545
- INTERPOLATE = "INTERPOLATE"
2546
- }
3293
+ export type Vp9FramerateControl = (typeof Vp9FramerateControl)[keyof typeof Vp9FramerateControl];
2547
3294
  /**
2548
3295
  * @public
3296
+ * @enum
2549
3297
  */
2550
- export declare enum Vp9ParControl {
2551
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2552
- SPECIFIED = "SPECIFIED"
2553
- }
3298
+ export declare const Vp9FramerateConversionAlgorithm: {
3299
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
3300
+ readonly FRAMEFORMER: "FRAMEFORMER";
3301
+ readonly INTERPOLATE: "INTERPOLATE";
3302
+ };
2554
3303
  /**
2555
3304
  * @public
2556
3305
  */
2557
- export declare enum Vp9QualityTuningLevel {
2558
- MULTI_PASS = "MULTI_PASS",
2559
- MULTI_PASS_HQ = "MULTI_PASS_HQ"
2560
- }
3306
+ export type Vp9FramerateConversionAlgorithm = (typeof Vp9FramerateConversionAlgorithm)[keyof typeof Vp9FramerateConversionAlgorithm];
2561
3307
  /**
2562
3308
  * @public
3309
+ * @enum
2563
3310
  */
2564
- export declare enum Vp9RateControlMode {
2565
- VBR = "VBR"
2566
- }
3311
+ export declare const Vp9ParControl: {
3312
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3313
+ readonly SPECIFIED: "SPECIFIED";
3314
+ };
3315
+ /**
3316
+ * @public
3317
+ */
3318
+ export type Vp9ParControl = (typeof Vp9ParControl)[keyof typeof Vp9ParControl];
3319
+ /**
3320
+ * @public
3321
+ * @enum
3322
+ */
3323
+ export declare const Vp9QualityTuningLevel: {
3324
+ readonly MULTI_PASS: "MULTI_PASS";
3325
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
3326
+ };
3327
+ /**
3328
+ * @public
3329
+ */
3330
+ export type Vp9QualityTuningLevel = (typeof Vp9QualityTuningLevel)[keyof typeof Vp9QualityTuningLevel];
3331
+ /**
3332
+ * @public
3333
+ * @enum
3334
+ */
3335
+ export declare const Vp9RateControlMode: {
3336
+ readonly VBR: "VBR";
3337
+ };
3338
+ /**
3339
+ * @public
3340
+ */
3341
+ export type Vp9RateControlMode = (typeof Vp9RateControlMode)[keyof typeof Vp9RateControlMode];
2567
3342
  /**
2568
3343
  * @public
2569
3344
  * Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value VP9.
@@ -2624,78 +3399,123 @@ export interface Vp9Settings {
2624
3399
  }
2625
3400
  /**
2626
3401
  * @public
3402
+ * @enum
2627
3403
  */
2628
- export declare enum XavcAdaptiveQuantization {
2629
- AUTO = "AUTO",
2630
- HIGH = "HIGH",
2631
- HIGHER = "HIGHER",
2632
- LOW = "LOW",
2633
- MAX = "MAX",
2634
- MEDIUM = "MEDIUM",
2635
- OFF = "OFF"
2636
- }
3404
+ export declare const XavcAdaptiveQuantization: {
3405
+ readonly AUTO: "AUTO";
3406
+ readonly HIGH: "HIGH";
3407
+ readonly HIGHER: "HIGHER";
3408
+ readonly LOW: "LOW";
3409
+ readonly MAX: "MAX";
3410
+ readonly MEDIUM: "MEDIUM";
3411
+ readonly OFF: "OFF";
3412
+ };
2637
3413
  /**
2638
3414
  * @public
2639
3415
  */
2640
- export declare enum XavcEntropyEncoding {
2641
- AUTO = "AUTO",
2642
- CABAC = "CABAC",
2643
- CAVLC = "CAVLC"
2644
- }
3416
+ export type XavcAdaptiveQuantization = (typeof XavcAdaptiveQuantization)[keyof typeof XavcAdaptiveQuantization];
2645
3417
  /**
2646
3418
  * @public
3419
+ * @enum
2647
3420
  */
2648
- export declare enum XavcFramerateControl {
2649
- INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
2650
- SPECIFIED = "SPECIFIED"
2651
- }
3421
+ export declare const XavcEntropyEncoding: {
3422
+ readonly AUTO: "AUTO";
3423
+ readonly CABAC: "CABAC";
3424
+ readonly CAVLC: "CAVLC";
3425
+ };
2652
3426
  /**
2653
3427
  * @public
2654
3428
  */
2655
- export declare enum XavcFramerateConversionAlgorithm {
2656
- DUPLICATE_DROP = "DUPLICATE_DROP",
2657
- FRAMEFORMER = "FRAMEFORMER",
2658
- INTERPOLATE = "INTERPOLATE"
2659
- }
3429
+ export type XavcEntropyEncoding = (typeof XavcEntropyEncoding)[keyof typeof XavcEntropyEncoding];
2660
3430
  /**
2661
3431
  * @public
3432
+ * @enum
2662
3433
  */
2663
- export declare enum XavcProfile {
2664
- XAVC_4K = "XAVC_4K",
2665
- XAVC_4K_INTRA_CBG = "XAVC_4K_INTRA_CBG",
2666
- XAVC_4K_INTRA_VBR = "XAVC_4K_INTRA_VBR",
2667
- XAVC_HD = "XAVC_HD",
2668
- XAVC_HD_INTRA_CBG = "XAVC_HD_INTRA_CBG"
2669
- }
3434
+ export declare const XavcFramerateControl: {
3435
+ readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
3436
+ readonly SPECIFIED: "SPECIFIED";
3437
+ };
2670
3438
  /**
2671
3439
  * @public
2672
3440
  */
2673
- export declare enum XavcSlowPal {
2674
- DISABLED = "DISABLED",
2675
- ENABLED = "ENABLED"
2676
- }
3441
+ export type XavcFramerateControl = (typeof XavcFramerateControl)[keyof typeof XavcFramerateControl];
2677
3442
  /**
2678
3443
  * @public
3444
+ * @enum
2679
3445
  */
2680
- export declare enum XavcSpatialAdaptiveQuantization {
2681
- DISABLED = "DISABLED",
2682
- ENABLED = "ENABLED"
2683
- }
3446
+ export declare const XavcFramerateConversionAlgorithm: {
3447
+ readonly DUPLICATE_DROP: "DUPLICATE_DROP";
3448
+ readonly FRAMEFORMER: "FRAMEFORMER";
3449
+ readonly INTERPOLATE: "INTERPOLATE";
3450
+ };
2684
3451
  /**
2685
3452
  * @public
2686
3453
  */
2687
- export declare enum XavcTemporalAdaptiveQuantization {
2688
- DISABLED = "DISABLED",
2689
- ENABLED = "ENABLED"
2690
- }
3454
+ export type XavcFramerateConversionAlgorithm = (typeof XavcFramerateConversionAlgorithm)[keyof typeof XavcFramerateConversionAlgorithm];
2691
3455
  /**
2692
3456
  * @public
3457
+ * @enum
2693
3458
  */
2694
- export declare enum Xavc4kIntraCbgProfileClass {
2695
- CLASS_100 = "CLASS_100",
2696
- CLASS_300 = "CLASS_300",
2697
- CLASS_480 = "CLASS_480"
2698
- }
3459
+ export declare const XavcProfile: {
3460
+ readonly XAVC_4K: "XAVC_4K";
3461
+ readonly XAVC_4K_INTRA_CBG: "XAVC_4K_INTRA_CBG";
3462
+ readonly XAVC_4K_INTRA_VBR: "XAVC_4K_INTRA_VBR";
3463
+ readonly XAVC_HD: "XAVC_HD";
3464
+ readonly XAVC_HD_INTRA_CBG: "XAVC_HD_INTRA_CBG";
3465
+ };
3466
+ /**
3467
+ * @public
3468
+ */
3469
+ export type XavcProfile = (typeof XavcProfile)[keyof typeof XavcProfile];
3470
+ /**
3471
+ * @public
3472
+ * @enum
3473
+ */
3474
+ export declare const XavcSlowPal: {
3475
+ readonly DISABLED: "DISABLED";
3476
+ readonly ENABLED: "ENABLED";
3477
+ };
3478
+ /**
3479
+ * @public
3480
+ */
3481
+ export type XavcSlowPal = (typeof XavcSlowPal)[keyof typeof XavcSlowPal];
3482
+ /**
3483
+ * @public
3484
+ * @enum
3485
+ */
3486
+ export declare const XavcSpatialAdaptiveQuantization: {
3487
+ readonly DISABLED: "DISABLED";
3488
+ readonly ENABLED: "ENABLED";
3489
+ };
3490
+ /**
3491
+ * @public
3492
+ */
3493
+ export type XavcSpatialAdaptiveQuantization = (typeof XavcSpatialAdaptiveQuantization)[keyof typeof XavcSpatialAdaptiveQuantization];
3494
+ /**
3495
+ * @public
3496
+ * @enum
3497
+ */
3498
+ export declare const XavcTemporalAdaptiveQuantization: {
3499
+ readonly DISABLED: "DISABLED";
3500
+ readonly ENABLED: "ENABLED";
3501
+ };
3502
+ /**
3503
+ * @public
3504
+ */
3505
+ export type XavcTemporalAdaptiveQuantization = (typeof XavcTemporalAdaptiveQuantization)[keyof typeof XavcTemporalAdaptiveQuantization];
3506
+ /**
3507
+ * @public
3508
+ * @enum
3509
+ */
3510
+ export declare const Xavc4kIntraCbgProfileClass: {
3511
+ readonly CLASS_100: "CLASS_100";
3512
+ readonly CLASS_300: "CLASS_300";
3513
+ readonly CLASS_480: "CLASS_480";
3514
+ };
3515
+ /**
3516
+ * @public
3517
+ */
3518
+ export type Xavc4kIntraCbgProfileClass = (typeof Xavc4kIntraCbgProfileClass)[keyof typeof Xavc4kIntraCbgProfileClass];
2699
3519
  /**
2700
3520
  * @public
2701
3521
  * Required when you set (Profile) under (VideoDescription)>(CodecSettings)>(XavcSettings) to the value XAVC_4K_INTRA_CBG.
@@ -2708,12 +3528,17 @@ export interface Xavc4kIntraCbgProfileSettings {
2708
3528
  }
2709
3529
  /**
2710
3530
  * @public
3531
+ * @enum
2711
3532
  */
2712
- export declare enum Xavc4kIntraVbrProfileClass {
2713
- CLASS_100 = "CLASS_100",
2714
- CLASS_300 = "CLASS_300",
2715
- CLASS_480 = "CLASS_480"
2716
- }
3533
+ export declare const Xavc4kIntraVbrProfileClass: {
3534
+ readonly CLASS_100: "CLASS_100";
3535
+ readonly CLASS_300: "CLASS_300";
3536
+ readonly CLASS_480: "CLASS_480";
3537
+ };
3538
+ /**
3539
+ * @public
3540
+ */
3541
+ export type Xavc4kIntraVbrProfileClass = (typeof Xavc4kIntraVbrProfileClass)[keyof typeof Xavc4kIntraVbrProfileClass];
2717
3542
  /**
2718
3543
  * @public
2719
3544
  * Required when you set (Profile) under (VideoDescription)>(CodecSettings)>(XavcSettings) to the value XAVC_4K_INTRA_VBR.
@@ -2726,41 +3551,66 @@ export interface Xavc4kIntraVbrProfileSettings {
2726
3551
  }
2727
3552
  /**
2728
3553
  * @public
3554
+ * @enum
2729
3555
  */
2730
- export declare enum Xavc4kProfileBitrateClass {
2731
- BITRATE_CLASS_100 = "BITRATE_CLASS_100",
2732
- BITRATE_CLASS_140 = "BITRATE_CLASS_140",
2733
- BITRATE_CLASS_200 = "BITRATE_CLASS_200"
2734
- }
3556
+ export declare const Xavc4kProfileBitrateClass: {
3557
+ readonly BITRATE_CLASS_100: "BITRATE_CLASS_100";
3558
+ readonly BITRATE_CLASS_140: "BITRATE_CLASS_140";
3559
+ readonly BITRATE_CLASS_200: "BITRATE_CLASS_200";
3560
+ };
2735
3561
  /**
2736
3562
  * @public
2737
3563
  */
2738
- export declare enum Xavc4kProfileCodecProfile {
2739
- HIGH = "HIGH",
2740
- HIGH_422 = "HIGH_422"
2741
- }
3564
+ export type Xavc4kProfileBitrateClass = (typeof Xavc4kProfileBitrateClass)[keyof typeof Xavc4kProfileBitrateClass];
2742
3565
  /**
2743
3566
  * @public
3567
+ * @enum
2744
3568
  */
2745
- export declare enum XavcFlickerAdaptiveQuantization {
2746
- DISABLED = "DISABLED",
2747
- ENABLED = "ENABLED"
2748
- }
3569
+ export declare const Xavc4kProfileCodecProfile: {
3570
+ readonly HIGH: "HIGH";
3571
+ readonly HIGH_422: "HIGH_422";
3572
+ };
2749
3573
  /**
2750
3574
  * @public
2751
3575
  */
2752
- export declare enum XavcGopBReference {
2753
- DISABLED = "DISABLED",
2754
- ENABLED = "ENABLED"
2755
- }
3576
+ export type Xavc4kProfileCodecProfile = (typeof Xavc4kProfileCodecProfile)[keyof typeof Xavc4kProfileCodecProfile];
2756
3577
  /**
2757
3578
  * @public
3579
+ * @enum
2758
3580
  */
2759
- export declare enum Xavc4kProfileQualityTuningLevel {
2760
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
2761
- SINGLE_PASS = "SINGLE_PASS",
2762
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ"
2763
- }
3581
+ export declare const XavcFlickerAdaptiveQuantization: {
3582
+ readonly DISABLED: "DISABLED";
3583
+ readonly ENABLED: "ENABLED";
3584
+ };
3585
+ /**
3586
+ * @public
3587
+ */
3588
+ export type XavcFlickerAdaptiveQuantization = (typeof XavcFlickerAdaptiveQuantization)[keyof typeof XavcFlickerAdaptiveQuantization];
3589
+ /**
3590
+ * @public
3591
+ * @enum
3592
+ */
3593
+ export declare const XavcGopBReference: {
3594
+ readonly DISABLED: "DISABLED";
3595
+ readonly ENABLED: "ENABLED";
3596
+ };
3597
+ /**
3598
+ * @public
3599
+ */
3600
+ export type XavcGopBReference = (typeof XavcGopBReference)[keyof typeof XavcGopBReference];
3601
+ /**
3602
+ * @public
3603
+ * @enum
3604
+ */
3605
+ export declare const Xavc4kProfileQualityTuningLevel: {
3606
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
3607
+ readonly SINGLE_PASS: "SINGLE_PASS";
3608
+ readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
3609
+ };
3610
+ /**
3611
+ * @public
3612
+ */
3613
+ export type Xavc4kProfileQualityTuningLevel = (typeof Xavc4kProfileQualityTuningLevel)[keyof typeof Xavc4kProfileQualityTuningLevel];
2764
3614
  /**
2765
3615
  * @public
2766
3616
  * Required when you set (Profile) under (VideoDescription)>(CodecSettings)>(XavcSettings) to the value XAVC_4K.
@@ -2801,12 +3651,17 @@ export interface Xavc4kProfileSettings {
2801
3651
  }
2802
3652
  /**
2803
3653
  * @public
3654
+ * @enum
2804
3655
  */
2805
- export declare enum XavcHdIntraCbgProfileClass {
2806
- CLASS_100 = "CLASS_100",
2807
- CLASS_200 = "CLASS_200",
2808
- CLASS_50 = "CLASS_50"
2809
- }
3656
+ export declare const XavcHdIntraCbgProfileClass: {
3657
+ readonly CLASS_100: "CLASS_100";
3658
+ readonly CLASS_200: "CLASS_200";
3659
+ readonly CLASS_50: "CLASS_50";
3660
+ };
3661
+ /**
3662
+ * @public
3663
+ */
3664
+ export type XavcHdIntraCbgProfileClass = (typeof XavcHdIntraCbgProfileClass)[keyof typeof XavcHdIntraCbgProfileClass];
2810
3665
  /**
2811
3666
  * @public
2812
3667
  * Required when you set (Profile) under (VideoDescription)>(CodecSettings)>(XavcSettings) to the value XAVC_HD_INTRA_CBG.
@@ -2819,37 +3674,57 @@ export interface XavcHdIntraCbgProfileSettings {
2819
3674
  }
2820
3675
  /**
2821
3676
  * @public
3677
+ * @enum
2822
3678
  */
2823
- export declare enum XavcHdProfileBitrateClass {
2824
- BITRATE_CLASS_25 = "BITRATE_CLASS_25",
2825
- BITRATE_CLASS_35 = "BITRATE_CLASS_35",
2826
- BITRATE_CLASS_50 = "BITRATE_CLASS_50"
2827
- }
3679
+ export declare const XavcHdProfileBitrateClass: {
3680
+ readonly BITRATE_CLASS_25: "BITRATE_CLASS_25";
3681
+ readonly BITRATE_CLASS_35: "BITRATE_CLASS_35";
3682
+ readonly BITRATE_CLASS_50: "BITRATE_CLASS_50";
3683
+ };
2828
3684
  /**
2829
3685
  * @public
2830
3686
  */
2831
- export declare enum XavcInterlaceMode {
2832
- BOTTOM_FIELD = "BOTTOM_FIELD",
2833
- FOLLOW_BOTTOM_FIELD = "FOLLOW_BOTTOM_FIELD",
2834
- FOLLOW_TOP_FIELD = "FOLLOW_TOP_FIELD",
2835
- PROGRESSIVE = "PROGRESSIVE",
2836
- TOP_FIELD = "TOP_FIELD"
2837
- }
3687
+ export type XavcHdProfileBitrateClass = (typeof XavcHdProfileBitrateClass)[keyof typeof XavcHdProfileBitrateClass];
2838
3688
  /**
2839
3689
  * @public
3690
+ * @enum
2840
3691
  */
2841
- export declare enum XavcHdProfileQualityTuningLevel {
2842
- MULTI_PASS_HQ = "MULTI_PASS_HQ",
2843
- SINGLE_PASS = "SINGLE_PASS",
2844
- SINGLE_PASS_HQ = "SINGLE_PASS_HQ"
2845
- }
3692
+ export declare const XavcInterlaceMode: {
3693
+ readonly BOTTOM_FIELD: "BOTTOM_FIELD";
3694
+ readonly FOLLOW_BOTTOM_FIELD: "FOLLOW_BOTTOM_FIELD";
3695
+ readonly FOLLOW_TOP_FIELD: "FOLLOW_TOP_FIELD";
3696
+ readonly PROGRESSIVE: "PROGRESSIVE";
3697
+ readonly TOP_FIELD: "TOP_FIELD";
3698
+ };
2846
3699
  /**
2847
3700
  * @public
2848
3701
  */
2849
- export declare enum XavcHdProfileTelecine {
2850
- HARD = "HARD",
2851
- NONE = "NONE"
2852
- }
3702
+ export type XavcInterlaceMode = (typeof XavcInterlaceMode)[keyof typeof XavcInterlaceMode];
3703
+ /**
3704
+ * @public
3705
+ * @enum
3706
+ */
3707
+ export declare const XavcHdProfileQualityTuningLevel: {
3708
+ readonly MULTI_PASS_HQ: "MULTI_PASS_HQ";
3709
+ readonly SINGLE_PASS: "SINGLE_PASS";
3710
+ readonly SINGLE_PASS_HQ: "SINGLE_PASS_HQ";
3711
+ };
3712
+ /**
3713
+ * @public
3714
+ */
3715
+ export type XavcHdProfileQualityTuningLevel = (typeof XavcHdProfileQualityTuningLevel)[keyof typeof XavcHdProfileQualityTuningLevel];
3716
+ /**
3717
+ * @public
3718
+ * @enum
3719
+ */
3720
+ export declare const XavcHdProfileTelecine: {
3721
+ readonly HARD: "HARD";
3722
+ readonly NONE: "NONE";
3723
+ };
3724
+ /**
3725
+ * @public
3726
+ */
3727
+ export type XavcHdProfileTelecine = (typeof XavcHdProfileTelecine)[keyof typeof XavcHdProfileTelecine];
2853
3728
  /**
2854
3729
  * @public
2855
3730
  * Required when you set (Profile) under (VideoDescription)>(CodecSettings)>(XavcSettings) to the value XAVC_HD.
@@ -3018,40 +3893,65 @@ export interface VideoCodecSettings {
3018
3893
  }
3019
3894
  /**
3020
3895
  * @public
3896
+ * @enum
3021
3897
  */
3022
- export declare enum ColorMetadata {
3023
- IGNORE = "IGNORE",
3024
- INSERT = "INSERT"
3025
- }
3898
+ export declare const ColorMetadata: {
3899
+ readonly IGNORE: "IGNORE";
3900
+ readonly INSERT: "INSERT";
3901
+ };
3026
3902
  /**
3027
3903
  * @public
3028
3904
  */
3029
- export declare enum DropFrameTimecode {
3030
- DISABLED = "DISABLED",
3031
- ENABLED = "ENABLED"
3032
- }
3905
+ export type ColorMetadata = (typeof ColorMetadata)[keyof typeof ColorMetadata];
3033
3906
  /**
3034
3907
  * @public
3908
+ * @enum
3035
3909
  */
3036
- export declare enum RespondToAfd {
3037
- NONE = "NONE",
3038
- PASSTHROUGH = "PASSTHROUGH",
3039
- RESPOND = "RESPOND"
3040
- }
3910
+ export declare const DropFrameTimecode: {
3911
+ readonly DISABLED: "DISABLED";
3912
+ readonly ENABLED: "ENABLED";
3913
+ };
3041
3914
  /**
3042
3915
  * @public
3043
3916
  */
3044
- export declare enum ScalingBehavior {
3045
- DEFAULT = "DEFAULT",
3046
- STRETCH_TO_OUTPUT = "STRETCH_TO_OUTPUT"
3047
- }
3917
+ export type DropFrameTimecode = (typeof DropFrameTimecode)[keyof typeof DropFrameTimecode];
3048
3918
  /**
3049
3919
  * @public
3920
+ * @enum
3050
3921
  */
3051
- export declare enum VideoTimecodeInsertion {
3052
- DISABLED = "DISABLED",
3053
- PIC_TIMING_SEI = "PIC_TIMING_SEI"
3054
- }
3922
+ export declare const RespondToAfd: {
3923
+ readonly NONE: "NONE";
3924
+ readonly PASSTHROUGH: "PASSTHROUGH";
3925
+ readonly RESPOND: "RESPOND";
3926
+ };
3927
+ /**
3928
+ * @public
3929
+ */
3930
+ export type RespondToAfd = (typeof RespondToAfd)[keyof typeof RespondToAfd];
3931
+ /**
3932
+ * @public
3933
+ * @enum
3934
+ */
3935
+ export declare const ScalingBehavior: {
3936
+ readonly DEFAULT: "DEFAULT";
3937
+ readonly STRETCH_TO_OUTPUT: "STRETCH_TO_OUTPUT";
3938
+ };
3939
+ /**
3940
+ * @public
3941
+ */
3942
+ export type ScalingBehavior = (typeof ScalingBehavior)[keyof typeof ScalingBehavior];
3943
+ /**
3944
+ * @public
3945
+ * @enum
3946
+ */
3947
+ export declare const VideoTimecodeInsertion: {
3948
+ readonly DISABLED: "DISABLED";
3949
+ readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
3950
+ };
3951
+ /**
3952
+ * @public
3953
+ */
3954
+ export type VideoTimecodeInsertion = (typeof VideoTimecodeInsertion)[keyof typeof VideoTimecodeInsertion];
3055
3955
  /**
3056
3956
  * @public
3057
3957
  * Specify YUV limits and RGB tolerances when you set Sample range conversion to Limited range clip.
@@ -3076,32 +3976,47 @@ export interface ClipLimits {
3076
3976
  }
3077
3977
  /**
3078
3978
  * @public
3979
+ * @enum
3079
3980
  */
3080
- export declare enum ColorSpaceConversion {
3081
- FORCE_601 = "FORCE_601",
3082
- FORCE_709 = "FORCE_709",
3083
- FORCE_HDR10 = "FORCE_HDR10",
3084
- FORCE_HLG_2020 = "FORCE_HLG_2020",
3085
- FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
3086
- FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
3087
- FORCE_P3DCI = "FORCE_P3DCI",
3088
- NONE = "NONE"
3089
- }
3981
+ export declare const ColorSpaceConversion: {
3982
+ readonly FORCE_601: "FORCE_601";
3983
+ readonly FORCE_709: "FORCE_709";
3984
+ readonly FORCE_HDR10: "FORCE_HDR10";
3985
+ readonly FORCE_HLG_2020: "FORCE_HLG_2020";
3986
+ readonly FORCE_P3D65_HDR: "FORCE_P3D65_HDR";
3987
+ readonly FORCE_P3D65_SDR: "FORCE_P3D65_SDR";
3988
+ readonly FORCE_P3DCI: "FORCE_P3DCI";
3989
+ readonly NONE: "NONE";
3990
+ };
3090
3991
  /**
3091
3992
  * @public
3092
3993
  */
3093
- export declare enum HDRToSDRToneMapper {
3094
- PRESERVE_DETAILS = "PRESERVE_DETAILS",
3095
- VIBRANT = "VIBRANT"
3096
- }
3994
+ export type ColorSpaceConversion = (typeof ColorSpaceConversion)[keyof typeof ColorSpaceConversion];
3097
3995
  /**
3098
3996
  * @public
3997
+ * @enum
3099
3998
  */
3100
- export declare enum SampleRangeConversion {
3101
- LIMITED_RANGE_CLIP = "LIMITED_RANGE_CLIP",
3102
- LIMITED_RANGE_SQUEEZE = "LIMITED_RANGE_SQUEEZE",
3103
- NONE = "NONE"
3104
- }
3999
+ export declare const HDRToSDRToneMapper: {
4000
+ readonly PRESERVE_DETAILS: "PRESERVE_DETAILS";
4001
+ readonly VIBRANT: "VIBRANT";
4002
+ };
4003
+ /**
4004
+ * @public
4005
+ */
4006
+ export type HDRToSDRToneMapper = (typeof HDRToSDRToneMapper)[keyof typeof HDRToSDRToneMapper];
4007
+ /**
4008
+ * @public
4009
+ * @enum
4010
+ */
4011
+ export declare const SampleRangeConversion: {
4012
+ readonly LIMITED_RANGE_CLIP: "LIMITED_RANGE_CLIP";
4013
+ readonly LIMITED_RANGE_SQUEEZE: "LIMITED_RANGE_SQUEEZE";
4014
+ readonly NONE: "NONE";
4015
+ };
4016
+ /**
4017
+ * @public
4018
+ */
4019
+ export type SampleRangeConversion = (typeof SampleRangeConversion)[keyof typeof SampleRangeConversion];
3105
4020
  /**
3106
4021
  * @public
3107
4022
  * Settings for color correction.
@@ -3155,28 +4070,43 @@ export interface ColorCorrector {
3155
4070
  }
3156
4071
  /**
3157
4072
  * @public
4073
+ * @enum
3158
4074
  */
3159
- export declare enum DeinterlaceAlgorithm {
3160
- BLEND = "BLEND",
3161
- BLEND_TICKER = "BLEND_TICKER",
3162
- INTERPOLATE = "INTERPOLATE",
3163
- INTERPOLATE_TICKER = "INTERPOLATE_TICKER"
3164
- }
4075
+ export declare const DeinterlaceAlgorithm: {
4076
+ readonly BLEND: "BLEND";
4077
+ readonly BLEND_TICKER: "BLEND_TICKER";
4078
+ readonly INTERPOLATE: "INTERPOLATE";
4079
+ readonly INTERPOLATE_TICKER: "INTERPOLATE_TICKER";
4080
+ };
3165
4081
  /**
3166
4082
  * @public
3167
4083
  */
3168
- export declare enum DeinterlacerControl {
3169
- FORCE_ALL_FRAMES = "FORCE_ALL_FRAMES",
3170
- NORMAL = "NORMAL"
3171
- }
4084
+ export type DeinterlaceAlgorithm = (typeof DeinterlaceAlgorithm)[keyof typeof DeinterlaceAlgorithm];
3172
4085
  /**
3173
4086
  * @public
4087
+ * @enum
3174
4088
  */
3175
- export declare enum DeinterlacerMode {
3176
- ADAPTIVE = "ADAPTIVE",
3177
- DEINTERLACE = "DEINTERLACE",
3178
- INVERSE_TELECINE = "INVERSE_TELECINE"
3179
- }
4089
+ export declare const DeinterlacerControl: {
4090
+ readonly FORCE_ALL_FRAMES: "FORCE_ALL_FRAMES";
4091
+ readonly NORMAL: "NORMAL";
4092
+ };
4093
+ /**
4094
+ * @public
4095
+ */
4096
+ export type DeinterlacerControl = (typeof DeinterlacerControl)[keyof typeof DeinterlacerControl];
4097
+ /**
4098
+ * @public
4099
+ * @enum
4100
+ */
4101
+ export declare const DeinterlacerMode: {
4102
+ readonly ADAPTIVE: "ADAPTIVE";
4103
+ readonly DEINTERLACE: "DEINTERLACE";
4104
+ readonly INVERSE_TELECINE: "INVERSE_TELECINE";
4105
+ };
4106
+ /**
4107
+ * @public
4108
+ */
4109
+ export type DeinterlacerMode = (typeof DeinterlacerMode)[keyof typeof DeinterlacerMode];
3180
4110
  /**
3181
4111
  * @public
3182
4112
  * Settings for deinterlacer
@@ -3211,26 +4141,41 @@ export interface DolbyVisionLevel6Metadata {
3211
4141
  }
3212
4142
  /**
3213
4143
  * @public
4144
+ * @enum
3214
4145
  */
3215
- export declare enum DolbyVisionLevel6Mode {
3216
- PASSTHROUGH = "PASSTHROUGH",
3217
- RECALCULATE = "RECALCULATE",
3218
- SPECIFY = "SPECIFY"
3219
- }
4146
+ export declare const DolbyVisionLevel6Mode: {
4147
+ readonly PASSTHROUGH: "PASSTHROUGH";
4148
+ readonly RECALCULATE: "RECALCULATE";
4149
+ readonly SPECIFY: "SPECIFY";
4150
+ };
3220
4151
  /**
3221
4152
  * @public
3222
4153
  */
3223
- export declare enum DolbyVisionMapping {
3224
- HDR10_1000 = "HDR10_1000",
3225
- HDR10_NOMAP = "HDR10_NOMAP"
3226
- }
4154
+ export type DolbyVisionLevel6Mode = (typeof DolbyVisionLevel6Mode)[keyof typeof DolbyVisionLevel6Mode];
3227
4155
  /**
3228
4156
  * @public
4157
+ * @enum
3229
4158
  */
3230
- export declare enum DolbyVisionProfile {
3231
- PROFILE_5 = "PROFILE_5",
3232
- PROFILE_8_1 = "PROFILE_8_1"
3233
- }
4159
+ export declare const DolbyVisionMapping: {
4160
+ readonly HDR10_1000: "HDR10_1000";
4161
+ readonly HDR10_NOMAP: "HDR10_NOMAP";
4162
+ };
4163
+ /**
4164
+ * @public
4165
+ */
4166
+ export type DolbyVisionMapping = (typeof DolbyVisionMapping)[keyof typeof DolbyVisionMapping];
4167
+ /**
4168
+ * @public
4169
+ * @enum
4170
+ */
4171
+ export declare const DolbyVisionProfile: {
4172
+ readonly PROFILE_5: "PROFILE_5";
4173
+ readonly PROFILE_8_1: "PROFILE_8_1";
4174
+ };
4175
+ /**
4176
+ * @public
4177
+ */
4178
+ export type DolbyVisionProfile = (typeof DolbyVisionProfile)[keyof typeof DolbyVisionProfile];
3234
4179
  /**
3235
4180
  * @public
3236
4181
  * Create Dolby Vision Profile 5 or Profile 8.1 compatible video output.
@@ -3269,17 +4214,22 @@ export interface Hdr10Plus {
3269
4214
  }
3270
4215
  /**
3271
4216
  * @public
4217
+ * @enum
3272
4218
  */
3273
- export declare enum NoiseReducerFilter {
3274
- BILATERAL = "BILATERAL",
3275
- CONSERVE = "CONSERVE",
3276
- GAUSSIAN = "GAUSSIAN",
3277
- LANCZOS = "LANCZOS",
3278
- MEAN = "MEAN",
3279
- SHARPEN = "SHARPEN",
3280
- SPATIAL = "SPATIAL",
3281
- TEMPORAL = "TEMPORAL"
3282
- }
4219
+ export declare const NoiseReducerFilter: {
4220
+ readonly BILATERAL: "BILATERAL";
4221
+ readonly CONSERVE: "CONSERVE";
4222
+ readonly GAUSSIAN: "GAUSSIAN";
4223
+ readonly LANCZOS: "LANCZOS";
4224
+ readonly MEAN: "MEAN";
4225
+ readonly SHARPEN: "SHARPEN";
4226
+ readonly SPATIAL: "SPATIAL";
4227
+ readonly TEMPORAL: "TEMPORAL";
4228
+ };
4229
+ /**
4230
+ * @public
4231
+ */
4232
+ export type NoiseReducerFilter = (typeof NoiseReducerFilter)[keyof typeof NoiseReducerFilter];
3283
4233
  /**
3284
4234
  * @public
3285
4235
  * Settings for a noise reducer filter
@@ -3310,20 +4260,30 @@ export interface NoiseReducerSpatialFilterSettings {
3310
4260
  }
3311
4261
  /**
3312
4262
  * @public
4263
+ * @enum
3313
4264
  */
3314
- export declare enum NoiseFilterPostTemporalSharpening {
3315
- AUTO = "AUTO",
3316
- DISABLED = "DISABLED",
3317
- ENABLED = "ENABLED"
3318
- }
4265
+ export declare const NoiseFilterPostTemporalSharpening: {
4266
+ readonly AUTO: "AUTO";
4267
+ readonly DISABLED: "DISABLED";
4268
+ readonly ENABLED: "ENABLED";
4269
+ };
3319
4270
  /**
3320
4271
  * @public
3321
4272
  */
3322
- export declare enum NoiseFilterPostTemporalSharpeningStrength {
3323
- HIGH = "HIGH",
3324
- LOW = "LOW",
3325
- MEDIUM = "MEDIUM"
3326
- }
4273
+ export type NoiseFilterPostTemporalSharpening = (typeof NoiseFilterPostTemporalSharpening)[keyof typeof NoiseFilterPostTemporalSharpening];
4274
+ /**
4275
+ * @public
4276
+ * @enum
4277
+ */
4278
+ export declare const NoiseFilterPostTemporalSharpeningStrength: {
4279
+ readonly HIGH: "HIGH";
4280
+ readonly LOW: "LOW";
4281
+ readonly MEDIUM: "MEDIUM";
4282
+ };
4283
+ /**
4284
+ * @public
4285
+ */
4286
+ export type NoiseFilterPostTemporalSharpeningStrength = (typeof NoiseFilterPostTemporalSharpeningStrength)[keyof typeof NoiseFilterPostTemporalSharpeningStrength];
3327
4287
  /**
3328
4288
  * @public
3329
4289
  * Noise reducer filter settings for temporal filter.
@@ -3374,14 +4334,19 @@ export interface NoiseReducer {
3374
4334
  }
3375
4335
  /**
3376
4336
  * @public
4337
+ * @enum
3377
4338
  */
3378
- export declare enum WatermarkingStrength {
3379
- DEFAULT = "DEFAULT",
3380
- LIGHTER = "LIGHTER",
3381
- LIGHTEST = "LIGHTEST",
3382
- STRONGER = "STRONGER",
3383
- STRONGEST = "STRONGEST"
3384
- }
4339
+ export declare const WatermarkingStrength: {
4340
+ readonly DEFAULT: "DEFAULT";
4341
+ readonly LIGHTER: "LIGHTER";
4342
+ readonly LIGHTEST: "LIGHTEST";
4343
+ readonly STRONGER: "STRONGER";
4344
+ readonly STRONGEST: "STRONGEST";
4345
+ };
4346
+ /**
4347
+ * @public
4348
+ */
4349
+ export type WatermarkingStrength = (typeof WatermarkingStrength)[keyof typeof WatermarkingStrength];
3385
4350
  /**
3386
4351
  * @public
3387
4352
  * For forensic video watermarking, MediaConvert supports Nagra NexGuard File Marker watermarking. MediaConvert supports both PreRelease Content (NGPR/G2) and OTT Streaming workflows.
@@ -3416,18 +4381,23 @@ export interface PartnerWatermarking {
3416
4381
  }
3417
4382
  /**
3418
4383
  * @public
4384
+ * @enum
3419
4385
  */
3420
- export declare enum TimecodeBurninPosition {
3421
- BOTTOM_CENTER = "BOTTOM_CENTER",
3422
- BOTTOM_LEFT = "BOTTOM_LEFT",
3423
- BOTTOM_RIGHT = "BOTTOM_RIGHT",
3424
- MIDDLE_CENTER = "MIDDLE_CENTER",
3425
- MIDDLE_LEFT = "MIDDLE_LEFT",
3426
- MIDDLE_RIGHT = "MIDDLE_RIGHT",
3427
- TOP_CENTER = "TOP_CENTER",
3428
- TOP_LEFT = "TOP_LEFT",
3429
- TOP_RIGHT = "TOP_RIGHT"
3430
- }
4386
+ export declare const TimecodeBurninPosition: {
4387
+ readonly BOTTOM_CENTER: "BOTTOM_CENTER";
4388
+ readonly BOTTOM_LEFT: "BOTTOM_LEFT";
4389
+ readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
4390
+ readonly MIDDLE_CENTER: "MIDDLE_CENTER";
4391
+ readonly MIDDLE_LEFT: "MIDDLE_LEFT";
4392
+ readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
4393
+ readonly TOP_CENTER: "TOP_CENTER";
4394
+ readonly TOP_LEFT: "TOP_LEFT";
4395
+ readonly TOP_RIGHT: "TOP_RIGHT";
4396
+ };
4397
+ /**
4398
+ * @public
4399
+ */
4400
+ export type TimecodeBurninPosition = (typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
3431
4401
  /**
3432
4402
  * @public
3433
4403
  * Settings for burning the output timecode and specified prefix into the output.
@@ -3616,12 +4586,17 @@ export interface OutputGroup {
3616
4586
  }
3617
4587
  /**
3618
4588
  * @public
4589
+ * @enum
3619
4590
  */
3620
- export declare enum TimecodeSource {
3621
- EMBEDDED = "EMBEDDED",
3622
- SPECIFIEDSTART = "SPECIFIEDSTART",
3623
- ZEROBASED = "ZEROBASED"
3624
- }
4591
+ export declare const TimecodeSource: {
4592
+ readonly EMBEDDED: "EMBEDDED";
4593
+ readonly SPECIFIEDSTART: "SPECIFIEDSTART";
4594
+ readonly ZEROBASED: "ZEROBASED";
4595
+ };
4596
+ /**
4597
+ * @public
4598
+ */
4599
+ export type TimecodeSource = (typeof TimecodeSource)[keyof typeof TimecodeSource];
3625
4600
  /**
3626
4601
  * @public
3627
4602
  * These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
@@ -3710,41 +4685,56 @@ export interface JobSettings {
3710
4685
  }
3711
4686
  /**
3712
4687
  * @public
4688
+ * @enum
3713
4689
  */
3714
- export declare enum SimulateReservedQueue {
3715
- DISABLED = "DISABLED",
3716
- ENABLED = "ENABLED"
3717
- }
4690
+ export declare const SimulateReservedQueue: {
4691
+ readonly DISABLED: "DISABLED";
4692
+ readonly ENABLED: "ENABLED";
4693
+ };
3718
4694
  /**
3719
4695
  * @public
3720
4696
  */
3721
- export declare enum JobStatus {
3722
- CANCELED = "CANCELED",
3723
- COMPLETE = "COMPLETE",
3724
- ERROR = "ERROR",
3725
- PROGRESSING = "PROGRESSING",
3726
- SUBMITTED = "SUBMITTED"
3727
- }
4697
+ export type SimulateReservedQueue = (typeof SimulateReservedQueue)[keyof typeof SimulateReservedQueue];
3728
4698
  /**
3729
4699
  * @public
4700
+ * @enum
3730
4701
  */
3731
- export declare enum StatusUpdateInterval {
3732
- SECONDS_10 = "SECONDS_10",
3733
- SECONDS_12 = "SECONDS_12",
3734
- SECONDS_120 = "SECONDS_120",
3735
- SECONDS_15 = "SECONDS_15",
3736
- SECONDS_180 = "SECONDS_180",
3737
- SECONDS_20 = "SECONDS_20",
3738
- SECONDS_240 = "SECONDS_240",
3739
- SECONDS_30 = "SECONDS_30",
3740
- SECONDS_300 = "SECONDS_300",
3741
- SECONDS_360 = "SECONDS_360",
3742
- SECONDS_420 = "SECONDS_420",
3743
- SECONDS_480 = "SECONDS_480",
3744
- SECONDS_540 = "SECONDS_540",
3745
- SECONDS_60 = "SECONDS_60",
3746
- SECONDS_600 = "SECONDS_600"
3747
- }
4702
+ export declare const JobStatus: {
4703
+ readonly CANCELED: "CANCELED";
4704
+ readonly COMPLETE: "COMPLETE";
4705
+ readonly ERROR: "ERROR";
4706
+ readonly PROGRESSING: "PROGRESSING";
4707
+ readonly SUBMITTED: "SUBMITTED";
4708
+ };
4709
+ /**
4710
+ * @public
4711
+ */
4712
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
4713
+ /**
4714
+ * @public
4715
+ * @enum
4716
+ */
4717
+ export declare const StatusUpdateInterval: {
4718
+ readonly SECONDS_10: "SECONDS_10";
4719
+ readonly SECONDS_12: "SECONDS_12";
4720
+ readonly SECONDS_120: "SECONDS_120";
4721
+ readonly SECONDS_15: "SECONDS_15";
4722
+ readonly SECONDS_180: "SECONDS_180";
4723
+ readonly SECONDS_20: "SECONDS_20";
4724
+ readonly SECONDS_240: "SECONDS_240";
4725
+ readonly SECONDS_30: "SECONDS_30";
4726
+ readonly SECONDS_300: "SECONDS_300";
4727
+ readonly SECONDS_360: "SECONDS_360";
4728
+ readonly SECONDS_420: "SECONDS_420";
4729
+ readonly SECONDS_480: "SECONDS_480";
4730
+ readonly SECONDS_540: "SECONDS_540";
4731
+ readonly SECONDS_60: "SECONDS_60";
4732
+ readonly SECONDS_600: "SECONDS_600";
4733
+ };
4734
+ /**
4735
+ * @public
4736
+ */
4737
+ export type StatusUpdateInterval = (typeof StatusUpdateInterval)[keyof typeof StatusUpdateInterval];
3748
4738
  /**
3749
4739
  * @public
3750
4740
  * Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.
@@ -3925,11 +4915,16 @@ export interface JobTemplateSettings {
3925
4915
  }
3926
4916
  /**
3927
4917
  * @public
4918
+ * @enum
3928
4919
  */
3929
- export declare enum Type {
3930
- CUSTOM = "CUSTOM",
3931
- SYSTEM = "SYSTEM"
3932
- }
4920
+ export declare const Type: {
4921
+ readonly CUSTOM: "CUSTOM";
4922
+ readonly SYSTEM: "SYSTEM";
4923
+ };
4924
+ /**
4925
+ * @public
4926
+ */
4927
+ export type Type = (typeof Type)[keyof typeof Type];
3933
4928
  /**
3934
4929
  * @public
3935
4930
  * A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
@@ -4050,31 +5045,51 @@ export interface Preset {
4050
5045
  }
4051
5046
  /**
4052
5047
  * @public
5048
+ * @enum
4053
5049
  */
4054
- export declare enum PricingPlan {
4055
- ON_DEMAND = "ON_DEMAND",
4056
- RESERVED = "RESERVED"
4057
- }
5050
+ export declare const PricingPlan: {
5051
+ readonly ON_DEMAND: "ON_DEMAND";
5052
+ readonly RESERVED: "RESERVED";
5053
+ };
4058
5054
  /**
4059
5055
  * @public
4060
5056
  */
4061
- export declare enum Commitment {
4062
- ONE_YEAR = "ONE_YEAR"
4063
- }
5057
+ export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
4064
5058
  /**
4065
5059
  * @public
5060
+ * @enum
4066
5061
  */
4067
- export declare enum RenewalType {
4068
- AUTO_RENEW = "AUTO_RENEW",
4069
- EXPIRE = "EXPIRE"
4070
- }
5062
+ export declare const Commitment: {
5063
+ readonly ONE_YEAR: "ONE_YEAR";
5064
+ };
4071
5065
  /**
4072
5066
  * @public
4073
5067
  */
4074
- export declare enum ReservationPlanStatus {
4075
- ACTIVE = "ACTIVE",
4076
- EXPIRED = "EXPIRED"
4077
- }
5068
+ export type Commitment = (typeof Commitment)[keyof typeof Commitment];
5069
+ /**
5070
+ * @public
5071
+ * @enum
5072
+ */
5073
+ export declare const RenewalType: {
5074
+ readonly AUTO_RENEW: "AUTO_RENEW";
5075
+ readonly EXPIRE: "EXPIRE";
5076
+ };
5077
+ /**
5078
+ * @public
5079
+ */
5080
+ export type RenewalType = (typeof RenewalType)[keyof typeof RenewalType];
5081
+ /**
5082
+ * @public
5083
+ * @enum
5084
+ */
5085
+ export declare const ReservationPlanStatus: {
5086
+ readonly ACTIVE: "ACTIVE";
5087
+ readonly EXPIRED: "EXPIRED";
5088
+ };
5089
+ /**
5090
+ * @public
5091
+ */
5092
+ export type ReservationPlanStatus = (typeof ReservationPlanStatus)[keyof typeof ReservationPlanStatus];
4078
5093
  /**
4079
5094
  * @public
4080
5095
  * Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
@@ -4107,11 +5122,16 @@ export interface ReservationPlan {
4107
5122
  }
4108
5123
  /**
4109
5124
  * @public
5125
+ * @enum
4110
5126
  */
4111
- export declare enum QueueStatus {
4112
- ACTIVE = "ACTIVE",
4113
- PAUSED = "PAUSED"
4114
- }
5127
+ export declare const QueueStatus: {
5128
+ readonly ACTIVE: "ACTIVE";
5129
+ readonly PAUSED: "PAUSED";
5130
+ };
5131
+ /**
5132
+ * @public
5133
+ */
5134
+ export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
4115
5135
  /**
4116
5136
  * @public
4117
5137
  * You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
@@ -4532,11 +5552,16 @@ export interface DeleteQueueResponse {
4532
5552
  }
4533
5553
  /**
4534
5554
  * @public
5555
+ * @enum
4535
5556
  */
4536
- export declare enum DescribeEndpointsMode {
4537
- DEFAULT = "DEFAULT",
4538
- GET_ONLY = "GET_ONLY"
4539
- }
5557
+ export declare const DescribeEndpointsMode: {
5558
+ readonly DEFAULT: "DEFAULT";
5559
+ readonly GET_ONLY: "GET_ONLY";
5560
+ };
5561
+ /**
5562
+ * @public
5563
+ */
5564
+ export type DescribeEndpointsMode = (typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
4540
5565
  /**
4541
5566
  * @public
4542
5567
  * DescribeEndpointsRequest