@aws-sdk/client-medialive 3.428.0 → 3.430.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.
@@ -62,12 +62,12 @@ export interface AudioNormalizationSettings {
62
62
  * @public
63
63
  * Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 conforms to the EBU R-128 specification.
64
64
  */
65
- Algorithm?: AudioNormalizationAlgorithm | string;
65
+ Algorithm?: AudioNormalizationAlgorithm;
66
66
  /**
67
67
  * @public
68
68
  * When set to correctAudio the output audio is corrected using the chosen algorithm. If set to measureOnly, the audio will be measured but not adjusted.
69
69
  */
70
- AlgorithmControl?: AudioNormalizationAlgorithmControl | string;
70
+ AlgorithmControl?: AudioNormalizationAlgorithmControl;
71
71
  /**
72
72
  * @public
73
73
  * Target LKFS(loudness) to adjust volume to. If no value is entered, a default value will be used according to the chosen algorithm. The CALM Act (1770-1) recommends a target of -24 LKFS. The EBU R-128 specification (1770-2) recommends a target of -23 LKFS.
@@ -126,7 +126,7 @@ export interface NielsenCBET {
126
126
  * @public
127
127
  * Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
128
128
  */
129
- CbetStepaside: NielsenWatermarksCbetStepaside | string | undefined;
129
+ CbetStepaside: NielsenWatermarksCbetStepaside | undefined;
130
130
  /**
131
131
  * @public
132
132
  * Enter the CBET Source ID (CSID) to use in the watermark
@@ -185,7 +185,7 @@ export interface NielsenNaesIiNw {
185
185
  * Choose the timezone for the time stamps in the watermark. If not provided,
186
186
  * the timestamps will be in Coordinated Universal Time (UTC)
187
187
  */
188
- Timezone?: NielsenWatermarkTimezones | string;
188
+ Timezone?: NielsenWatermarkTimezones;
189
189
  }
190
190
  /**
191
191
  * @public
@@ -203,7 +203,7 @@ export interface NielsenWatermarksSettings {
203
203
  * - PROGRAM_CONTENT
204
204
  * - FINAL_DISTRIBUTOR
205
205
  */
206
- NielsenDistributionType?: NielsenWatermarksDistributionTypes | string;
206
+ NielsenDistributionType?: NielsenWatermarksDistributionTypes;
207
207
  /**
208
208
  * @public
209
209
  * Complete these fields only if you want to insert watermarks of type Nielsen NAES II (N2) and Nielsen NAES VI (NW).
@@ -325,29 +325,29 @@ export interface AacSettings {
325
325
  * @public
326
326
  * Mono, Stereo, or 5.1 channel layout. Valid values depend on rate control mode and profile. The adReceiverMix setting receives a stereo description plus control track and emits a mono AAC encode of the description track, with control data emitted in the PES header as per ETSI TS 101 154 Annex E.
327
327
  */
328
- CodingMode?: AacCodingMode | string;
328
+ CodingMode?: AacCodingMode;
329
329
  /**
330
330
  * @public
331
331
  * Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair. The Audio Type field (audioType) will be set to 3, which signals to downstream systems that this stream contains "broadcaster mixed AD". Note that the input received by the encoder must contain pre-mixed audio; the encoder does not perform the mixing. The values in audioTypeControl and audioType (in AudioDescription) are ignored when set to broadcasterMixedAd.
332
332
  *
333
333
  * Leave set to "normal" when input does not contain pre-mixed audio + AD.
334
334
  */
335
- InputType?: AacInputType | string;
335
+ InputType?: AacInputType;
336
336
  /**
337
337
  * @public
338
338
  * AAC Profile.
339
339
  */
340
- Profile?: AacProfile | string;
340
+ Profile?: AacProfile;
341
341
  /**
342
342
  * @public
343
343
  * Rate Control Mode.
344
344
  */
345
- RateControlMode?: AacRateControlMode | string;
345
+ RateControlMode?: AacRateControlMode;
346
346
  /**
347
347
  * @public
348
348
  * Sets LATM / LOAS AAC output for raw containers.
349
349
  */
350
- RawFormat?: AacRawFormat | string;
350
+ RawFormat?: AacRawFormat;
351
351
  /**
352
352
  * @public
353
353
  * Sample rate in Hz. Valid values depend on rate control mode and profile.
@@ -357,12 +357,12 @@ export interface AacSettings {
357
357
  * @public
358
358
  * Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
359
359
  */
360
- Spec?: AacSpec | string;
360
+ Spec?: AacSpec;
361
361
  /**
362
362
  * @public
363
363
  * VBR Quality Level - Only used if rateControlMode is VBR.
364
364
  */
365
- VbrQuality?: AacVbrQuality | string;
365
+ VbrQuality?: AacVbrQuality;
366
366
  }
367
367
  /**
368
368
  * @public
@@ -458,12 +458,12 @@ export interface Ac3Settings {
458
458
  * @public
459
459
  * Specifies the bitstream mode (bsmod) for the emitted AC-3 stream. See ATSC A/52-2012 for background on these values.
460
460
  */
461
- BitstreamMode?: Ac3BitstreamMode | string;
461
+ BitstreamMode?: Ac3BitstreamMode;
462
462
  /**
463
463
  * @public
464
464
  * Dolby Digital coding mode. Determines number of channels.
465
465
  */
466
- CodingMode?: Ac3CodingMode | string;
466
+ CodingMode?: Ac3CodingMode;
467
467
  /**
468
468
  * @public
469
469
  * Sets the dialnorm for the output. If excluded and input audio is Dolby Digital, dialnorm will be passed through.
@@ -473,22 +473,22 @@ export interface Ac3Settings {
473
473
  * @public
474
474
  * If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
475
475
  */
476
- DrcProfile?: Ac3DrcProfile | string;
476
+ DrcProfile?: Ac3DrcProfile;
477
477
  /**
478
478
  * @public
479
479
  * When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid in codingMode32Lfe mode.
480
480
  */
481
- LfeFilter?: Ac3LfeFilter | string;
481
+ LfeFilter?: Ac3LfeFilter;
482
482
  /**
483
483
  * @public
484
484
  * When set to "followInput", encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
485
485
  */
486
- MetadataControl?: Ac3MetadataControl | string;
486
+ MetadataControl?: Ac3MetadataControl;
487
487
  /**
488
488
  * @public
489
489
  * Applies a 3 dB attenuation to the surround channels. Applies only when the coding mode parameter is CODING_MODE_3_2_LFE.
490
490
  */
491
- AttenuationControl?: Ac3AttenuationControl | string;
491
+ AttenuationControl?: Ac3AttenuationControl;
492
492
  }
493
493
  /**
494
494
  * @public
@@ -550,7 +550,7 @@ export interface Eac3AtmosSettings {
550
550
  * @public
551
551
  * Dolby Digital Plus with Dolby Atmos coding mode. Determines number of channels.
552
552
  */
553
- CodingMode?: Eac3AtmosCodingMode | string;
553
+ CodingMode?: Eac3AtmosCodingMode;
554
554
  /**
555
555
  * @public
556
556
  * Sets the dialnorm for the output. Default 23.
@@ -560,12 +560,12 @@ export interface Eac3AtmosSettings {
560
560
  * @public
561
561
  * Sets the Dolby dynamic range compression profile.
562
562
  */
563
- DrcLine?: Eac3AtmosDrcLine | string;
563
+ DrcLine?: Eac3AtmosDrcLine;
564
564
  /**
565
565
  * @public
566
566
  * Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.
567
567
  */
568
- DrcRf?: Eac3AtmosDrcRf | string;
568
+ DrcRf?: Eac3AtmosDrcRf;
569
569
  /**
570
570
  * @public
571
571
  * Height dimensional trim. Sets the maximum amount to attenuate the height channels when the downstream player isn??t configured to handle Dolby Digital Plus with Dolby Atmos and must remix the channels.
@@ -770,7 +770,7 @@ export interface Eac3Settings {
770
770
  * @public
771
771
  * When set to attenuate3Db, applies a 3 dB attenuation to the surround channels. Only used for 3/2 coding mode.
772
772
  */
773
- AttenuationControl?: Eac3AttenuationControl | string;
773
+ AttenuationControl?: Eac3AttenuationControl;
774
774
  /**
775
775
  * @public
776
776
  * Average bitrate in bits/second. Valid bitrates depend on the coding mode.
@@ -780,17 +780,17 @@ export interface Eac3Settings {
780
780
  * @public
781
781
  * Specifies the bitstream mode (bsmod) for the emitted E-AC-3 stream. See ATSC A/52-2012 (Annex E) for background on these values.
782
782
  */
783
- BitstreamMode?: Eac3BitstreamMode | string;
783
+ BitstreamMode?: Eac3BitstreamMode;
784
784
  /**
785
785
  * @public
786
786
  * Dolby Digital Plus coding mode. Determines number of channels.
787
787
  */
788
- CodingMode?: Eac3CodingMode | string;
788
+ CodingMode?: Eac3CodingMode;
789
789
  /**
790
790
  * @public
791
791
  * When set to enabled, activates a DC highpass filter for all input channels.
792
792
  */
793
- DcFilter?: Eac3DcFilter | string;
793
+ DcFilter?: Eac3DcFilter;
794
794
  /**
795
795
  * @public
796
796
  * Sets the dialnorm for the output. If blank and input audio is Dolby Digital Plus, dialnorm will be passed through.
@@ -800,22 +800,22 @@ export interface Eac3Settings {
800
800
  * @public
801
801
  * Sets the Dolby dynamic range compression profile.
802
802
  */
803
- DrcLine?: Eac3DrcLine | string;
803
+ DrcLine?: Eac3DrcLine;
804
804
  /**
805
805
  * @public
806
806
  * Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.
807
807
  */
808
- DrcRf?: Eac3DrcRf | string;
808
+ DrcRf?: Eac3DrcRf;
809
809
  /**
810
810
  * @public
811
811
  * When encoding 3/2 audio, setting to lfe enables the LFE channel
812
812
  */
813
- LfeControl?: Eac3LfeControl | string;
813
+ LfeControl?: Eac3LfeControl;
814
814
  /**
815
815
  * @public
816
816
  * When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid with codingMode32 coding mode.
817
817
  */
818
- LfeFilter?: Eac3LfeFilter | string;
818
+ LfeFilter?: Eac3LfeFilter;
819
819
  /**
820
820
  * @public
821
821
  * Left only/Right only center mix level. Only used for 3/2 coding mode.
@@ -840,32 +840,32 @@ export interface Eac3Settings {
840
840
  * @public
841
841
  * When set to followInput, encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
842
842
  */
843
- MetadataControl?: Eac3MetadataControl | string;
843
+ MetadataControl?: Eac3MetadataControl;
844
844
  /**
845
845
  * @public
846
846
  * When set to whenPossible, input DD+ audio will be passed through if it is present on the input. This detection is dynamic over the life of the transcode. Inputs that alternate between DD+ and non-DD+ content will have a consistent DD+ output as the system alternates between passthrough and encoding.
847
847
  */
848
- PassthroughControl?: Eac3PassthroughControl | string;
848
+ PassthroughControl?: Eac3PassthroughControl;
849
849
  /**
850
850
  * @public
851
851
  * When set to shift90Degrees, applies a 90-degree phase shift to the surround channels. Only used for 3/2 coding mode.
852
852
  */
853
- PhaseControl?: Eac3PhaseControl | string;
853
+ PhaseControl?: Eac3PhaseControl;
854
854
  /**
855
855
  * @public
856
856
  * Stereo downmix preference. Only used for 3/2 coding mode.
857
857
  */
858
- StereoDownmix?: Eac3StereoDownmix | string;
858
+ StereoDownmix?: Eac3StereoDownmix;
859
859
  /**
860
860
  * @public
861
861
  * When encoding 3/2 audio, sets whether an extra center back surround channel is matrix encoded into the left and right surround channels.
862
862
  */
863
- SurroundExMode?: Eac3SurroundExMode | string;
863
+ SurroundExMode?: Eac3SurroundExMode;
864
864
  /**
865
865
  * @public
866
866
  * When encoding 2/0 audio, sets whether Dolby Surround is matrix encoded into the two channels.
867
867
  */
868
- SurroundMode?: Eac3SurroundMode | string;
868
+ SurroundMode?: Eac3SurroundMode;
869
869
  }
870
870
  /**
871
871
  * @public
@@ -893,7 +893,7 @@ export interface Mp2Settings {
893
893
  * @public
894
894
  * The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo).
895
895
  */
896
- CodingMode?: Mp2CodingMode | string;
896
+ CodingMode?: Mp2CodingMode;
897
897
  /**
898
898
  * @public
899
899
  * Sample rate in Hz.
@@ -934,7 +934,7 @@ export interface WavSettings {
934
934
  * @public
935
935
  * The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.
936
936
  */
937
- CodingMode?: WavCodingMode | string;
937
+ CodingMode?: WavCodingMode;
938
938
  /**
939
939
  * @public
940
940
  * Sample rate in Hz.
@@ -1035,7 +1035,7 @@ export interface AudioDescription {
1035
1035
  * @public
1036
1036
  * Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
1037
1037
  */
1038
- AudioType?: AudioType | string;
1038
+ AudioType?: AudioType;
1039
1039
  /**
1040
1040
  * @public
1041
1041
  * Determines how audio type is determined.
@@ -1043,7 +1043,7 @@ export interface AudioDescription {
1043
1043
  * useConfigured: The value in Audio Type is included in the output.
1044
1044
  * Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
1045
1045
  */
1046
- AudioTypeControl?: AudioDescriptionAudioTypeControl | string;
1046
+ AudioTypeControl?: AudioDescriptionAudioTypeControl;
1047
1047
  /**
1048
1048
  * @public
1049
1049
  * Settings to configure one or more solutions that insert audio watermarks in the audio encode
@@ -1063,7 +1063,7 @@ export interface AudioDescription {
1063
1063
  * @public
1064
1064
  * Choosing followInput will cause the ISO 639 language code of the output to follow the ISO 639 language code of the input. The languageCode will be used when useConfigured is set, or when followInput is selected but there is no ISO 639 language code specified by the input.
1065
1065
  */
1066
- LanguageCodeControl?: AudioDescriptionLanguageCodeControl | string;
1066
+ LanguageCodeControl?: AudioDescriptionLanguageCodeControl;
1067
1067
  /**
1068
1068
  * @public
1069
1069
  * The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.
@@ -1122,7 +1122,7 @@ export interface AudioLanguageSelection {
1122
1122
  * @public
1123
1123
  * When set to "strict", the transport stream demux strictly identifies audio streams by their language descriptor. If a PMT update occurs such that an audio stream matching the initially selected language is no longer present then mute will be encoded until the language returns. If "loose", then on a PMT update the demux will choose another audio stream in the program with the same stream type if it can't find one with the same language.
1124
1124
  */
1125
- LanguageSelectionPolicy?: AudioLanguageSelectionPolicy | string;
1125
+ LanguageSelectionPolicy?: AudioLanguageSelectionPolicy;
1126
1126
  }
1127
1127
  /**
1128
1128
  * @public
@@ -1163,7 +1163,7 @@ export interface AudioDolbyEDecode {
1163
1163
  * @public
1164
1164
  * Applies only to Dolby E. Enter the program ID (according to the metadata in the audio) of the Dolby E program to extract from the specified track. One program extracted per audio selector. To select multiple programs, create multiple selectors with the same Track and different Program numbers. “All channels” means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be incorrect.
1165
1165
  */
1166
- ProgramSelection: DolbyEProgramSelection | string | undefined;
1166
+ ProgramSelection: DolbyEProgramSelection | undefined;
1167
1167
  }
1168
1168
  /**
1169
1169
  * @public
@@ -1412,12 +1412,12 @@ export interface BurnInDestinationSettings {
1412
1412
  * @public
1413
1413
  * If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting "smart" justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
1414
1414
  */
1415
- Alignment?: BurnInAlignment | string;
1415
+ Alignment?: BurnInAlignment;
1416
1416
  /**
1417
1417
  * @public
1418
1418
  * Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
1419
1419
  */
1420
- BackgroundColor?: BurnInBackgroundColor | string;
1420
+ BackgroundColor?: BurnInBackgroundColor;
1421
1421
  /**
1422
1422
  * @public
1423
1423
  * Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
@@ -1432,7 +1432,7 @@ export interface BurnInDestinationSettings {
1432
1432
  * @public
1433
1433
  * Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
1434
1434
  */
1435
- FontColor?: BurnInFontColor | string;
1435
+ FontColor?: BurnInFontColor;
1436
1436
  /**
1437
1437
  * @public
1438
1438
  * Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
@@ -1452,7 +1452,7 @@ export interface BurnInDestinationSettings {
1452
1452
  * @public
1453
1453
  * Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
1454
1454
  */
1455
- OutlineColor?: BurnInOutlineColor | string;
1455
+ OutlineColor?: BurnInOutlineColor;
1456
1456
  /**
1457
1457
  * @public
1458
1458
  * Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
@@ -1462,7 +1462,7 @@ export interface BurnInDestinationSettings {
1462
1462
  * @public
1463
1463
  * Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
1464
1464
  */
1465
- ShadowColor?: BurnInShadowColor | string;
1465
+ ShadowColor?: BurnInShadowColor;
1466
1466
  /**
1467
1467
  * @public
1468
1468
  * Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
@@ -1482,7 +1482,7 @@ export interface BurnInDestinationSettings {
1482
1482
  * @public
1483
1483
  * Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
1484
1484
  */
1485
- TeletextGridControl?: BurnInTeletextGridControl | string;
1485
+ TeletextGridControl?: BurnInTeletextGridControl;
1486
1486
  /**
1487
1487
  * @public
1488
1488
  * Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
@@ -1586,12 +1586,12 @@ export interface DvbSubDestinationSettings {
1586
1586
  * @public
1587
1587
  * If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting "smart" justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
1588
1588
  */
1589
- Alignment?: DvbSubDestinationAlignment | string;
1589
+ Alignment?: DvbSubDestinationAlignment;
1590
1590
  /**
1591
1591
  * @public
1592
1592
  * Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
1593
1593
  */
1594
- BackgroundColor?: DvbSubDestinationBackgroundColor | string;
1594
+ BackgroundColor?: DvbSubDestinationBackgroundColor;
1595
1595
  /**
1596
1596
  * @public
1597
1597
  * Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
@@ -1606,7 +1606,7 @@ export interface DvbSubDestinationSettings {
1606
1606
  * @public
1607
1607
  * Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
1608
1608
  */
1609
- FontColor?: DvbSubDestinationFontColor | string;
1609
+ FontColor?: DvbSubDestinationFontColor;
1610
1610
  /**
1611
1611
  * @public
1612
1612
  * Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
@@ -1626,7 +1626,7 @@ export interface DvbSubDestinationSettings {
1626
1626
  * @public
1627
1627
  * Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
1628
1628
  */
1629
- OutlineColor?: DvbSubDestinationOutlineColor | string;
1629
+ OutlineColor?: DvbSubDestinationOutlineColor;
1630
1630
  /**
1631
1631
  * @public
1632
1632
  * Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
@@ -1636,7 +1636,7 @@ export interface DvbSubDestinationSettings {
1636
1636
  * @public
1637
1637
  * Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
1638
1638
  */
1639
- ShadowColor?: DvbSubDestinationShadowColor | string;
1639
+ ShadowColor?: DvbSubDestinationShadowColor;
1640
1640
  /**
1641
1641
  * @public
1642
1642
  * Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
@@ -1656,7 +1656,7 @@ export interface DvbSubDestinationSettings {
1656
1656
  * @public
1657
1657
  * Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
1658
1658
  */
1659
- TeletextGridControl?: DvbSubDestinationTeletextGridControl | string;
1659
+ TeletextGridControl?: DvbSubDestinationTeletextGridControl;
1660
1660
  /**
1661
1661
  * @public
1662
1662
  * Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
@@ -1709,7 +1709,7 @@ export interface EbuTtDDestinationSettings {
1709
1709
  * - enabled: Fill with the captions background color (as specified in the input captions).
1710
1710
  * - disabled: Leave the gap unfilled.
1711
1711
  */
1712
- FillLineGap?: EbuTtDFillLineGapControl | string;
1712
+ FillLineGap?: EbuTtDFillLineGapControl;
1713
1713
  /**
1714
1714
  * @public
1715
1715
  * Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to "monospaced". (If styleControl is set to exclude, the font family is always set to "monospaced".)
@@ -1727,7 +1727,7 @@ export interface EbuTtDDestinationSettings {
1727
1727
  * - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext.
1728
1728
  * - exclude: In the font data attached to the EBU-TT captions, set the font family to "monospaced". Do not include any other style information.
1729
1729
  */
1730
- StyleControl?: EbuTtDDestinationStyleControl | string;
1730
+ StyleControl?: EbuTtDDestinationStyleControl;
1731
1731
  }
1732
1732
  /**
1733
1733
  * @public
@@ -1792,7 +1792,7 @@ export interface TtmlDestinationSettings {
1792
1792
  * @public
1793
1793
  * This field is not currently supported and will not affect the output styling. Leave the default value.
1794
1794
  */
1795
- StyleControl?: TtmlDestinationStyleControl | string;
1795
+ StyleControl?: TtmlDestinationStyleControl;
1796
1796
  }
1797
1797
  /**
1798
1798
  * @public
@@ -1815,7 +1815,7 @@ export interface WebvttDestinationSettings {
1815
1815
  * @public
1816
1816
  * Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don't pass through the style. The output captions will not contain any font styling information.
1817
1817
  */
1818
- StyleControl?: WebvttDestinationStyleControl | string;
1818
+ StyleControl?: WebvttDestinationStyleControl;
1819
1819
  }
1820
1820
  /**
1821
1821
  * @public
@@ -1897,7 +1897,7 @@ export interface CaptionDescription {
1897
1897
  * @public
1898
1898
  * Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
1899
1899
  */
1900
- Accessibility?: AccessibilityType | string;
1900
+ Accessibility?: AccessibilityType;
1901
1901
  /**
1902
1902
  * @public
1903
1903
  * Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
@@ -1988,7 +1988,7 @@ export interface DvbSubSourceSettings {
1988
1988
  * If you will configure a WebVTT caption description that references this caption selector, use this field to
1989
1989
  * provide the language to consider when translating the image-based source to text.
1990
1990
  */
1991
- OcrLanguage?: DvbSubOcrLanguage | string;
1991
+ OcrLanguage?: DvbSubOcrLanguage;
1992
1992
  /**
1993
1993
  * @public
1994
1994
  * When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed through, regardless of selectors.
@@ -2028,12 +2028,12 @@ export interface EmbeddedSourceSettings {
2028
2028
  * @public
2029
2029
  * If upconvert, 608 data is both passed through via the "608 compatibility bytes" fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.
2030
2030
  */
2031
- Convert608To708?: EmbeddedConvert608To708 | string;
2031
+ Convert608To708?: EmbeddedConvert608To708;
2032
2032
  /**
2033
2033
  * @public
2034
2034
  * Set to "auto" to handle streams with intermittent and/or non-aligned SCTE-20 and Embedded captions.
2035
2035
  */
2036
- Scte20Detection?: EmbeddedScte20Detection | string;
2036
+ Scte20Detection?: EmbeddedScte20Detection;
2037
2037
  /**
2038
2038
  * @public
2039
2039
  * Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
@@ -2066,7 +2066,7 @@ export interface Scte20SourceSettings {
2066
2066
  * @public
2067
2067
  * If upconvert, 608 data is both passed through via the "608 compatibility bytes" fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.
2068
2068
  */
2069
- Convert608To708?: Scte20Convert608To708 | string;
2069
+ Convert608To708?: Scte20Convert608To708;
2070
2070
  /**
2071
2071
  * @public
2072
2072
  * Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
@@ -2099,7 +2099,7 @@ export interface Scte27SourceSettings {
2099
2099
  * If you will configure a WebVTT caption description that references this caption selector, use this field to
2100
2100
  * provide the language to consider when translating the image-based source to text.
2101
2101
  */
2102
- OcrLanguage?: Scte27OcrLanguage | string;
2102
+ OcrLanguage?: Scte27OcrLanguage;
2103
2103
  /**
2104
2104
  * @public
2105
2105
  * The pid field is used in conjunction with the caption selector languageCode field as follows:
@@ -2257,7 +2257,7 @@ export interface CdiInputSpecification {
2257
2257
  * @public
2258
2258
  * Maximum CDI input resolution
2259
2259
  */
2260
- Resolution?: CdiInputResolution | string;
2260
+ Resolution?: CdiInputResolution;
2261
2261
  }
2262
2262
  /**
2263
2263
  * @public
@@ -2457,7 +2457,7 @@ export interface AutomaticInputFailoverSettings {
2457
2457
  * @public
2458
2458
  * Input preference when deciding which input to make active when a previously failed input has recovered.
2459
2459
  */
2460
- InputPreference?: InputPreference | string;
2460
+ InputPreference?: InputPreference;
2461
2461
  /**
2462
2462
  * @public
2463
2463
  * The input ID of the secondary input in the automatic input failover pair.
@@ -2542,7 +2542,7 @@ export interface HlsInputSettings {
2542
2542
  * @public
2543
2543
  * Identifies the source for the SCTE-35 messages that MediaLive will ingest. Messages can be ingested from the content segments (in the stream) or from tags in the playlist (the HLS manifest). MediaLive ignores SCTE-35 information in the source that is not selected.
2544
2544
  */
2545
- Scte35Source?: HlsScte35SourceType | string;
2545
+ Scte35Source?: HlsScte35SourceType;
2546
2546
  }
2547
2547
  /**
2548
2548
  * @public
@@ -2570,7 +2570,7 @@ export interface NetworkInputSettings {
2570
2570
  * @public
2571
2571
  * Check HTTPS server certificates. When set to checkCryptographyOnly, cryptography in the certificate will be checked, but not the server's name. Certain subdomains (notably S3 buckets that use dots in the bucket name) do not strictly match the corresponding certificate's wildcard pattern and would otherwise cause the event to error. This setting is ignored for protocols that do not use https.
2572
2572
  */
2573
- ServerValidation?: NetworkInputServerValidation | string;
2573
+ ServerValidation?: NetworkInputServerValidation;
2574
2574
  }
2575
2575
  /**
2576
2576
  * @public
@@ -2701,7 +2701,7 @@ export interface VideoSelector {
2701
2701
  * @public
2702
2702
  * Specifies the color space of an input. This setting works in tandem with colorSpaceUsage and a video description's colorSpaceSettingsChoice to determine if any conversion will be performed.
2703
2703
  */
2704
- ColorSpace?: VideoSelectorColorSpace | string;
2704
+ ColorSpace?: VideoSelectorColorSpace;
2705
2705
  /**
2706
2706
  * @public
2707
2707
  * Color space settings
@@ -2711,7 +2711,7 @@ export interface VideoSelector {
2711
2711
  * @public
2712
2712
  * Applies only if colorSpace is a value other than follow. This field controls how the value in the colorSpace field will be used. fallback means that when the input does include color space data, that data will be used, but when the input has no color space data, the value in colorSpace will be used. Choose fallback if your input is sometimes missing color space data, but when it does have color space data, that data is correct. force means to always use the value in colorSpace. Choose force if your input usually has no color space data or might have unreliable color space data.
2713
2713
  */
2714
- ColorSpaceUsage?: VideoSelectorColorSpaceUsage | string;
2714
+ ColorSpaceUsage?: VideoSelectorColorSpaceUsage;
2715
2715
  /**
2716
2716
  * @public
2717
2717
  * The video selector settings.
@@ -2737,12 +2737,12 @@ export interface InputSettings {
2737
2737
  * @public
2738
2738
  * Enable or disable the deblock filter when filtering.
2739
2739
  */
2740
- DeblockFilter?: InputDeblockFilter | string;
2740
+ DeblockFilter?: InputDeblockFilter;
2741
2741
  /**
2742
2742
  * @public
2743
2743
  * Enable or disable the denoise filter when filtering.
2744
2744
  */
2745
- DenoiseFilter?: InputDenoiseFilter | string;
2745
+ DenoiseFilter?: InputDenoiseFilter;
2746
2746
  /**
2747
2747
  * @public
2748
2748
  * Adjusts the magnitude of filtering from 1 (minimal) to 5 (strongest).
@@ -2755,7 +2755,7 @@ export interface InputSettings {
2755
2755
  * 2) disabled - no filtering will be applied to the input
2756
2756
  * 3) forced - filtering will be applied regardless of input type
2757
2757
  */
2758
- InputFilter?: InputFilter | string;
2758
+ InputFilter?: InputFilter;
2759
2759
  /**
2760
2760
  * @public
2761
2761
  * Input settings.
@@ -2772,12 +2772,12 @@ export interface InputSettings {
2772
2772
  * - PREFER: Extract from SMPTE-2038 if present in this input, otherwise extract from another source (if any).
2773
2773
  * - IGNORE: Never extract any ancillary data from SMPTE-2038.
2774
2774
  */
2775
- Smpte2038DataPreference?: Smpte2038DataPreference | string;
2775
+ Smpte2038DataPreference?: Smpte2038DataPreference;
2776
2776
  /**
2777
2777
  * @public
2778
2778
  * Loop input if it is a file. This allows a file input to be streamed indefinitely.
2779
2779
  */
2780
- SourceEndBehavior?: InputSourceEndBehavior | string;
2780
+ SourceEndBehavior?: InputSourceEndBehavior;
2781
2781
  /**
2782
2782
  * @public
2783
2783
  * Informs which video elementary stream to decode for input types that have multiple available.
@@ -2858,17 +2858,17 @@ export interface InputSpecification {
2858
2858
  * @public
2859
2859
  * Input codec
2860
2860
  */
2861
- Codec?: InputCodec | string;
2861
+ Codec?: InputCodec;
2862
2862
  /**
2863
2863
  * @public
2864
2864
  * Maximum input bitrate, categorized coarsely
2865
2865
  */
2866
- MaximumBitrate?: InputMaximumBitrate | string;
2866
+ MaximumBitrate?: InputMaximumBitrate;
2867
2867
  /**
2868
2868
  * @public
2869
2869
  * Input resolution, categorized coarsely
2870
2870
  */
2871
- Resolution?: InputResolution | string;
2871
+ Resolution?: InputResolution;
2872
2872
  }
2873
2873
  /**
2874
2874
  * @public
@@ -2911,7 +2911,7 @@ export interface MaintenanceStatus {
2911
2911
  * @public
2912
2912
  * The currently selected maintenance day.
2913
2913
  */
2914
- MaintenanceDay?: MaintenanceDay | string;
2914
+ MaintenanceDay?: MaintenanceDay;
2915
2915
  /**
2916
2916
  * @public
2917
2917
  * Maintenance is required by the displayed date and time. Date and time is in ISO.
@@ -2997,7 +2997,7 @@ export interface ChannelSummary {
2997
2997
  * @public
2998
2998
  * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
2999
2999
  */
3000
- ChannelClass?: ChannelClass | string;
3000
+ ChannelClass?: ChannelClass;
3001
3001
  /**
3002
3002
  * @public
3003
3003
  * A list of destinations of the channel. For UDP outputs, there is one
@@ -3029,7 +3029,7 @@ export interface ChannelSummary {
3029
3029
  * @public
3030
3030
  * The log level being written to CloudWatch Logs.
3031
3031
  */
3032
- LogLevel?: LogLevel | string;
3032
+ LogLevel?: LogLevel;
3033
3033
  /**
3034
3034
  * @public
3035
3035
  * Maintenance settings for this channel.
@@ -3054,7 +3054,7 @@ export interface ChannelSummary {
3054
3054
  * @public
3055
3055
  * Placeholder documentation for ChannelState
3056
3056
  */
3057
- State?: ChannelState | string;
3057
+ State?: ChannelState;
3058
3058
  /**
3059
3059
  * @public
3060
3060
  * A collection of key-value pairs.
@@ -3256,7 +3256,7 @@ export interface Input {
3256
3256
  * STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
3257
3257
  * SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
3258
3258
  */
3259
- InputClass?: InputClass | string;
3259
+ InputClass?: InputClass;
3260
3260
  /**
3261
3261
  * @public
3262
3262
  * Settings for the input devices.
@@ -3272,7 +3272,7 @@ export interface Input {
3272
3272
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
3273
3273
  * during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
3274
3274
  */
3275
- InputSourceType?: InputSourceType | string;
3275
+ InputSourceType?: InputSourceType;
3276
3276
  /**
3277
3277
  * @public
3278
3278
  * A list of MediaConnect Flows for this input.
@@ -3302,7 +3302,7 @@ export interface Input {
3302
3302
  * @public
3303
3303
  * Placeholder documentation for InputState
3304
3304
  */
3305
- State?: InputState | string;
3305
+ State?: InputState;
3306
3306
  /**
3307
3307
  * @public
3308
3308
  * A collection of key-value pairs.
@@ -3312,7 +3312,7 @@ export interface Input {
3312
3312
  * @public
3313
3313
  * The different types of inputs that AWS Elemental MediaLive supports.
3314
3314
  */
3315
- Type?: InputType | string;
3315
+ Type?: InputType;
3316
3316
  }
3317
3317
  /**
3318
3318
  * @public
@@ -3432,17 +3432,17 @@ export interface InputDeviceHdSettings {
3432
3432
  * @public
3433
3433
  * If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).
3434
3434
  */
3435
- ActiveInput?: InputDeviceActiveInput | string;
3435
+ ActiveInput?: InputDeviceActiveInput;
3436
3436
  /**
3437
3437
  * @public
3438
3438
  * The source at the input device that is currently active. You can specify this source.
3439
3439
  */
3440
- ConfiguredInput?: InputDeviceConfiguredInput | string;
3440
+ ConfiguredInput?: InputDeviceConfiguredInput;
3441
3441
  /**
3442
3442
  * @public
3443
3443
  * The state of the input device.
3444
3444
  */
3445
- DeviceState?: InputDeviceState | string;
3445
+ DeviceState?: InputDeviceState;
3446
3446
  /**
3447
3447
  * @public
3448
3448
  * The frame rate of the video source.
@@ -3462,7 +3462,7 @@ export interface InputDeviceHdSettings {
3462
3462
  * @public
3463
3463
  * The scan type of the video source.
3464
3464
  */
3465
- ScanType?: InputDeviceScanType | string;
3465
+ ScanType?: InputDeviceScanType;
3466
3466
  /**
3467
3467
  * @public
3468
3468
  * The width of the video source, in pixels.
@@ -3510,7 +3510,7 @@ export interface InputDeviceNetworkSettings {
3510
3510
  * @public
3511
3511
  * Specifies whether the input device has been configured (outside of MediaLive) to use a dynamic IP address assignment (DHCP) or a static IP address.
3512
3512
  */
3513
- IpScheme?: InputDeviceIpScheme | string;
3513
+ IpScheme?: InputDeviceIpScheme;
3514
3514
  /**
3515
3515
  * @public
3516
3516
  * The subnet mask of the input device.
@@ -3589,17 +3589,17 @@ export interface InputDeviceUhdSettings {
3589
3589
  * @public
3590
3590
  * If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).
3591
3591
  */
3592
- ActiveInput?: InputDeviceActiveInput | string;
3592
+ ActiveInput?: InputDeviceActiveInput;
3593
3593
  /**
3594
3594
  * @public
3595
3595
  * The source at the input device that is currently active. You can specify this source.
3596
3596
  */
3597
- ConfiguredInput?: InputDeviceConfiguredInput | string;
3597
+ ConfiguredInput?: InputDeviceConfiguredInput;
3598
3598
  /**
3599
3599
  * @public
3600
3600
  * The state of the input device.
3601
3601
  */
3602
- DeviceState?: InputDeviceState | string;
3602
+ DeviceState?: InputDeviceState;
3603
3603
  /**
3604
3604
  * @public
3605
3605
  * The frame rate of the video source.
@@ -3619,7 +3619,7 @@ export interface InputDeviceUhdSettings {
3619
3619
  * @public
3620
3620
  * The scan type of the video source.
3621
3621
  */
3622
- ScanType?: InputDeviceScanType | string;
3622
+ ScanType?: InputDeviceScanType;
3623
3623
  /**
3624
3624
  * @public
3625
3625
  * The width of the video source, in pixels.
@@ -3634,7 +3634,7 @@ export interface InputDeviceUhdSettings {
3634
3634
  * @public
3635
3635
  * The codec for the video that the device produces.
3636
3636
  */
3637
- Codec?: InputDeviceCodec | string;
3637
+ Codec?: InputDeviceCodec;
3638
3638
  /**
3639
3639
  * @public
3640
3640
  * Information about the MediaConnect flow attached to the device. Returned only if the outputType is MEDIACONNECT_FLOW.
@@ -3655,17 +3655,17 @@ export interface InputDeviceSummary {
3655
3655
  * @public
3656
3656
  * The state of the connection between the input device and AWS.
3657
3657
  */
3658
- ConnectionState?: InputDeviceConnectionState | string;
3658
+ ConnectionState?: InputDeviceConnectionState;
3659
3659
  /**
3660
3660
  * @public
3661
3661
  * The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.
3662
3662
  */
3663
- DeviceSettingsSyncState?: DeviceSettingsSyncState | string;
3663
+ DeviceSettingsSyncState?: DeviceSettingsSyncState;
3664
3664
  /**
3665
3665
  * @public
3666
3666
  * The status of software on the input device.
3667
3667
  */
3668
- DeviceUpdateStatus?: DeviceUpdateStatus | string;
3668
+ DeviceUpdateStatus?: DeviceUpdateStatus;
3669
3669
  /**
3670
3670
  * @public
3671
3671
  * Settings that describe an input device that is type HD.
@@ -3700,7 +3700,7 @@ export interface InputDeviceSummary {
3700
3700
  * @public
3701
3701
  * The type of the input device.
3702
3702
  */
3703
- Type?: InputDeviceType | string;
3703
+ Type?: InputDeviceType;
3704
3704
  /**
3705
3705
  * @public
3706
3706
  * Settings that describe an input device that is type UHD.
@@ -3725,7 +3725,7 @@ export interface InputDeviceSummary {
3725
3725
  * @public
3726
3726
  * The output attachment type of the input device. Specifies MEDIACONNECT_FLOW if this device is the source for a MediaConnect flow. Specifies MEDIALIVE_INPUT if this device is the source for a MediaLive input.
3727
3727
  */
3728
- OutputType?: InputDeviceOutputType | string;
3728
+ OutputType?: InputDeviceOutputType;
3729
3729
  }
3730
3730
  /**
3731
3731
  * @public
@@ -3776,7 +3776,7 @@ export interface InputSecurityGroup {
3776
3776
  * @public
3777
3777
  * The current state of the Input Security Group.
3778
3778
  */
3779
- State?: InputSecurityGroupState | string;
3779
+ State?: InputSecurityGroupState;
3780
3780
  /**
3781
3781
  * @public
3782
3782
  * A collection of key-value pairs.
@@ -3960,7 +3960,7 @@ export interface MultiplexSummary {
3960
3960
  * @public
3961
3961
  * The current state of the multiplex.
3962
3962
  */
3963
- State?: MultiplexState | string;
3963
+ State?: MultiplexState;
3964
3964
  /**
3965
3965
  * @public
3966
3966
  * A collection of key-value pairs.
@@ -4093,42 +4093,42 @@ export interface ReservationResourceSpecification {
4093
4093
  * @public
4094
4094
  * Channel class, e.g. 'STANDARD'
4095
4095
  */
4096
- ChannelClass?: ChannelClass | string;
4096
+ ChannelClass?: ChannelClass;
4097
4097
  /**
4098
4098
  * @public
4099
4099
  * Codec, e.g. 'AVC'
4100
4100
  */
4101
- Codec?: ReservationCodec | string;
4101
+ Codec?: ReservationCodec;
4102
4102
  /**
4103
4103
  * @public
4104
4104
  * Maximum bitrate, e.g. 'MAX_20_MBPS'
4105
4105
  */
4106
- MaximumBitrate?: ReservationMaximumBitrate | string;
4106
+ MaximumBitrate?: ReservationMaximumBitrate;
4107
4107
  /**
4108
4108
  * @public
4109
4109
  * Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only)
4110
4110
  */
4111
- MaximumFramerate?: ReservationMaximumFramerate | string;
4111
+ MaximumFramerate?: ReservationMaximumFramerate;
4112
4112
  /**
4113
4113
  * @public
4114
4114
  * Resolution, e.g. 'HD'
4115
4115
  */
4116
- Resolution?: ReservationResolution | string;
4116
+ Resolution?: ReservationResolution;
4117
4117
  /**
4118
4118
  * @public
4119
4119
  * Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
4120
4120
  */
4121
- ResourceType?: ReservationResourceType | string;
4121
+ ResourceType?: ReservationResourceType;
4122
4122
  /**
4123
4123
  * @public
4124
4124
  * Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only)
4125
4125
  */
4126
- SpecialFeature?: ReservationSpecialFeature | string;
4126
+ SpecialFeature?: ReservationSpecialFeature;
4127
4127
  /**
4128
4128
  * @public
4129
4129
  * Video quality, e.g. 'STANDARD' (Outputs only)
4130
4130
  */
4131
- VideoQuality?: ReservationVideoQuality | string;
4131
+ VideoQuality?: ReservationVideoQuality;
4132
4132
  }
4133
4133
  /**
4134
4134
  * @public
@@ -4154,7 +4154,7 @@ export interface Offering {
4154
4154
  * @public
4155
4155
  * Units for duration, e.g. 'MONTHS'
4156
4156
  */
4157
- DurationUnits?: OfferingDurationUnits | string;
4157
+ DurationUnits?: OfferingDurationUnits;
4158
4158
  /**
4159
4159
  * @public
4160
4160
  * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
@@ -4174,7 +4174,7 @@ export interface Offering {
4174
4174
  * @public
4175
4175
  * Offering type, e.g. 'NO_UPFRONT'
4176
4176
  */
4177
- OfferingType?: OfferingType | string;
4177
+ OfferingType?: OfferingType;
4178
4178
  /**
4179
4179
  * @public
4180
4180
  * AWS region, e.g. 'us-west-2'
@@ -4319,7 +4319,7 @@ export interface DvbSdtSettings {
4319
4319
  * @public
4320
4320
  * Selects method of inserting SDT information into output stream. The sdtFollow setting copies SDT information from input stream to output stream. The sdtFollowIfPresent setting copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. The sdtManual setting means user will enter the SDT information. The sdtNone setting means output stream will not contain SDT information.
4321
4321
  */
4322
- OutputSdt?: DvbSdtOutputSdt | string;
4322
+ OutputSdt?: DvbSdtOutputSdt;
4323
4323
  /**
4324
4324
  * @public
4325
4325
  * The number of milliseconds between instances of this table in the output transport stream.
@@ -4504,12 +4504,12 @@ export interface M2tsSettings {
4504
4504
  * @public
4505
4505
  * When set to drop, output audio streams will be removed from the program if the selected input audio stream is removed from the input. This allows the output audio configuration to dynamically change based on input configuration. If this is set to encodeSilence, all output audio streams will output encoded silence when not connected to an active input stream.
4506
4506
  */
4507
- AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | string;
4507
+ AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
4508
4508
  /**
4509
4509
  * @public
4510
4510
  * When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
4511
4511
  */
4512
- Arib?: M2tsArib | string;
4512
+ Arib?: M2tsArib;
4513
4513
  /**
4514
4514
  * @public
4515
4515
  * Packet Identifier (PID) for ARIB Captions in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4519,12 +4519,12 @@ export interface M2tsSettings {
4519
4519
  * @public
4520
4520
  * If set to auto, pid number used for ARIB Captions will be auto-selected from unused pids. If set to useConfigured, ARIB Captions will be on the configured pid number.
4521
4521
  */
4522
- AribCaptionsPidControl?: M2tsAribCaptionsPidControl | string;
4522
+ AribCaptionsPidControl?: M2tsAribCaptionsPidControl;
4523
4523
  /**
4524
4524
  * @public
4525
4525
  * When set to dvb, uses DVB buffer model for Dolby Digital audio. When set to atsc, the ATSC model is used.
4526
4526
  */
4527
- AudioBufferModel?: M2tsAudioBufferModel | string;
4527
+ AudioBufferModel?: M2tsAudioBufferModel;
4528
4528
  /**
4529
4529
  * @public
4530
4530
  * The number of audio frames to insert for each PES packet.
@@ -4539,7 +4539,7 @@ export interface M2tsSettings {
4539
4539
  * @public
4540
4540
  * When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87 for EAC3. When set to dvb, uses stream type = 0x06.
4541
4541
  */
4542
- AudioStreamType?: M2tsAudioStreamType | string;
4542
+ AudioStreamType?: M2tsAudioStreamType;
4543
4543
  /**
4544
4544
  * @public
4545
4545
  * The output bitrate of the transport stream in bits per second. Setting to 0 lets the muxer automatically determine the appropriate bitrate.
@@ -4549,12 +4549,12 @@ export interface M2tsSettings {
4549
4549
  * @public
4550
4550
  * Controls the timing accuracy for output network traffic. Leave as MULTIPLEX to ensure accurate network packet timing. Or set to NONE, which might result in lower latency but will result in more variability in output network packet timing. This variability might cause interruptions, jitter, or bursty behavior in your playback or receiving devices.
4551
4551
  */
4552
- BufferModel?: M2tsBufferModel | string;
4552
+ BufferModel?: M2tsBufferModel;
4553
4553
  /**
4554
4554
  * @public
4555
4555
  * When set to enabled, generates captionServiceDescriptor in PMT.
4556
4556
  */
4557
- CcDescriptor?: M2tsCcDescriptor | string;
4557
+ CcDescriptor?: M2tsCcDescriptor;
4558
4558
  /**
4559
4559
  * @public
4560
4560
  * Inserts DVB Network Information Table (NIT) at the specified table repetition interval.
@@ -4584,12 +4584,12 @@ export interface M2tsSettings {
4584
4584
  * @public
4585
4585
  * If set to passthrough, passes any EBIF data from the input source to this output.
4586
4586
  */
4587
- Ebif?: M2tsEbifControl | string;
4587
+ Ebif?: M2tsEbifControl;
4588
4588
  /**
4589
4589
  * @public
4590
4590
  * When videoAndFixedIntervals is selected, audio EBP markers will be added to partitions 3 and 4. The interval between these additional markers will be fixed, and will be slightly shorter than the video EBP marker interval. Only available when EBP Cablelabs segmentation markers are selected. Partitions 1 and 2 will always follow the video interval.
4591
4591
  */
4592
- EbpAudioInterval?: M2tsAudioInterval | string;
4592
+ EbpAudioInterval?: M2tsAudioInterval;
4593
4593
  /**
4594
4594
  * @public
4595
4595
  * When set, enforces that Encoder Boundary Points do not come within the specified time interval of each other by looking ahead at input video. If another EBP is going to come in within the specified time interval, the current EBP is not emitted, and the segment is "stretched" to the next marker. The lookahead value does not add latency to the system. The Live Event must be configured elsewhere to create sufficient latency to make the lookahead accurate.
@@ -4599,7 +4599,7 @@ export interface M2tsSettings {
4599
4599
  * @public
4600
4600
  * Controls placement of EBP on Audio PIDs. If set to videoAndAudioPids, EBP markers will be placed on the video PID and all audio PIDs. If set to videoPid, EBP markers will be placed on only the video PID.
4601
4601
  */
4602
- EbpPlacement?: M2tsEbpPlacement | string;
4602
+ EbpPlacement?: M2tsEbpPlacement;
4603
4603
  /**
4604
4604
  * @public
4605
4605
  * This field is unused and deprecated.
@@ -4609,7 +4609,7 @@ export interface M2tsSettings {
4609
4609
  * @public
4610
4610
  * Include or exclude the ES Rate field in the PES header.
4611
4611
  */
4612
- EsRateInPes?: M2tsEsRateInPes | string;
4612
+ EsRateInPes?: M2tsEsRateInPes;
4613
4613
  /**
4614
4614
  * @public
4615
4615
  * Packet Identifier (PID) for input source ETV Platform data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4629,7 +4629,7 @@ export interface M2tsSettings {
4629
4629
  * @public
4630
4630
  * If set to passthrough, passes any KLV data from the input source to this output.
4631
4631
  */
4632
- Klv?: M2tsKlv | string;
4632
+ Klv?: M2tsKlv;
4633
4633
  /**
4634
4634
  * @public
4635
4635
  * Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4639,7 +4639,7 @@ export interface M2tsSettings {
4639
4639
  * @public
4640
4640
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
4641
4641
  */
4642
- NielsenId3Behavior?: M2tsNielsenId3Behavior | string;
4642
+ NielsenId3Behavior?: M2tsNielsenId3Behavior;
4643
4643
  /**
4644
4644
  * @public
4645
4645
  * Value in bits per second of extra null packets to insert into the transport stream. This can be used if a downstream encryption system requires periodic null packets.
@@ -4654,7 +4654,7 @@ export interface M2tsSettings {
4654
4654
  * @public
4655
4655
  * When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
4656
4656
  */
4657
- PcrControl?: M2tsPcrControl | string;
4657
+ PcrControl?: M2tsPcrControl;
4658
4658
  /**
4659
4659
  * @public
4660
4660
  * Maximum time in milliseconds between Program Clock Reference (PCRs) inserted into the transport stream.
@@ -4684,7 +4684,7 @@ export interface M2tsSettings {
4684
4684
  * @public
4685
4685
  * When vbr, does not insert null packets into transport stream to fill specified bitrate. The bitrate setting acts as the maximum bitrate when vbr is set.
4686
4686
  */
4687
- RateMode?: M2tsRateMode | string;
4687
+ RateMode?: M2tsRateMode;
4688
4688
  /**
4689
4689
  * @public
4690
4690
  * Packet Identifier (PID) for input source SCTE-27 data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4694,7 +4694,7 @@ export interface M2tsSettings {
4694
4694
  * @public
4695
4695
  * Optionally pass SCTE-35 signals from the input source to this output.
4696
4696
  */
4697
- Scte35Control?: M2tsScte35Control | string;
4697
+ Scte35Control?: M2tsScte35Control;
4698
4698
  /**
4699
4699
  * @public
4700
4700
  * Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4704,7 +4704,7 @@ export interface M2tsSettings {
4704
4704
  * @public
4705
4705
  * Inserts segmentation markers at each segmentationTime period. raiSegstart sets the Random Access Indicator bit in the adaptation field. raiAdapt sets the RAI bit and adds the current timecode in the private data bytes. psiSegstart inserts PAT and PMT tables at the start of segments. ebp adds Encoder Boundary Point information to the adaptation field as per OpenCable specification OC-SP-EBP-I01-130118. ebpLegacy adds Encoder Boundary Point information to the adaptation field using a legacy proprietary format.
4706
4706
  */
4707
- SegmentationMarkers?: M2tsSegmentationMarkers | string;
4707
+ SegmentationMarkers?: M2tsSegmentationMarkers;
4708
4708
  /**
4709
4709
  * @public
4710
4710
  * The segmentation style parameter controls how segmentation markers are inserted into the transport stream. With avails, it is possible that segments may be truncated, which can influence where future segmentation markers are inserted.
@@ -4713,7 +4713,7 @@ export interface M2tsSettings {
4713
4713
  *
4714
4714
  * When a segmentation style of "maintainCadence" is selected and a segment is truncated due to an avail, we will not reset the segmentation cadence. This means the subsequent segment will likely be truncated as well. However, all segments after that will have a duration of $segmentationTime seconds. Note that EBP lookahead is a slight exception to this rule.
4715
4715
  */
4716
- SegmentationStyle?: M2tsSegmentationStyle | string;
4716
+ SegmentationStyle?: M2tsSegmentationStyle;
4717
4717
  /**
4718
4718
  * @public
4719
4719
  * The length in seconds of each segment. Required unless markers is set to _none_.
@@ -4723,7 +4723,7 @@ export interface M2tsSettings {
4723
4723
  * @public
4724
4724
  * When set to passthrough, timed metadata will be passed through from input to output.
4725
4725
  */
4726
- TimedMetadataBehavior?: M2tsTimedMetadataBehavior | string;
4726
+ TimedMetadataBehavior?: M2tsTimedMetadataBehavior;
4727
4727
  /**
4728
4728
  * @public
4729
4729
  * Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
@@ -4870,12 +4870,12 @@ export interface AudioOnlyHlsSettings {
4870
4870
  * Alternate Audio, not Auto Select
4871
4871
  * Alternate rendition that the client will not try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=NO
4872
4872
  */
4873
- AudioTrackType?: AudioOnlyHlsTrackType | string;
4873
+ AudioTrackType?: AudioOnlyHlsTrackType;
4874
4874
  /**
4875
4875
  * @public
4876
4876
  * Specifies the segment type.
4877
4877
  */
4878
- SegmentType?: AudioOnlyHlsSegmentType | string;
4878
+ SegmentType?: AudioOnlyHlsSegmentType;
4879
4879
  }
4880
4880
  /**
4881
4881
  * @public
@@ -4915,12 +4915,12 @@ export interface Fmp4HlsSettings {
4915
4915
  * @public
4916
4916
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
4917
4917
  */
4918
- NielsenId3Behavior?: Fmp4NielsenId3Behavior | string;
4918
+ NielsenId3Behavior?: Fmp4NielsenId3Behavior;
4919
4919
  /**
4920
4920
  * @public
4921
4921
  * When set to passthrough, timed metadata is passed through from input to output.
4922
4922
  */
4923
- TimedMetadataBehavior?: Fmp4TimedMetadataBehavior | string;
4923
+ TimedMetadataBehavior?: Fmp4TimedMetadataBehavior;
4924
4924
  }
4925
4925
  /**
4926
4926
  * @public
@@ -5012,7 +5012,7 @@ export interface M3u8Settings {
5012
5012
  * @public
5013
5013
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
5014
5014
  */
5015
- NielsenId3Behavior?: M3u8NielsenId3Behavior | string;
5015
+ NielsenId3Behavior?: M3u8NielsenId3Behavior;
5016
5016
  /**
5017
5017
  * @public
5018
5018
  * The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.
@@ -5022,7 +5022,7 @@ export interface M3u8Settings {
5022
5022
  * @public
5023
5023
  * When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
5024
5024
  */
5025
- PcrControl?: M3u8PcrControl | string;
5025
+ PcrControl?: M3u8PcrControl;
5026
5026
  /**
5027
5027
  * @public
5028
5028
  * Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.
@@ -5052,7 +5052,7 @@ export interface M3u8Settings {
5052
5052
  * @public
5053
5053
  * If set to passthrough, passes any SCTE-35 signals from the input source to this output.
5054
5054
  */
5055
- Scte35Behavior?: M3u8Scte35Behavior | string;
5055
+ Scte35Behavior?: M3u8Scte35Behavior;
5056
5056
  /**
5057
5057
  * @public
5058
5058
  * Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.
@@ -5062,7 +5062,7 @@ export interface M3u8Settings {
5062
5062
  * @public
5063
5063
  * When set to passthrough, timed metadata is passed through from input to output.
5064
5064
  */
5065
- TimedMetadataBehavior?: M3u8TimedMetadataBehavior | string;
5065
+ TimedMetadataBehavior?: M3u8TimedMetadataBehavior;
5066
5066
  /**
5067
5067
  * @public
5068
5068
  * Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
@@ -5082,7 +5082,7 @@ export interface M3u8Settings {
5082
5082
  * @public
5083
5083
  * If set to passthrough, passes any KLV data from the input source to this output.
5084
5084
  */
5085
- KlvBehavior?: M3u8KlvBehavior | string;
5085
+ KlvBehavior?: M3u8KlvBehavior;
5086
5086
  /**
5087
5087
  * @public
5088
5088
  * Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
@@ -5141,7 +5141,7 @@ export interface HlsOutputSettings {
5141
5141
  * Only applicable when this output is referencing an H.265 video description.
5142
5142
  * Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
5143
5143
  */
5144
- H265PackagingType?: HlsH265PackagingType | string;
5144
+ H265PackagingType?: HlsH265PackagingType;
5145
5145
  /**
5146
5146
  * @public
5147
5147
  * Settings regarding the underlying stream. These settings are different for audio-only outputs.
@@ -5186,7 +5186,7 @@ export interface MsSmoothOutputSettings {
5186
5186
  * Only applicable when this output is referencing an H.265 video description.
5187
5187
  * Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
5188
5188
  */
5189
- H265PackagingType?: MsSmoothH265PackagingType | string;
5189
+ H265PackagingType?: MsSmoothH265PackagingType;
5190
5190
  /**
5191
5191
  * @public
5192
5192
  * String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
@@ -5236,7 +5236,7 @@ export interface RtmpOutputSettings {
5236
5236
  * @public
5237
5237
  * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.
5238
5238
  */
5239
- CertificateMode?: RtmpOutputCertificateMode | string;
5239
+ CertificateMode?: RtmpOutputCertificateMode;
5240
5240
  /**
5241
5241
  * @public
5242
5242
  * Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
@@ -5290,7 +5290,7 @@ export interface FecOutputSettings {
5290
5290
  * @public
5291
5291
  * Enables column only or column and row based FEC
5292
5292
  */
5293
- IncludeFec?: FecOutputIncludeFec | string;
5293
+ IncludeFec?: FecOutputIncludeFec;
5294
5294
  /**
5295
5295
  * @public
5296
5296
  * Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.
@@ -5423,7 +5423,7 @@ export interface ArchiveS3Settings {
5423
5423
  * @public
5424
5424
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
5425
5425
  */
5426
- CannedAcl?: S3CannedAcl | string;
5426
+ CannedAcl?: S3CannedAcl;
5427
5427
  }
5428
5428
  /**
5429
5429
  * @public
@@ -5466,7 +5466,7 @@ export interface FrameCaptureS3Settings {
5466
5466
  * @public
5467
5467
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
5468
5468
  */
5469
- CannedAcl?: S3CannedAcl | string;
5469
+ CannedAcl?: S3CannedAcl;
5470
5470
  }
5471
5471
  /**
5472
5472
  * @public
@@ -5599,7 +5599,7 @@ export interface HlsAkamaiSettings {
5599
5599
  * @public
5600
5600
  * Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.
5601
5601
  */
5602
- HttpTransferMode?: HlsAkamaiHttpTransferMode | string;
5602
+ HttpTransferMode?: HlsAkamaiHttpTransferMode;
5603
5603
  /**
5604
5604
  * @public
5605
5605
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
@@ -5677,7 +5677,7 @@ export interface HlsMediaStoreSettings {
5677
5677
  * @public
5678
5678
  * When set to temporal, output files are stored in non-persistent memory for faster reading and writing.
5679
5679
  */
5680
- MediaStoreStorageClass?: HlsMediaStoreStorageClass | string;
5680
+ MediaStoreStorageClass?: HlsMediaStoreStorageClass;
5681
5681
  /**
5682
5682
  * @public
5683
5683
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
@@ -5698,7 +5698,7 @@ export interface HlsS3Settings {
5698
5698
  * @public
5699
5699
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
5700
5700
  */
5701
- CannedAcl?: S3CannedAcl | string;
5701
+ CannedAcl?: S3CannedAcl;
5702
5702
  }
5703
5703
  /**
5704
5704
  * @public
@@ -5731,7 +5731,7 @@ export interface HlsWebdavSettings {
5731
5731
  * @public
5732
5732
  * Specify whether or not to use chunked transfer encoding to WebDAV.
5733
5733
  */
5734
- HttpTransferMode?: HlsWebdavHttpTransferMode | string;
5734
+ HttpTransferMode?: HlsWebdavHttpTransferMode;
5735
5735
  /**
5736
5736
  * @public
5737
5737
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.