@aws-sdk/client-medialive 3.686.0 → 3.691.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.
- package/dist-types/models/models_0.d.ts +544 -544
- package/dist-types/models/models_1.d.ts +532 -532
- package/dist-types/models/models_2.d.ts +998 -998
- package/dist-types/ts3.4/models/models_0.d.ts +552 -544
- package/dist-types/ts3.4/models/models_1.d.ts +568 -532
- package/dist-types/ts3.4/models/models_2.d.ts +1008 -1001
- package/package.json +7 -7
|
@@ -81,17 +81,17 @@ export interface AudioNormalizationSettings {
|
|
|
81
81
|
* Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 conforms to the EBU R-128 specification.
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
Algorithm?: AudioNormalizationAlgorithm;
|
|
84
|
+
Algorithm?: AudioNormalizationAlgorithm | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* 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.
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
AlgorithmControl?: AudioNormalizationAlgorithmControl;
|
|
89
|
+
AlgorithmControl?: AudioNormalizationAlgorithmControl | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* 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.
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
TargetLkfs?: number;
|
|
94
|
+
TargetLkfs?: number | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* @public
|
|
@@ -204,7 +204,7 @@ export interface NielsenNaesIiNw {
|
|
|
204
204
|
* the timestamps will be in Coordinated Universal Time (UTC)
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
Timezone?: NielsenWatermarkTimezones;
|
|
207
|
+
Timezone?: NielsenWatermarkTimezones | undefined;
|
|
208
208
|
}
|
|
209
209
|
/**
|
|
210
210
|
* Nielsen Watermarks Settings
|
|
@@ -215,19 +215,19 @@ export interface NielsenWatermarksSettings {
|
|
|
215
215
|
* Complete these fields only if you want to insert watermarks of type Nielsen CBET
|
|
216
216
|
* @public
|
|
217
217
|
*/
|
|
218
|
-
NielsenCbetSettings?: NielsenCBET;
|
|
218
|
+
NielsenCbetSettings?: NielsenCBET | undefined;
|
|
219
219
|
/**
|
|
220
220
|
* Choose the distribution types that you want to assign to the watermarks:
|
|
221
221
|
* - PROGRAM_CONTENT
|
|
222
222
|
* - FINAL_DISTRIBUTOR
|
|
223
223
|
* @public
|
|
224
224
|
*/
|
|
225
|
-
NielsenDistributionType?: NielsenWatermarksDistributionTypes;
|
|
225
|
+
NielsenDistributionType?: NielsenWatermarksDistributionTypes | undefined;
|
|
226
226
|
/**
|
|
227
227
|
* Complete these fields only if you want to insert watermarks of type Nielsen NAES II (N2) and Nielsen NAES VI (NW).
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
NielsenNaesIiNwSettings?: NielsenNaesIiNw;
|
|
230
|
+
NielsenNaesIiNwSettings?: NielsenNaesIiNw | undefined;
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
233
233
|
* Audio Watermark Settings
|
|
@@ -238,7 +238,7 @@ export interface AudioWatermarkSettings {
|
|
|
238
238
|
* Settings to configure Nielsen Watermarks in the audio encode
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
NielsenWatermarksSettings?: NielsenWatermarksSettings;
|
|
241
|
+
NielsenWatermarksSettings?: NielsenWatermarksSettings | undefined;
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
244
|
* @public
|
|
@@ -339,49 +339,49 @@ export interface AacSettings {
|
|
|
339
339
|
* Average bitrate in bits/second. Valid values depend on rate control mode and profile.
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
Bitrate?: number;
|
|
342
|
+
Bitrate?: number | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* 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.
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
CodingMode?: AacCodingMode;
|
|
347
|
+
CodingMode?: AacCodingMode | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* 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.
|
|
350
350
|
*
|
|
351
351
|
* Leave set to "normal" when input does not contain pre-mixed audio + AD.
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
InputType?: AacInputType;
|
|
354
|
+
InputType?: AacInputType | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* AAC Profile.
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
Profile?: AacProfile;
|
|
359
|
+
Profile?: AacProfile | undefined;
|
|
360
360
|
/**
|
|
361
361
|
* Rate Control Mode.
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
RateControlMode?: AacRateControlMode;
|
|
364
|
+
RateControlMode?: AacRateControlMode | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* Sets LATM / LOAS AAC output for raw containers.
|
|
367
367
|
* @public
|
|
368
368
|
*/
|
|
369
|
-
RawFormat?: AacRawFormat;
|
|
369
|
+
RawFormat?: AacRawFormat | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* Sample rate in Hz. Valid values depend on rate control mode and profile.
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
SampleRate?: number;
|
|
374
|
+
SampleRate?: number | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
Spec?: AacSpec;
|
|
379
|
+
Spec?: AacSpec | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* VBR Quality Level - Only used if rateControlMode is VBR.
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
VbrQuality?: AacVbrQuality;
|
|
384
|
+
VbrQuality?: AacVbrQuality | undefined;
|
|
385
385
|
}
|
|
386
386
|
/**
|
|
387
387
|
* @public
|
|
@@ -472,42 +472,42 @@ export interface Ac3Settings {
|
|
|
472
472
|
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
Bitrate?: number;
|
|
475
|
+
Bitrate?: number | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* Specifies the bitstream mode (bsmod) for the emitted AC-3 stream. See ATSC A/52-2012 for background on these values.
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
BitstreamMode?: Ac3BitstreamMode;
|
|
480
|
+
BitstreamMode?: Ac3BitstreamMode | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* Dolby Digital coding mode. Determines number of channels.
|
|
483
483
|
* @public
|
|
484
484
|
*/
|
|
485
|
-
CodingMode?: Ac3CodingMode;
|
|
485
|
+
CodingMode?: Ac3CodingMode | undefined;
|
|
486
486
|
/**
|
|
487
487
|
* Sets the dialnorm for the output. If excluded and input audio is Dolby Digital, dialnorm will be passed through.
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
Dialnorm?: number;
|
|
490
|
+
Dialnorm?: number | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
DrcProfile?: Ac3DrcProfile;
|
|
495
|
+
DrcProfile?: Ac3DrcProfile | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid in codingMode32Lfe mode.
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
LfeFilter?: Ac3LfeFilter;
|
|
500
|
+
LfeFilter?: Ac3LfeFilter | undefined;
|
|
501
501
|
/**
|
|
502
502
|
* 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.
|
|
503
503
|
* @public
|
|
504
504
|
*/
|
|
505
|
-
MetadataControl?: Ac3MetadataControl;
|
|
505
|
+
MetadataControl?: Ac3MetadataControl | undefined;
|
|
506
506
|
/**
|
|
507
507
|
* Applies a 3 dB attenuation to the surround channels. Applies only when the coding mode parameter is CODING_MODE_3_2_LFE.
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
AttenuationControl?: Ac3AttenuationControl;
|
|
510
|
+
AttenuationControl?: Ac3AttenuationControl | undefined;
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
513
|
* @public
|
|
@@ -563,37 +563,37 @@ export interface Eac3AtmosSettings {
|
|
|
563
563
|
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
|
|
564
564
|
* @public
|
|
565
565
|
*/
|
|
566
|
-
Bitrate?: number;
|
|
566
|
+
Bitrate?: number | undefined;
|
|
567
567
|
/**
|
|
568
568
|
* Dolby Digital Plus with Dolby Atmos coding mode. Determines number of channels.
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
CodingMode?: Eac3AtmosCodingMode;
|
|
571
|
+
CodingMode?: Eac3AtmosCodingMode | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* Sets the dialnorm for the output. Default 23.
|
|
574
574
|
* @public
|
|
575
575
|
*/
|
|
576
|
-
Dialnorm?: number;
|
|
576
|
+
Dialnorm?: number | undefined;
|
|
577
577
|
/**
|
|
578
578
|
* Sets the Dolby dynamic range compression profile.
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
DrcLine?: Eac3AtmosDrcLine;
|
|
581
|
+
DrcLine?: Eac3AtmosDrcLine | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
DrcRf?: Eac3AtmosDrcRf;
|
|
586
|
+
DrcRf?: Eac3AtmosDrcRf | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* 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.
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
HeightTrim?: number;
|
|
591
|
+
HeightTrim?: number | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* Surround dimensional trim. Sets the maximum amount to attenuate the surround channels when the downstream player isn't configured to handle Dolby Digital Plus with Dolby Atmos and must remix the channels.
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
SurroundTrim?: number;
|
|
596
|
+
SurroundTrim?: number | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* @public
|
|
@@ -788,102 +788,102 @@ export interface Eac3Settings {
|
|
|
788
788
|
* When set to attenuate3Db, applies a 3 dB attenuation to the surround channels. Only used for 3/2 coding mode.
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
AttenuationControl?: Eac3AttenuationControl;
|
|
791
|
+
AttenuationControl?: Eac3AttenuationControl | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
Bitrate?: number;
|
|
796
|
+
Bitrate?: number | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* Specifies the bitstream mode (bsmod) for the emitted E-AC-3 stream. See ATSC A/52-2012 (Annex E) for background on these values.
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
BitstreamMode?: Eac3BitstreamMode;
|
|
801
|
+
BitstreamMode?: Eac3BitstreamMode | undefined;
|
|
802
802
|
/**
|
|
803
803
|
* Dolby Digital Plus coding mode. Determines number of channels.
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
CodingMode?: Eac3CodingMode;
|
|
806
|
+
CodingMode?: Eac3CodingMode | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* When set to enabled, activates a DC highpass filter for all input channels.
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
DcFilter?: Eac3DcFilter;
|
|
811
|
+
DcFilter?: Eac3DcFilter | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* Sets the dialnorm for the output. If blank and input audio is Dolby Digital Plus, dialnorm will be passed through.
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
Dialnorm?: number;
|
|
816
|
+
Dialnorm?: number | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* Sets the Dolby dynamic range compression profile.
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
DrcLine?: Eac3DrcLine;
|
|
821
|
+
DrcLine?: Eac3DrcLine | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
DrcRf?: Eac3DrcRf;
|
|
826
|
+
DrcRf?: Eac3DrcRf | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* When encoding 3/2 audio, setting to lfe enables the LFE channel
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
LfeControl?: Eac3LfeControl;
|
|
831
|
+
LfeControl?: Eac3LfeControl | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid with codingMode32 coding mode.
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
836
|
-
LfeFilter?: Eac3LfeFilter;
|
|
836
|
+
LfeFilter?: Eac3LfeFilter | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* Left only/Right only center mix level. Only used for 3/2 coding mode.
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
LoRoCenterMixLevel?: number;
|
|
841
|
+
LoRoCenterMixLevel?: number | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* Left only/Right only surround mix level. Only used for 3/2 coding mode.
|
|
844
844
|
* @public
|
|
845
845
|
*/
|
|
846
|
-
LoRoSurroundMixLevel?: number;
|
|
846
|
+
LoRoSurroundMixLevel?: number | undefined;
|
|
847
847
|
/**
|
|
848
848
|
* Left total/Right total center mix level. Only used for 3/2 coding mode.
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
LtRtCenterMixLevel?: number;
|
|
851
|
+
LtRtCenterMixLevel?: number | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* Left total/Right total surround mix level. Only used for 3/2 coding mode.
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
LtRtSurroundMixLevel?: number;
|
|
856
|
+
LtRtSurroundMixLevel?: number | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* 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.
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
MetadataControl?: Eac3MetadataControl;
|
|
861
|
+
MetadataControl?: Eac3MetadataControl | undefined;
|
|
862
862
|
/**
|
|
863
863
|
* 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.
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
PassthroughControl?: Eac3PassthroughControl;
|
|
866
|
+
PassthroughControl?: Eac3PassthroughControl | undefined;
|
|
867
867
|
/**
|
|
868
868
|
* When set to shift90Degrees, applies a 90-degree phase shift to the surround channels. Only used for 3/2 coding mode.
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
PhaseControl?: Eac3PhaseControl;
|
|
871
|
+
PhaseControl?: Eac3PhaseControl | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* Stereo downmix preference. Only used for 3/2 coding mode.
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
StereoDownmix?: Eac3StereoDownmix;
|
|
876
|
+
StereoDownmix?: Eac3StereoDownmix | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* When encoding 3/2 audio, sets whether an extra center back surround channel is matrix encoded into the left and right surround channels.
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
SurroundExMode?: Eac3SurroundExMode;
|
|
881
|
+
SurroundExMode?: Eac3SurroundExMode | undefined;
|
|
882
882
|
/**
|
|
883
883
|
* When encoding 2/0 audio, sets whether Dolby Surround is matrix encoded into the two channels.
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
SurroundMode?: Eac3SurroundMode;
|
|
886
|
+
SurroundMode?: Eac3SurroundMode | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* @public
|
|
@@ -906,17 +906,17 @@ export interface Mp2Settings {
|
|
|
906
906
|
* Average bitrate in bits/second.
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
Bitrate?: number;
|
|
909
|
+
Bitrate?: number | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo).
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
CodingMode?: Mp2CodingMode;
|
|
914
|
+
CodingMode?: Mp2CodingMode | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* Sample rate in Hz.
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
SampleRate?: number;
|
|
919
|
+
SampleRate?: number | undefined;
|
|
920
920
|
}
|
|
921
921
|
/**
|
|
922
922
|
* Pass Through Settings
|
|
@@ -947,17 +947,17 @@ export interface WavSettings {
|
|
|
947
947
|
* Bits per sample.
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
BitDepth?: number;
|
|
950
|
+
BitDepth?: number | undefined;
|
|
951
951
|
/**
|
|
952
952
|
* The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.
|
|
953
953
|
* @public
|
|
954
954
|
*/
|
|
955
|
-
CodingMode?: WavCodingMode;
|
|
955
|
+
CodingMode?: WavCodingMode | undefined;
|
|
956
956
|
/**
|
|
957
957
|
* Sample rate in Hz.
|
|
958
958
|
* @public
|
|
959
959
|
*/
|
|
960
|
-
SampleRate?: number;
|
|
960
|
+
SampleRate?: number | undefined;
|
|
961
961
|
}
|
|
962
962
|
/**
|
|
963
963
|
* Audio Codec Settings
|
|
@@ -968,37 +968,37 @@ export interface AudioCodecSettings {
|
|
|
968
968
|
* Aac Settings
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
AacSettings?: AacSettings;
|
|
971
|
+
AacSettings?: AacSettings | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* Ac3 Settings
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
Ac3Settings?: Ac3Settings;
|
|
976
|
+
Ac3Settings?: Ac3Settings | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* Eac3 Atmos Settings
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
Eac3AtmosSettings?: Eac3AtmosSettings;
|
|
981
|
+
Eac3AtmosSettings?: Eac3AtmosSettings | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* Eac3 Settings
|
|
984
984
|
* @public
|
|
985
985
|
*/
|
|
986
|
-
Eac3Settings?: Eac3Settings;
|
|
986
|
+
Eac3Settings?: Eac3Settings | undefined;
|
|
987
987
|
/**
|
|
988
988
|
* Mp2 Settings
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
Mp2Settings?: Mp2Settings;
|
|
991
|
+
Mp2Settings?: Mp2Settings | undefined;
|
|
992
992
|
/**
|
|
993
993
|
* Pass Through Settings
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
PassThroughSettings?: PassThroughSettings;
|
|
996
|
+
PassThroughSettings?: PassThroughSettings | undefined;
|
|
997
997
|
/**
|
|
998
998
|
* Wav Settings
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
WavSettings?: WavSettings;
|
|
1001
|
+
WavSettings?: WavSettings | undefined;
|
|
1002
1002
|
}
|
|
1003
1003
|
/**
|
|
1004
1004
|
* @public
|
|
@@ -1043,13 +1043,13 @@ export interface RemixSettings {
|
|
|
1043
1043
|
* Number of input channels to be used.
|
|
1044
1044
|
* @public
|
|
1045
1045
|
*/
|
|
1046
|
-
ChannelsIn?: number;
|
|
1046
|
+
ChannelsIn?: number | undefined;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* Number of output channels to be produced.
|
|
1049
1049
|
* Valid values: 1, 2, 4, 6, 8
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
ChannelsOut?: number;
|
|
1052
|
+
ChannelsOut?: number | undefined;
|
|
1053
1053
|
}
|
|
1054
1054
|
/**
|
|
1055
1055
|
* Audio Description
|
|
@@ -1060,7 +1060,7 @@ export interface AudioDescription {
|
|
|
1060
1060
|
* Advanced audio normalization settings.
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
AudioNormalizationSettings?: AudioNormalizationSettings;
|
|
1063
|
+
AudioNormalizationSettings?: AudioNormalizationSettings | undefined;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* The name of the AudioSelector used as the source for this AudioDescription.
|
|
1066
1066
|
* @public
|
|
@@ -1070,7 +1070,7 @@ export interface AudioDescription {
|
|
|
1070
1070
|
* Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
AudioType?: AudioType;
|
|
1073
|
+
AudioType?: AudioType | undefined;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* Determines how audio type is determined.
|
|
1076
1076
|
* followInput: If the input contains an ISO 639 audioType, then that value is passed through to the output. If the input contains no ISO 639 audioType, the value in Audio Type is included in the output.
|
|
@@ -1078,27 +1078,27 @@ export interface AudioDescription {
|
|
|
1078
1078
|
* Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
AudioTypeControl?: AudioDescriptionAudioTypeControl;
|
|
1081
|
+
AudioTypeControl?: AudioDescriptionAudioTypeControl | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* Settings to configure one or more solutions that insert audio watermarks in the audio encode
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
AudioWatermarkingSettings?: AudioWatermarkSettings;
|
|
1086
|
+
AudioWatermarkingSettings?: AudioWatermarkSettings | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* Audio codec settings.
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
CodecSettings?: AudioCodecSettings;
|
|
1091
|
+
CodecSettings?: AudioCodecSettings | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* RFC 5646 language code representing the language of the audio output track. Only used if languageControlMode is useConfigured, or there is no ISO 639 language code specified in the input.
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
LanguageCode?: string;
|
|
1096
|
+
LanguageCode?: string | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* 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.
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
LanguageCodeControl?: AudioDescriptionLanguageCodeControl;
|
|
1101
|
+
LanguageCodeControl?: AudioDescriptionLanguageCodeControl | undefined;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.
|
|
1104
1104
|
* @public
|
|
@@ -1108,22 +1108,22 @@ export interface AudioDescription {
|
|
|
1108
1108
|
* Settings that control how input audio channels are remixed into the output audio channels.
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
RemixSettings?: RemixSettings;
|
|
1111
|
+
RemixSettings?: RemixSettings | undefined;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).
|
|
1114
1114
|
* @public
|
|
1115
1115
|
*/
|
|
1116
|
-
StreamName?: string;
|
|
1116
|
+
StreamName?: string | undefined;
|
|
1117
1117
|
/**
|
|
1118
1118
|
* Identifies the DASH roles to assign to this audio output. Applies only when the audio output is configured for DVB DASH accessibility signaling.
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
AudioDashRoles?: DashRoleAudio[];
|
|
1121
|
+
AudioDashRoles?: DashRoleAudio[] | undefined;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Identifies DVB DASH accessibility signaling in this audio output. Used in Microsoft Smooth Streaming outputs to signal accessibility information to packagers.
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
DvbDashAccessibility?: DvbDashAccessibility;
|
|
1126
|
+
DvbDashAccessibility?: DvbDashAccessibility | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
/**
|
|
1129
1129
|
* Audio Hls Rendition Selection
|
|
@@ -1167,7 +1167,7 @@ export interface AudioLanguageSelection {
|
|
|
1167
1167
|
* 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.
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
LanguageSelectionPolicy?: AudioLanguageSelectionPolicy;
|
|
1170
|
+
LanguageSelectionPolicy?: AudioLanguageSelectionPolicy | undefined;
|
|
1171
1171
|
}
|
|
1172
1172
|
/**
|
|
1173
1173
|
* Audio Pid Selection
|
|
@@ -1235,7 +1235,7 @@ export interface AudioTrackSelection {
|
|
|
1235
1235
|
* Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337
|
|
1236
1236
|
* @public
|
|
1237
1237
|
*/
|
|
1238
|
-
DolbyEDecode?: AudioDolbyEDecode;
|
|
1238
|
+
DolbyEDecode?: AudioDolbyEDecode | undefined;
|
|
1239
1239
|
}
|
|
1240
1240
|
/**
|
|
1241
1241
|
* Audio Selector Settings
|
|
@@ -1246,22 +1246,22 @@ export interface AudioSelectorSettings {
|
|
|
1246
1246
|
* Audio Hls Rendition Selection
|
|
1247
1247
|
* @public
|
|
1248
1248
|
*/
|
|
1249
|
-
AudioHlsRenditionSelection?: AudioHlsRenditionSelection;
|
|
1249
|
+
AudioHlsRenditionSelection?: AudioHlsRenditionSelection | undefined;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* Audio Language Selection
|
|
1252
1252
|
* @public
|
|
1253
1253
|
*/
|
|
1254
|
-
AudioLanguageSelection?: AudioLanguageSelection;
|
|
1254
|
+
AudioLanguageSelection?: AudioLanguageSelection | undefined;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* Audio Pid Selection
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
AudioPidSelection?: AudioPidSelection;
|
|
1259
|
+
AudioPidSelection?: AudioPidSelection | undefined;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* Audio Track Selection
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
AudioTrackSelection?: AudioTrackSelection;
|
|
1264
|
+
AudioTrackSelection?: AudioTrackSelection | undefined;
|
|
1265
1265
|
}
|
|
1266
1266
|
/**
|
|
1267
1267
|
* Audio Selector
|
|
@@ -1277,7 +1277,7 @@ export interface AudioSelector {
|
|
|
1277
1277
|
* The audio selector settings.
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
SelectorSettings?: AudioSelectorSettings;
|
|
1280
|
+
SelectorSettings?: AudioSelectorSettings | undefined;
|
|
1281
1281
|
}
|
|
1282
1282
|
/**
|
|
1283
1283
|
* Details from a failed operation
|
|
@@ -1288,22 +1288,22 @@ export interface BatchFailedResultModel {
|
|
|
1288
1288
|
* ARN of the resource
|
|
1289
1289
|
* @public
|
|
1290
1290
|
*/
|
|
1291
|
-
Arn?: string;
|
|
1291
|
+
Arn?: string | undefined;
|
|
1292
1292
|
/**
|
|
1293
1293
|
* Error code for the failed operation
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
Code?: string;
|
|
1296
|
+
Code?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* ID of the resource
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
Id?: string;
|
|
1301
|
+
Id?: string | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Error message for the failed operation
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
Message?: string;
|
|
1306
|
+
Message?: string | undefined;
|
|
1307
1307
|
}
|
|
1308
1308
|
/**
|
|
1309
1309
|
* Details from a successful operation
|
|
@@ -1314,17 +1314,17 @@ export interface BatchSuccessfulResultModel {
|
|
|
1314
1314
|
* ARN of the resource
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
Arn?: string;
|
|
1317
|
+
Arn?: string | undefined;
|
|
1318
1318
|
/**
|
|
1319
1319
|
* ID of the resource
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
Id?: string;
|
|
1322
|
+
Id?: string | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* Current state of the resource
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
State?: string;
|
|
1327
|
+
State?: string | undefined;
|
|
1328
1328
|
}
|
|
1329
1329
|
/**
|
|
1330
1330
|
* @public
|
|
@@ -1402,7 +1402,7 @@ export interface InputLocation {
|
|
|
1402
1402
|
* key used to extract the password from EC2 Parameter store
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
PasswordParam?: string;
|
|
1405
|
+
PasswordParam?: string | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* Uniform Resource Identifier - This should be a path to a file accessible to the Live system (eg. a http:// URI) depending on the output type. For example, a RTMP destination should have a uri simliar to: "rtmp://fmsserver/live".
|
|
1408
1408
|
* @public
|
|
@@ -1412,7 +1412,7 @@ export interface InputLocation {
|
|
|
1412
1412
|
* Documentation update needed
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
Username?: string;
|
|
1415
|
+
Username?: string | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* @public
|
|
@@ -1480,87 +1480,87 @@ export interface BurnInDestinationSettings {
|
|
|
1480
1480
|
* 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.
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
Alignment?: BurnInAlignment;
|
|
1483
|
+
Alignment?: BurnInAlignment | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
BackgroundColor?: BurnInBackgroundColor;
|
|
1488
|
+
BackgroundColor?: BurnInBackgroundColor | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* 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.
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
BackgroundOpacity?: number;
|
|
1493
|
+
BackgroundOpacity?: number | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* External font file used for caption burn-in. File extension must be 'ttf' or 'tte'. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match.
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
Font?: InputLocation;
|
|
1498
|
+
Font?: InputLocation | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* 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.
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
FontColor?: BurnInFontColor;
|
|
1503
|
+
FontColor?: BurnInFontColor | undefined;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
FontOpacity?: number;
|
|
1508
|
+
FontOpacity?: number | undefined;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
FontResolution?: number;
|
|
1513
|
+
FontResolution?: number | undefined;
|
|
1514
1514
|
/**
|
|
1515
1515
|
* When set to 'auto' fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
|
-
FontSize?: string;
|
|
1518
|
+
FontSize?: string | undefined;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* 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.
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
OutlineColor?: BurnInOutlineColor;
|
|
1523
|
+
OutlineColor?: BurnInOutlineColor | undefined;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* 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.
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
OutlineSize?: number;
|
|
1528
|
+
OutlineSize?: number | undefined;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
ShadowColor?: BurnInShadowColor;
|
|
1533
|
+
ShadowColor?: BurnInShadowColor | undefined;
|
|
1534
1534
|
/**
|
|
1535
1535
|
* 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.
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
ShadowOpacity?: number;
|
|
1538
|
+
ShadowOpacity?: number | undefined;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
|
|
1541
1541
|
* @public
|
|
1542
1542
|
*/
|
|
1543
|
-
ShadowXOffset?: number;
|
|
1543
|
+
ShadowXOffset?: number | undefined;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
ShadowYOffset?: number;
|
|
1548
|
+
ShadowYOffset?: number | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* 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.
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
TeletextGridControl?: BurnInTeletextGridControl;
|
|
1553
|
+
TeletextGridControl?: BurnInTeletextGridControl | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* 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.
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
XPosition?: number;
|
|
1558
|
+
XPosition?: number | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
YPosition?: number;
|
|
1563
|
+
YPosition?: number | undefined;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
1566
1566
|
* @public
|
|
@@ -1654,87 +1654,87 @@ export interface DvbSubDestinationSettings {
|
|
|
1654
1654
|
* 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.
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
Alignment?: DvbSubDestinationAlignment;
|
|
1657
|
+
Alignment?: DvbSubDestinationAlignment | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
BackgroundColor?: DvbSubDestinationBackgroundColor;
|
|
1662
|
+
BackgroundColor?: DvbSubDestinationBackgroundColor | undefined;
|
|
1663
1663
|
/**
|
|
1664
1664
|
* 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.
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
BackgroundOpacity?: number;
|
|
1667
|
+
BackgroundOpacity?: number | undefined;
|
|
1668
1668
|
/**
|
|
1669
1669
|
* External font file used for caption burn-in. File extension must be 'ttf' or 'tte'. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match.
|
|
1670
1670
|
* @public
|
|
1671
1671
|
*/
|
|
1672
|
-
Font?: InputLocation;
|
|
1672
|
+
Font?: InputLocation | undefined;
|
|
1673
1673
|
/**
|
|
1674
1674
|
* 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.
|
|
1675
1675
|
* @public
|
|
1676
1676
|
*/
|
|
1677
|
-
FontColor?: DvbSubDestinationFontColor;
|
|
1677
|
+
FontColor?: DvbSubDestinationFontColor | undefined;
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
FontOpacity?: number;
|
|
1682
|
+
FontOpacity?: number | undefined;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
FontResolution?: number;
|
|
1687
|
+
FontResolution?: number | undefined;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
FontSize?: string;
|
|
1692
|
+
FontSize?: string | undefined;
|
|
1693
1693
|
/**
|
|
1694
1694
|
* 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.
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
|
-
OutlineColor?: DvbSubDestinationOutlineColor;
|
|
1697
|
+
OutlineColor?: DvbSubDestinationOutlineColor | undefined;
|
|
1698
1698
|
/**
|
|
1699
1699
|
* 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.
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
OutlineSize?: number;
|
|
1702
|
+
OutlineSize?: number | undefined;
|
|
1703
1703
|
/**
|
|
1704
1704
|
* Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
ShadowColor?: DvbSubDestinationShadowColor;
|
|
1707
|
+
ShadowColor?: DvbSubDestinationShadowColor | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* 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.
|
|
1710
1710
|
* @public
|
|
1711
1711
|
*/
|
|
1712
|
-
ShadowOpacity?: number;
|
|
1712
|
+
ShadowOpacity?: number | undefined;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
ShadowXOffset?: number;
|
|
1717
|
+
ShadowXOffset?: number | undefined;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
ShadowYOffset?: number;
|
|
1722
|
+
ShadowYOffset?: number | undefined;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* 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.
|
|
1725
1725
|
* @public
|
|
1726
1726
|
*/
|
|
1727
|
-
TeletextGridControl?: DvbSubDestinationTeletextGridControl;
|
|
1727
|
+
TeletextGridControl?: DvbSubDestinationTeletextGridControl | undefined;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* 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.
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
XPosition?: number;
|
|
1732
|
+
XPosition?: number | undefined;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. 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.
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
YPosition?: number;
|
|
1737
|
+
YPosition?: number | undefined;
|
|
1738
1738
|
}
|
|
1739
1739
|
/**
|
|
1740
1740
|
* @public
|
|
@@ -1769,7 +1769,7 @@ export interface EbuTtDDestinationSettings {
|
|
|
1769
1769
|
* Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
CopyrightHolder?: string;
|
|
1772
|
+
CopyrightHolder?: string | undefined;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* Specifies how to handle the gap between the lines (in multi-line captions).
|
|
1775
1775
|
*
|
|
@@ -1777,7 +1777,7 @@ export interface EbuTtDDestinationSettings {
|
|
|
1777
1777
|
* - disabled: Leave the gap unfilled.
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
FillLineGap?: EbuTtDFillLineGapControl;
|
|
1780
|
+
FillLineGap?: EbuTtDFillLineGapControl | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* 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".)
|
|
1783
1783
|
*
|
|
@@ -1787,7 +1787,7 @@ export interface EbuTtDDestinationSettings {
|
|
|
1787
1787
|
* - Leave blank to set the family to “monospace”.
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
FontFamily?: string;
|
|
1790
|
+
FontFamily?: string | undefined;
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions.
|
|
1793
1793
|
*
|
|
@@ -1795,7 +1795,7 @@ export interface EbuTtDDestinationSettings {
|
|
|
1795
1795
|
* - exclude: In the font data attached to the EBU-TT captions, set the font family to "monospaced". Do not include any other style information.
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
StyleControl?: EbuTtDDestinationStyleControl;
|
|
1798
|
+
StyleControl?: EbuTtDDestinationStyleControl | undefined;
|
|
1799
1799
|
}
|
|
1800
1800
|
/**
|
|
1801
1801
|
* Embedded Destination Settings
|
|
@@ -1860,7 +1860,7 @@ export interface TtmlDestinationSettings {
|
|
|
1860
1860
|
* This field is not currently supported and will not affect the output styling. Leave the default value.
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
StyleControl?: TtmlDestinationStyleControl;
|
|
1863
|
+
StyleControl?: TtmlDestinationStyleControl | undefined;
|
|
1864
1864
|
}
|
|
1865
1865
|
/**
|
|
1866
1866
|
* @public
|
|
@@ -1883,7 +1883,7 @@ export interface WebvttDestinationSettings {
|
|
|
1883
1883
|
* 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.
|
|
1884
1884
|
* @public
|
|
1885
1885
|
*/
|
|
1886
|
-
StyleControl?: WebvttDestinationStyleControl;
|
|
1886
|
+
StyleControl?: WebvttDestinationStyleControl | undefined;
|
|
1887
1887
|
}
|
|
1888
1888
|
/**
|
|
1889
1889
|
* Caption Destination Settings
|
|
@@ -1894,67 +1894,67 @@ export interface CaptionDestinationSettings {
|
|
|
1894
1894
|
* Arib Destination Settings
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
AribDestinationSettings?: AribDestinationSettings;
|
|
1897
|
+
AribDestinationSettings?: AribDestinationSettings | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* Burn In Destination Settings
|
|
1900
1900
|
* @public
|
|
1901
1901
|
*/
|
|
1902
|
-
BurnInDestinationSettings?: BurnInDestinationSettings;
|
|
1902
|
+
BurnInDestinationSettings?: BurnInDestinationSettings | undefined;
|
|
1903
1903
|
/**
|
|
1904
1904
|
* Dvb Sub Destination Settings
|
|
1905
1905
|
* @public
|
|
1906
1906
|
*/
|
|
1907
|
-
DvbSubDestinationSettings?: DvbSubDestinationSettings;
|
|
1907
|
+
DvbSubDestinationSettings?: DvbSubDestinationSettings | undefined;
|
|
1908
1908
|
/**
|
|
1909
1909
|
* Ebu Tt DDestination Settings
|
|
1910
1910
|
* @public
|
|
1911
1911
|
*/
|
|
1912
|
-
EbuTtDDestinationSettings?: EbuTtDDestinationSettings;
|
|
1912
|
+
EbuTtDDestinationSettings?: EbuTtDDestinationSettings | undefined;
|
|
1913
1913
|
/**
|
|
1914
1914
|
* Embedded Destination Settings
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
EmbeddedDestinationSettings?: EmbeddedDestinationSettings;
|
|
1917
|
+
EmbeddedDestinationSettings?: EmbeddedDestinationSettings | undefined;
|
|
1918
1918
|
/**
|
|
1919
1919
|
* Embedded Plus Scte20 Destination Settings
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
EmbeddedPlusScte20DestinationSettings?: EmbeddedPlusScte20DestinationSettings;
|
|
1922
|
+
EmbeddedPlusScte20DestinationSettings?: EmbeddedPlusScte20DestinationSettings | undefined;
|
|
1923
1923
|
/**
|
|
1924
1924
|
* Rtmp Caption Info Destination Settings
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
RtmpCaptionInfoDestinationSettings?: RtmpCaptionInfoDestinationSettings;
|
|
1927
|
+
RtmpCaptionInfoDestinationSettings?: RtmpCaptionInfoDestinationSettings | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* Scte20 Plus Embedded Destination Settings
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
Scte20PlusEmbeddedDestinationSettings?: Scte20PlusEmbeddedDestinationSettings;
|
|
1932
|
+
Scte20PlusEmbeddedDestinationSettings?: Scte20PlusEmbeddedDestinationSettings | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* Scte27 Destination Settings
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
Scte27DestinationSettings?: Scte27DestinationSettings;
|
|
1937
|
+
Scte27DestinationSettings?: Scte27DestinationSettings | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* Smpte Tt Destination Settings
|
|
1940
1940
|
* @public
|
|
1941
1941
|
*/
|
|
1942
|
-
SmpteTtDestinationSettings?: SmpteTtDestinationSettings;
|
|
1942
|
+
SmpteTtDestinationSettings?: SmpteTtDestinationSettings | undefined;
|
|
1943
1943
|
/**
|
|
1944
1944
|
* Teletext Destination Settings
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
|
-
TeletextDestinationSettings?: TeletextDestinationSettings;
|
|
1947
|
+
TeletextDestinationSettings?: TeletextDestinationSettings | undefined;
|
|
1948
1948
|
/**
|
|
1949
1949
|
* Ttml Destination Settings
|
|
1950
1950
|
* @public
|
|
1951
1951
|
*/
|
|
1952
|
-
TtmlDestinationSettings?: TtmlDestinationSettings;
|
|
1952
|
+
TtmlDestinationSettings?: TtmlDestinationSettings | undefined;
|
|
1953
1953
|
/**
|
|
1954
1954
|
* Webvtt Destination Settings
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
WebvttDestinationSettings?: WebvttDestinationSettings;
|
|
1957
|
+
WebvttDestinationSettings?: WebvttDestinationSettings | undefined;
|
|
1958
1958
|
}
|
|
1959
1959
|
/**
|
|
1960
1960
|
* Caption Description
|
|
@@ -1965,7 +1965,7 @@ export interface CaptionDescription {
|
|
|
1965
1965
|
* Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds. This signaling is added to HLS output group and MediaPackage output group.
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
Accessibility?: AccessibilityType;
|
|
1968
|
+
Accessibility?: AccessibilityType | undefined;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
|
|
1971
1971
|
* @public
|
|
@@ -1975,17 +1975,17 @@ export interface CaptionDescription {
|
|
|
1975
1975
|
* Additional settings for captions destination that depend on the destination type.
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
DestinationSettings?: CaptionDestinationSettings;
|
|
1978
|
+
DestinationSettings?: CaptionDestinationSettings | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* ISO 639-2 three-digit code: http://www.loc.gov/standards/iso639-2/
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
LanguageCode?: string;
|
|
1983
|
+
LanguageCode?: string | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* Human readable information to indicate captions available for players (eg. English, or Spanish).
|
|
1986
1986
|
* @public
|
|
1987
1987
|
*/
|
|
1988
|
-
LanguageDescription?: string;
|
|
1988
|
+
LanguageDescription?: string | undefined;
|
|
1989
1989
|
/**
|
|
1990
1990
|
* Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
|
|
1991
1991
|
* @public
|
|
@@ -1995,12 +1995,12 @@ export interface CaptionDescription {
|
|
|
1995
1995
|
* Identifies the DASH roles to assign to this captions output. Applies only when the captions output is configured for DVB DASH accessibility signaling.
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
CaptionDashRoles?: DashRoleCaption[];
|
|
1998
|
+
CaptionDashRoles?: DashRoleCaption[] | undefined;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* Identifies DVB DASH accessibility signaling in this captions output. Used in Microsoft Smooth Streaming outputs to signal accessibility information to packagers.
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
DvbDashAccessibility?: DvbDashAccessibility;
|
|
2003
|
+
DvbDashAccessibility?: DvbDashAccessibility | undefined;
|
|
2004
2004
|
}
|
|
2005
2005
|
/**
|
|
2006
2006
|
* Maps a caption channel to an ISO 693-2 language code (http://www.loc.gov/standards/iso639-2), with an optional description.
|
|
@@ -2032,7 +2032,7 @@ export interface AncillarySourceSettings {
|
|
|
2032
2032
|
* Specifies the number (1 to 4) of the captions channel you want to extract from the ancillary captions. If you plan to convert the ancillary captions to another format, complete this field. If you plan to choose Embedded as the captions destination in the output (to pass through all the channels in the ancillary captions), leave this field blank because MediaLive ignores the field.
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
SourceAncillaryChannelNumber?: number;
|
|
2035
|
+
SourceAncillaryChannelNumber?: number | undefined;
|
|
2036
2036
|
}
|
|
2037
2037
|
/**
|
|
2038
2038
|
* Arib Source Settings
|
|
@@ -2066,12 +2066,12 @@ export interface DvbSubSourceSettings {
|
|
|
2066
2066
|
* provide the language to consider when translating the image-based source to text.
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
OcrLanguage?: DvbSubOcrLanguage;
|
|
2069
|
+
OcrLanguage?: DvbSubOcrLanguage | undefined;
|
|
2070
2070
|
/**
|
|
2071
2071
|
* 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.
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
Pid?: number;
|
|
2074
|
+
Pid?: number | undefined;
|
|
2075
2075
|
}
|
|
2076
2076
|
/**
|
|
2077
2077
|
* @public
|
|
@@ -2106,22 +2106,22 @@ export interface EmbeddedSourceSettings {
|
|
|
2106
2106
|
* 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.
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
Convert608To708?: EmbeddedConvert608To708;
|
|
2109
|
+
Convert608To708?: EmbeddedConvert608To708 | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* Set to "auto" to handle streams with intermittent and/or non-aligned SCTE-20 and Embedded captions.
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
Scte20Detection?: EmbeddedScte20Detection;
|
|
2114
|
+
Scte20Detection?: EmbeddedScte20Detection | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
|
|
2117
2117
|
* @public
|
|
2118
2118
|
*/
|
|
2119
|
-
Source608ChannelNumber?: number;
|
|
2119
|
+
Source608ChannelNumber?: number | undefined;
|
|
2120
2120
|
/**
|
|
2121
2121
|
* This field is unused and deprecated.
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
Source608TrackNumber?: number;
|
|
2124
|
+
Source608TrackNumber?: number | undefined;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* @public
|
|
@@ -2144,12 +2144,12 @@ export interface Scte20SourceSettings {
|
|
|
2144
2144
|
* 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.
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
Convert608To708?: Scte20Convert608To708;
|
|
2147
|
+
Convert608To708?: Scte20Convert608To708 | undefined;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
|
|
2150
2150
|
* @public
|
|
2151
2151
|
*/
|
|
2152
|
-
Source608ChannelNumber?: number;
|
|
2152
|
+
Source608ChannelNumber?: number | undefined;
|
|
2153
2153
|
}
|
|
2154
2154
|
/**
|
|
2155
2155
|
* @public
|
|
@@ -2177,7 +2177,7 @@ export interface Scte27SourceSettings {
|
|
|
2177
2177
|
* provide the language to consider when translating the image-based source to text.
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
OcrLanguage?: Scte27OcrLanguage;
|
|
2180
|
+
OcrLanguage?: Scte27OcrLanguage | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* The pid field is used in conjunction with the caption selector languageCode field as follows:
|
|
2183
2183
|
* - Specify PID and Language: Extracts captions from that PID; the language is "informational".
|
|
@@ -2186,7 +2186,7 @@ export interface Scte27SourceSettings {
|
|
|
2186
2186
|
* - Omit PID and omit Language: Valid only if source is DVB-Sub that is being passed through; all languages will be passed through.
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
Pid?: number;
|
|
2189
|
+
Pid?: number | undefined;
|
|
2190
2190
|
}
|
|
2191
2191
|
/**
|
|
2192
2192
|
* Caption Rectangle
|
|
@@ -2232,12 +2232,12 @@ export interface TeletextSourceSettings {
|
|
|
2232
2232
|
* Optionally defines a region where TTML style captions will be displayed
|
|
2233
2233
|
* @public
|
|
2234
2234
|
*/
|
|
2235
|
-
OutputRectangle?: CaptionRectangle;
|
|
2235
|
+
OutputRectangle?: CaptionRectangle | undefined;
|
|
2236
2236
|
/**
|
|
2237
2237
|
* Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no "0x" prefix.
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
PageNumber?: string;
|
|
2240
|
+
PageNumber?: string | undefined;
|
|
2241
2241
|
}
|
|
2242
2242
|
/**
|
|
2243
2243
|
* Caption Selector Settings
|
|
@@ -2248,37 +2248,37 @@ export interface CaptionSelectorSettings {
|
|
|
2248
2248
|
* Ancillary Source Settings
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
AncillarySourceSettings?: AncillarySourceSettings;
|
|
2251
|
+
AncillarySourceSettings?: AncillarySourceSettings | undefined;
|
|
2252
2252
|
/**
|
|
2253
2253
|
* Arib Source Settings
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
AribSourceSettings?: AribSourceSettings;
|
|
2256
|
+
AribSourceSettings?: AribSourceSettings | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* Dvb Sub Source Settings
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
DvbSubSourceSettings?: DvbSubSourceSettings;
|
|
2261
|
+
DvbSubSourceSettings?: DvbSubSourceSettings | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* Embedded Source Settings
|
|
2264
2264
|
* @public
|
|
2265
2265
|
*/
|
|
2266
|
-
EmbeddedSourceSettings?: EmbeddedSourceSettings;
|
|
2266
|
+
EmbeddedSourceSettings?: EmbeddedSourceSettings | undefined;
|
|
2267
2267
|
/**
|
|
2268
2268
|
* Scte20 Source Settings
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
Scte20SourceSettings?: Scte20SourceSettings;
|
|
2271
|
+
Scte20SourceSettings?: Scte20SourceSettings | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* Scte27 Source Settings
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
Scte27SourceSettings?: Scte27SourceSettings;
|
|
2276
|
+
Scte27SourceSettings?: Scte27SourceSettings | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* Teletext Source Settings
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
TeletextSourceSettings?: TeletextSourceSettings;
|
|
2281
|
+
TeletextSourceSettings?: TeletextSourceSettings | undefined;
|
|
2282
2282
|
}
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Caption Selector
|
|
@@ -2289,7 +2289,7 @@ export interface CaptionSelector {
|
|
|
2289
2289
|
* When specified this field indicates the three letter language code of the caption track to extract from the source.
|
|
2290
2290
|
* @public
|
|
2291
2291
|
*/
|
|
2292
|
-
LanguageCode?: string;
|
|
2292
|
+
LanguageCode?: string | undefined;
|
|
2293
2293
|
/**
|
|
2294
2294
|
* Name identifier for a caption selector. This name is used to associate this caption selector with one or more caption descriptions. Names must be unique within an event.
|
|
2295
2295
|
* @public
|
|
@@ -2299,7 +2299,7 @@ export interface CaptionSelector {
|
|
|
2299
2299
|
* Caption selector settings.
|
|
2300
2300
|
* @public
|
|
2301
2301
|
*/
|
|
2302
|
-
SelectorSettings?: CaptionSelectorSettings;
|
|
2302
|
+
SelectorSettings?: CaptionSelectorSettings | undefined;
|
|
2303
2303
|
}
|
|
2304
2304
|
/**
|
|
2305
2305
|
* Placeholder documentation for ChannelEgressEndpoint
|
|
@@ -2310,7 +2310,7 @@ export interface ChannelEgressEndpoint {
|
|
|
2310
2310
|
* Public IP of where a channel's output comes from
|
|
2311
2311
|
* @public
|
|
2312
2312
|
*/
|
|
2313
|
-
SourceIp?: string;
|
|
2313
|
+
SourceIp?: string | undefined;
|
|
2314
2314
|
}
|
|
2315
2315
|
/**
|
|
2316
2316
|
* @public
|
|
@@ -2333,12 +2333,12 @@ export interface DescribeAnywhereSettings {
|
|
|
2333
2333
|
* The ID of the channel placement group for the channel.
|
|
2334
2334
|
* @public
|
|
2335
2335
|
*/
|
|
2336
|
-
ChannelPlacementGroupId?: string;
|
|
2336
|
+
ChannelPlacementGroupId?: string | undefined;
|
|
2337
2337
|
/**
|
|
2338
2338
|
* The ID of the cluster for the channel.
|
|
2339
2339
|
* @public
|
|
2340
2340
|
*/
|
|
2341
|
-
ClusterId?: string;
|
|
2341
|
+
ClusterId?: string | undefined;
|
|
2342
2342
|
}
|
|
2343
2343
|
/**
|
|
2344
2344
|
* @public
|
|
@@ -2363,7 +2363,7 @@ export interface CdiInputSpecification {
|
|
|
2363
2363
|
* Maximum CDI input resolution
|
|
2364
2364
|
* @public
|
|
2365
2365
|
*/
|
|
2366
|
-
Resolution?: CdiInputResolution;
|
|
2366
|
+
Resolution?: CdiInputResolution | undefined;
|
|
2367
2367
|
}
|
|
2368
2368
|
/**
|
|
2369
2369
|
* @public
|
|
@@ -2386,7 +2386,7 @@ export interface MediaPackageOutputDestinationSettings {
|
|
|
2386
2386
|
* ID of the channel in MediaPackage that is the destination for this output group. You do not need to specify the individual inputs in MediaPackage; MediaLive will handle the connection of the two MediaLive pipelines to the two MediaPackage inputs. The MediaPackage channel and MediaLive channel must be in the same region.
|
|
2387
2387
|
* @public
|
|
2388
2388
|
*/
|
|
2389
|
-
ChannelId?: string;
|
|
2389
|
+
ChannelId?: string | undefined;
|
|
2390
2390
|
}
|
|
2391
2391
|
/**
|
|
2392
2392
|
* Multiplex Program Input Destination Settings for outputting a Channel to a Multiplex
|
|
@@ -2398,12 +2398,12 @@ export interface MultiplexProgramChannelDestinationSettings {
|
|
|
2398
2398
|
* The Multiplex must be in the same region as the Channel.
|
|
2399
2399
|
* @public
|
|
2400
2400
|
*/
|
|
2401
|
-
MultiplexId?: string;
|
|
2401
|
+
MultiplexId?: string | undefined;
|
|
2402
2402
|
/**
|
|
2403
2403
|
* The program name of the Multiplex program that the encoder is providing output to.
|
|
2404
2404
|
* @public
|
|
2405
2405
|
*/
|
|
2406
|
-
ProgramName?: string;
|
|
2406
|
+
ProgramName?: string | undefined;
|
|
2407
2407
|
}
|
|
2408
2408
|
/**
|
|
2409
2409
|
* Placeholder documentation for OutputDestinationSettings
|
|
@@ -2414,22 +2414,22 @@ export interface OutputDestinationSettings {
|
|
|
2414
2414
|
* key used to extract the password from EC2 Parameter store
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
PasswordParam?: string;
|
|
2417
|
+
PasswordParam?: string | undefined;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Stream name for RTMP destinations (URLs of type rtmp://)
|
|
2420
2420
|
* @public
|
|
2421
2421
|
*/
|
|
2422
|
-
StreamName?: string;
|
|
2422
|
+
StreamName?: string | undefined;
|
|
2423
2423
|
/**
|
|
2424
2424
|
* A URL specifying a destination
|
|
2425
2425
|
* @public
|
|
2426
2426
|
*/
|
|
2427
|
-
Url?: string;
|
|
2427
|
+
Url?: string | undefined;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* username for destination
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
Username?: string;
|
|
2432
|
+
Username?: string | undefined;
|
|
2433
2433
|
}
|
|
2434
2434
|
/**
|
|
2435
2435
|
* Placeholder documentation for SrtOutputDestinationSettings
|
|
@@ -2440,17 +2440,17 @@ export interface SrtOutputDestinationSettings {
|
|
|
2440
2440
|
* Arn used to extract the password from Secrets Manager
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
EncryptionPassphraseSecretArn?: string;
|
|
2443
|
+
EncryptionPassphraseSecretArn?: string | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* Stream id for SRT destinations (URLs of type srt://)
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
StreamId?: string;
|
|
2448
|
+
StreamId?: string | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* A URL specifying a destination
|
|
2451
2451
|
* @public
|
|
2452
2452
|
*/
|
|
2453
|
-
Url?: string;
|
|
2453
|
+
Url?: string | undefined;
|
|
2454
2454
|
}
|
|
2455
2455
|
/**
|
|
2456
2456
|
* Placeholder documentation for OutputDestination
|
|
@@ -2461,27 +2461,27 @@ export interface OutputDestination {
|
|
|
2461
2461
|
* User-specified id. This is used in an output group or an output.
|
|
2462
2462
|
* @public
|
|
2463
2463
|
*/
|
|
2464
|
-
Id?: string;
|
|
2464
|
+
Id?: string | undefined;
|
|
2465
2465
|
/**
|
|
2466
2466
|
* Destination settings for a MediaPackage output; one destination for both encoders.
|
|
2467
2467
|
* @public
|
|
2468
2468
|
*/
|
|
2469
|
-
MediaPackageSettings?: MediaPackageOutputDestinationSettings[];
|
|
2469
|
+
MediaPackageSettings?: MediaPackageOutputDestinationSettings[] | undefined;
|
|
2470
2470
|
/**
|
|
2471
2471
|
* Destination settings for a Multiplex output; one destination for both encoders.
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
MultiplexSettings?: MultiplexProgramChannelDestinationSettings;
|
|
2474
|
+
MultiplexSettings?: MultiplexProgramChannelDestinationSettings | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* Destination settings for a standard output; one destination for each redundant encoder.
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
Settings?: OutputDestinationSettings[];
|
|
2479
|
+
Settings?: OutputDestinationSettings[] | undefined;
|
|
2480
2480
|
/**
|
|
2481
2481
|
* SRT settings for an SRT output; one destination for each redundant encoder.
|
|
2482
2482
|
* @public
|
|
2483
2483
|
*/
|
|
2484
|
-
SrtSettings?: SrtOutputDestinationSettings[];
|
|
2484
|
+
SrtSettings?: SrtOutputDestinationSettings[] | undefined;
|
|
2485
2485
|
}
|
|
2486
2486
|
/**
|
|
2487
2487
|
* Placeholder documentation for AudioSilenceFailoverSettings
|
|
@@ -2497,7 +2497,7 @@ export interface AudioSilenceFailoverSettings {
|
|
|
2497
2497
|
* The amount of time (in milliseconds) that the active input must be silent before automatic input failover occurs. Silence is defined as audio loss or audio quieter than -50 dBFS.
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
AudioSilenceThresholdMsec?: number;
|
|
2500
|
+
AudioSilenceThresholdMsec?: number | undefined;
|
|
2501
2501
|
}
|
|
2502
2502
|
/**
|
|
2503
2503
|
* MediaLive will perform a failover if content is not detected in this input for the specified period.
|
|
@@ -2508,7 +2508,7 @@ export interface InputLossFailoverSettings {
|
|
|
2508
2508
|
* The amount of time (in milliseconds) that no input is detected. After that time, an input failover will occur.
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
InputLossThresholdMsec?: number;
|
|
2511
|
+
InputLossThresholdMsec?: number | undefined;
|
|
2512
2512
|
}
|
|
2513
2513
|
/**
|
|
2514
2514
|
* Placeholder documentation for VideoBlackFailoverSettings
|
|
@@ -2519,12 +2519,12 @@ export interface VideoBlackFailoverSettings {
|
|
|
2519
2519
|
* A value used in calculating the threshold below which MediaLive considers a pixel to be 'black'. For the input to be considered black, every pixel in a frame must be below this threshold. The threshold is calculated as a percentage (expressed as a decimal) of white. Therefore .1 means 10% white (or 90% black). Note how the formula works for any color depth. For example, if you set this field to 0.1 in 10-bit color depth: (1023*0.1=102.3), which means a pixel value of 102 or less is 'black'. If you set this field to .1 in an 8-bit color depth: (255*0.1=25.5), which means a pixel value of 25 or less is 'black'. The range is 0.0 to 1.0, with any number of decimal places.
|
|
2520
2520
|
* @public
|
|
2521
2521
|
*/
|
|
2522
|
-
BlackDetectThreshold?: number;
|
|
2522
|
+
BlackDetectThreshold?: number | undefined;
|
|
2523
2523
|
/**
|
|
2524
2524
|
* The amount of time (in milliseconds) that the active input must be black before automatic input failover occurs.
|
|
2525
2525
|
* @public
|
|
2526
2526
|
*/
|
|
2527
|
-
VideoBlackThresholdMsec?: number;
|
|
2527
|
+
VideoBlackThresholdMsec?: number | undefined;
|
|
2528
2528
|
}
|
|
2529
2529
|
/**
|
|
2530
2530
|
* Settings for one failover condition.
|
|
@@ -2535,17 +2535,17 @@ export interface FailoverConditionSettings {
|
|
|
2535
2535
|
* MediaLive will perform a failover if the specified audio selector is silent for the specified period.
|
|
2536
2536
|
* @public
|
|
2537
2537
|
*/
|
|
2538
|
-
AudioSilenceSettings?: AudioSilenceFailoverSettings;
|
|
2538
|
+
AudioSilenceSettings?: AudioSilenceFailoverSettings | undefined;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* MediaLive will perform a failover if content is not detected in this input for the specified period.
|
|
2541
2541
|
* @public
|
|
2542
2542
|
*/
|
|
2543
|
-
InputLossSettings?: InputLossFailoverSettings;
|
|
2543
|
+
InputLossSettings?: InputLossFailoverSettings | undefined;
|
|
2544
2544
|
/**
|
|
2545
2545
|
* MediaLive will perform a failover if content is considered black for the specified period.
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
VideoBlackSettings?: VideoBlackFailoverSettings;
|
|
2548
|
+
VideoBlackSettings?: VideoBlackFailoverSettings | undefined;
|
|
2549
2549
|
}
|
|
2550
2550
|
/**
|
|
2551
2551
|
* Failover Condition settings. There can be multiple failover conditions inside AutomaticInputFailoverSettings.
|
|
@@ -2556,7 +2556,7 @@ export interface FailoverCondition {
|
|
|
2556
2556
|
* Failover condition type-specific settings.
|
|
2557
2557
|
* @public
|
|
2558
2558
|
*/
|
|
2559
|
-
FailoverConditionSettings?: FailoverConditionSettings;
|
|
2559
|
+
FailoverConditionSettings?: FailoverConditionSettings | undefined;
|
|
2560
2560
|
}
|
|
2561
2561
|
/**
|
|
2562
2562
|
* @public
|
|
@@ -2579,17 +2579,17 @@ export interface AutomaticInputFailoverSettings {
|
|
|
2579
2579
|
* This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input_preference for the failover pair is set to PRIMARY_INPUT_PREFERRED, because after this time, MediaLive will switch back to the primary input.
|
|
2580
2580
|
* @public
|
|
2581
2581
|
*/
|
|
2582
|
-
ErrorClearTimeMsec?: number;
|
|
2582
|
+
ErrorClearTimeMsec?: number | undefined;
|
|
2583
2583
|
/**
|
|
2584
2584
|
* A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input.
|
|
2585
2585
|
* @public
|
|
2586
2586
|
*/
|
|
2587
|
-
FailoverConditions?: FailoverCondition[];
|
|
2587
|
+
FailoverConditions?: FailoverCondition[] | undefined;
|
|
2588
2588
|
/**
|
|
2589
2589
|
* Input preference when deciding which input to make active when a previously failed input has recovered.
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
InputPreference?: InputPreference;
|
|
2592
|
+
InputPreference?: InputPreference | undefined;
|
|
2593
2593
|
/**
|
|
2594
2594
|
* The input ID of the secondary input in the automatic input failover pair.
|
|
2595
2595
|
* @public
|
|
@@ -2654,27 +2654,27 @@ export interface HlsInputSettings {
|
|
|
2654
2654
|
* When specified the HLS stream with the m3u8 BANDWIDTH that most closely matches this value will be chosen, otherwise the highest bandwidth stream in the m3u8 will be chosen. The bitrate is specified in bits per second, as in an HLS manifest.
|
|
2655
2655
|
* @public
|
|
2656
2656
|
*/
|
|
2657
|
-
Bandwidth?: number;
|
|
2657
|
+
Bandwidth?: number | undefined;
|
|
2658
2658
|
/**
|
|
2659
2659
|
* When specified, reading of the HLS input will begin this many buffer segments from the end (most recently written segment). When not specified, the HLS input will begin with the first segment specified in the m3u8.
|
|
2660
2660
|
* @public
|
|
2661
2661
|
*/
|
|
2662
|
-
BufferSegments?: number;
|
|
2662
|
+
BufferSegments?: number | undefined;
|
|
2663
2663
|
/**
|
|
2664
2664
|
* The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.
|
|
2665
2665
|
* @public
|
|
2666
2666
|
*/
|
|
2667
|
-
Retries?: number;
|
|
2667
|
+
Retries?: number | undefined;
|
|
2668
2668
|
/**
|
|
2669
2669
|
* The number of seconds between retries when an attempt to read a manifest or segment fails.
|
|
2670
2670
|
* @public
|
|
2671
2671
|
*/
|
|
2672
|
-
RetryInterval?: number;
|
|
2672
|
+
RetryInterval?: number | undefined;
|
|
2673
2673
|
/**
|
|
2674
2674
|
* 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.
|
|
2675
2675
|
* @public
|
|
2676
2676
|
*/
|
|
2677
|
-
Scte35Source?: HlsScte35SourceType;
|
|
2677
|
+
Scte35Source?: HlsScte35SourceType | undefined;
|
|
2678
2678
|
}
|
|
2679
2679
|
/**
|
|
2680
2680
|
* Multicast-specific input settings.
|
|
@@ -2685,7 +2685,7 @@ export interface MulticastInputSettings {
|
|
|
2685
2685
|
* Optionally, a source ip address to filter by for Source-specific Multicast (SSM)
|
|
2686
2686
|
* @public
|
|
2687
2687
|
*/
|
|
2688
|
-
SourceIpAddress?: string;
|
|
2688
|
+
SourceIpAddress?: string | undefined;
|
|
2689
2689
|
}
|
|
2690
2690
|
/**
|
|
2691
2691
|
* @public
|
|
@@ -2708,17 +2708,17 @@ export interface NetworkInputSettings {
|
|
|
2708
2708
|
* Specifies HLS input settings when the uri is for a HLS manifest.
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
HlsInputSettings?: HlsInputSettings;
|
|
2711
|
+
HlsInputSettings?: HlsInputSettings | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* 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.
|
|
2714
2714
|
* @public
|
|
2715
2715
|
*/
|
|
2716
|
-
ServerValidation?: NetworkInputServerValidation;
|
|
2716
|
+
ServerValidation?: NetworkInputServerValidation | undefined;
|
|
2717
2717
|
/**
|
|
2718
2718
|
* Specifies multicast input settings when the uri is for a multicast event.
|
|
2719
2719
|
* @public
|
|
2720
2720
|
*/
|
|
2721
|
-
MulticastInputSettings?: MulticastInputSettings;
|
|
2721
|
+
MulticastInputSettings?: MulticastInputSettings | undefined;
|
|
2722
2722
|
}
|
|
2723
2723
|
/**
|
|
2724
2724
|
* @public
|
|
@@ -2770,14 +2770,14 @@ export interface Hdr10Settings {
|
|
|
2770
2770
|
* of any single pixel within an encoded HDR video stream or file.
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
MaxCll?: number;
|
|
2773
|
+
MaxCll?: number | undefined;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* Maximum Frame Average Light Level
|
|
2776
2776
|
* An integer metadata value defining the maximum average light level, in nits,
|
|
2777
2777
|
* for any single frame within an encoded HDR video stream or file.
|
|
2778
2778
|
* @public
|
|
2779
2779
|
*/
|
|
2780
|
-
MaxFall?: number;
|
|
2780
|
+
MaxFall?: number | undefined;
|
|
2781
2781
|
}
|
|
2782
2782
|
/**
|
|
2783
2783
|
* Video Selector Color Space Settings
|
|
@@ -2788,7 +2788,7 @@ export interface VideoSelectorColorSpaceSettings {
|
|
|
2788
2788
|
* Hdr10 Settings
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
Hdr10Settings?: Hdr10Settings;
|
|
2791
|
+
Hdr10Settings?: Hdr10Settings | undefined;
|
|
2792
2792
|
}
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
@@ -2811,7 +2811,7 @@ export interface VideoSelectorPid {
|
|
|
2811
2811
|
* Selects a specific PID from within a video source.
|
|
2812
2812
|
* @public
|
|
2813
2813
|
*/
|
|
2814
|
-
Pid?: number;
|
|
2814
|
+
Pid?: number | undefined;
|
|
2815
2815
|
}
|
|
2816
2816
|
/**
|
|
2817
2817
|
* Video Selector Program Id
|
|
@@ -2822,7 +2822,7 @@ export interface VideoSelectorProgramId {
|
|
|
2822
2822
|
* Selects a specific program from within a multi-program transport stream. If the program doesn't exist, the first program within the transport stream will be selected by default.
|
|
2823
2823
|
* @public
|
|
2824
2824
|
*/
|
|
2825
|
-
ProgramId?: number;
|
|
2825
|
+
ProgramId?: number | undefined;
|
|
2826
2826
|
}
|
|
2827
2827
|
/**
|
|
2828
2828
|
* Video Selector Settings
|
|
@@ -2833,12 +2833,12 @@ export interface VideoSelectorSettings {
|
|
|
2833
2833
|
* Video Selector Pid
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
VideoSelectorPid?: VideoSelectorPid;
|
|
2836
|
+
VideoSelectorPid?: VideoSelectorPid | undefined;
|
|
2837
2837
|
/**
|
|
2838
2838
|
* Video Selector Program Id
|
|
2839
2839
|
* @public
|
|
2840
2840
|
*/
|
|
2841
|
-
VideoSelectorProgramId?: VideoSelectorProgramId;
|
|
2841
|
+
VideoSelectorProgramId?: VideoSelectorProgramId | undefined;
|
|
2842
2842
|
}
|
|
2843
2843
|
/**
|
|
2844
2844
|
* Specifies a particular video stream within an input source. An input may have only a single video selector.
|
|
@@ -2849,22 +2849,22 @@ export interface VideoSelector {
|
|
|
2849
2849
|
* 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.
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
ColorSpace?: VideoSelectorColorSpace;
|
|
2852
|
+
ColorSpace?: VideoSelectorColorSpace | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* Color space settings
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
ColorSpaceSettings?: VideoSelectorColorSpaceSettings;
|
|
2857
|
+
ColorSpaceSettings?: VideoSelectorColorSpaceSettings | undefined;
|
|
2858
2858
|
/**
|
|
2859
2859
|
* 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.
|
|
2860
2860
|
* @public
|
|
2861
2861
|
*/
|
|
2862
|
-
ColorSpaceUsage?: VideoSelectorColorSpaceUsage;
|
|
2862
|
+
ColorSpaceUsage?: VideoSelectorColorSpaceUsage | undefined;
|
|
2863
2863
|
/**
|
|
2864
2864
|
* The video selector settings.
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
SelectorSettings?: VideoSelectorSettings;
|
|
2867
|
+
SelectorSettings?: VideoSelectorSettings | undefined;
|
|
2868
2868
|
}
|
|
2869
2869
|
/**
|
|
2870
2870
|
* Live Event input parameters. There can be multiple inputs in a single Live Event.
|
|
@@ -2875,27 +2875,27 @@ export interface InputSettings {
|
|
|
2875
2875
|
* Used to select the audio stream to decode for inputs that have multiple available.
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
AudioSelectors?: AudioSelector[];
|
|
2878
|
+
AudioSelectors?: AudioSelector[] | undefined;
|
|
2879
2879
|
/**
|
|
2880
2880
|
* Used to select the caption input to use for inputs that have multiple available.
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
CaptionSelectors?: CaptionSelector[];
|
|
2883
|
+
CaptionSelectors?: CaptionSelector[] | undefined;
|
|
2884
2884
|
/**
|
|
2885
2885
|
* Enable or disable the deblock filter when filtering.
|
|
2886
2886
|
* @public
|
|
2887
2887
|
*/
|
|
2888
|
-
DeblockFilter?: InputDeblockFilter;
|
|
2888
|
+
DeblockFilter?: InputDeblockFilter | undefined;
|
|
2889
2889
|
/**
|
|
2890
2890
|
* Enable or disable the denoise filter when filtering.
|
|
2891
2891
|
* @public
|
|
2892
2892
|
*/
|
|
2893
|
-
DenoiseFilter?: InputDenoiseFilter;
|
|
2893
|
+
DenoiseFilter?: InputDenoiseFilter | undefined;
|
|
2894
2894
|
/**
|
|
2895
2895
|
* Adjusts the magnitude of filtering from 1 (minimal) to 5 (strongest).
|
|
2896
2896
|
* @public
|
|
2897
2897
|
*/
|
|
2898
|
-
FilterStrength?: number;
|
|
2898
|
+
FilterStrength?: number | undefined;
|
|
2899
2899
|
/**
|
|
2900
2900
|
* Turns on the filter for this input. MPEG-2 inputs have the deblocking filter enabled by default.
|
|
2901
2901
|
* 1) auto - filtering will be applied depending on input type/quality
|
|
@@ -2903,34 +2903,34 @@ export interface InputSettings {
|
|
|
2903
2903
|
* 3) forced - filtering will be applied regardless of input type
|
|
2904
2904
|
* @public
|
|
2905
2905
|
*/
|
|
2906
|
-
InputFilter?: InputFilter;
|
|
2906
|
+
InputFilter?: InputFilter | undefined;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* Input settings.
|
|
2909
2909
|
* @public
|
|
2910
2910
|
*/
|
|
2911
|
-
NetworkInputSettings?: NetworkInputSettings;
|
|
2911
|
+
NetworkInputSettings?: NetworkInputSettings | undefined;
|
|
2912
2912
|
/**
|
|
2913
2913
|
* PID from which to read SCTE-35 messages. If left undefined, EML will select the first SCTE-35 PID found in the input.
|
|
2914
2914
|
* @public
|
|
2915
2915
|
*/
|
|
2916
|
-
Scte35Pid?: number;
|
|
2916
|
+
Scte35Pid?: number | undefined;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* Specifies whether to extract applicable ancillary data from a SMPTE-2038 source in this input. Applicable data types are captions, timecode, AFD, and SCTE-104 messages.
|
|
2919
2919
|
* - PREFER: Extract from SMPTE-2038 if present in this input, otherwise extract from another source (if any).
|
|
2920
2920
|
* - IGNORE: Never extract any ancillary data from SMPTE-2038.
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
Smpte2038DataPreference?: Smpte2038DataPreference;
|
|
2923
|
+
Smpte2038DataPreference?: Smpte2038DataPreference | undefined;
|
|
2924
2924
|
/**
|
|
2925
2925
|
* Loop input if it is a file. This allows a file input to be streamed indefinitely.
|
|
2926
2926
|
* @public
|
|
2927
2927
|
*/
|
|
2928
|
-
SourceEndBehavior?: InputSourceEndBehavior;
|
|
2928
|
+
SourceEndBehavior?: InputSourceEndBehavior | undefined;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* Informs which video elementary stream to decode for input types that have multiple available.
|
|
2931
2931
|
* @public
|
|
2932
2932
|
*/
|
|
2933
|
-
VideoSelector?: VideoSelector;
|
|
2933
|
+
VideoSelector?: VideoSelector | undefined;
|
|
2934
2934
|
}
|
|
2935
2935
|
/**
|
|
2936
2936
|
* Placeholder documentation for InputAttachment
|
|
@@ -2941,27 +2941,27 @@ export interface InputAttachment {
|
|
|
2941
2941
|
* User-specified settings for defining what the conditions are for declaring the input unhealthy and failing over to a different input.
|
|
2942
2942
|
* @public
|
|
2943
2943
|
*/
|
|
2944
|
-
AutomaticInputFailoverSettings?: AutomaticInputFailoverSettings;
|
|
2944
|
+
AutomaticInputFailoverSettings?: AutomaticInputFailoverSettings | undefined;
|
|
2945
2945
|
/**
|
|
2946
2946
|
* User-specified name for the attachment. This is required if the user wants to use this input in an input switch action.
|
|
2947
2947
|
* @public
|
|
2948
2948
|
*/
|
|
2949
|
-
InputAttachmentName?: string;
|
|
2949
|
+
InputAttachmentName?: string | undefined;
|
|
2950
2950
|
/**
|
|
2951
2951
|
* The ID of the input
|
|
2952
2952
|
* @public
|
|
2953
2953
|
*/
|
|
2954
|
-
InputId?: string;
|
|
2954
|
+
InputId?: string | undefined;
|
|
2955
2955
|
/**
|
|
2956
2956
|
* Settings of an input (caption selector, etc.)
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
InputSettings?: InputSettings;
|
|
2959
|
+
InputSettings?: InputSettings | undefined;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* Optional assignment of an input to a logical interface on the Node. Only applies to on premises channels.
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
LogicalInterfaceNames?: string[];
|
|
2964
|
+
LogicalInterfaceNames?: string[] | undefined;
|
|
2965
2965
|
}
|
|
2966
2966
|
/**
|
|
2967
2967
|
* @public
|
|
@@ -3011,17 +3011,17 @@ export interface InputSpecification {
|
|
|
3011
3011
|
* Input codec
|
|
3012
3012
|
* @public
|
|
3013
3013
|
*/
|
|
3014
|
-
Codec?: InputCodec;
|
|
3014
|
+
Codec?: InputCodec | undefined;
|
|
3015
3015
|
/**
|
|
3016
3016
|
* Maximum input bitrate, categorized coarsely
|
|
3017
3017
|
* @public
|
|
3018
3018
|
*/
|
|
3019
|
-
MaximumBitrate?: InputMaximumBitrate;
|
|
3019
|
+
MaximumBitrate?: InputMaximumBitrate | undefined;
|
|
3020
3020
|
/**
|
|
3021
3021
|
* Input resolution, categorized coarsely
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
Resolution?: InputResolution;
|
|
3024
|
+
Resolution?: InputResolution | undefined;
|
|
3025
3025
|
}
|
|
3026
3026
|
/**
|
|
3027
3027
|
* @public
|
|
@@ -3064,22 +3064,22 @@ export interface MaintenanceStatus {
|
|
|
3064
3064
|
* The currently selected maintenance day.
|
|
3065
3065
|
* @public
|
|
3066
3066
|
*/
|
|
3067
|
-
MaintenanceDay?: MaintenanceDay;
|
|
3067
|
+
MaintenanceDay?: MaintenanceDay | undefined;
|
|
3068
3068
|
/**
|
|
3069
3069
|
* Maintenance is required by the displayed date and time. Date and time is in ISO.
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
MaintenanceDeadline?: string;
|
|
3072
|
+
MaintenanceDeadline?: string | undefined;
|
|
3073
3073
|
/**
|
|
3074
3074
|
* The currently scheduled maintenance date and time. Date and time is in ISO.
|
|
3075
3075
|
* @public
|
|
3076
3076
|
*/
|
|
3077
|
-
MaintenanceScheduledDate?: string;
|
|
3077
|
+
MaintenanceScheduledDate?: string | undefined;
|
|
3078
3078
|
/**
|
|
3079
3079
|
* The currently selected maintenance start time. Time is in UTC.
|
|
3080
3080
|
* @public
|
|
3081
3081
|
*/
|
|
3082
|
-
MaintenanceStartTime?: string;
|
|
3082
|
+
MaintenanceStartTime?: string | undefined;
|
|
3083
3083
|
}
|
|
3084
3084
|
/**
|
|
3085
3085
|
* @public
|
|
@@ -3113,23 +3113,23 @@ export interface VpcOutputSettingsDescription {
|
|
|
3113
3113
|
* The second Availability Zone applies to the second subnet.
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
AvailabilityZones?: string[];
|
|
3116
|
+
AvailabilityZones?: string[] | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* A list of Elastic Network Interfaces created by MediaLive in the customer's VPC
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
NetworkInterfaceIds?: string[];
|
|
3121
|
+
NetworkInterfaceIds?: string[] | undefined;
|
|
3122
3122
|
/**
|
|
3123
3123
|
* A list of up EC2 VPC security group IDs attached to the Output VPC network interfaces.
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
SecurityGroupIds?: string[];
|
|
3126
|
+
SecurityGroupIds?: string[] | undefined;
|
|
3127
3127
|
/**
|
|
3128
3128
|
* A list of VPC subnet IDs from the same VPC.
|
|
3129
3129
|
* If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
|
|
3130
3130
|
* @public
|
|
3131
3131
|
*/
|
|
3132
|
-
SubnetIds?: string[];
|
|
3132
|
+
SubnetIds?: string[] | undefined;
|
|
3133
3133
|
}
|
|
3134
3134
|
/**
|
|
3135
3135
|
* Placeholder documentation for ChannelSummary
|
|
@@ -3140,89 +3140,89 @@ export interface ChannelSummary {
|
|
|
3140
3140
|
* The unique arn of the channel.
|
|
3141
3141
|
* @public
|
|
3142
3142
|
*/
|
|
3143
|
-
Arn?: string;
|
|
3143
|
+
Arn?: string | undefined;
|
|
3144
3144
|
/**
|
|
3145
3145
|
* Specification of CDI inputs for this channel
|
|
3146
3146
|
* @public
|
|
3147
3147
|
*/
|
|
3148
|
-
CdiInputSpecification?: CdiInputSpecification;
|
|
3148
|
+
CdiInputSpecification?: CdiInputSpecification | undefined;
|
|
3149
3149
|
/**
|
|
3150
3150
|
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
3151
3151
|
* @public
|
|
3152
3152
|
*/
|
|
3153
|
-
ChannelClass?: ChannelClass;
|
|
3153
|
+
ChannelClass?: ChannelClass | undefined;
|
|
3154
3154
|
/**
|
|
3155
3155
|
* A list of destinations of the channel. For UDP outputs, there is one
|
|
3156
3156
|
* destination per output. For other types (HLS, for example), there is
|
|
3157
3157
|
* one destination per packager.
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
Destinations?: OutputDestination[];
|
|
3160
|
+
Destinations?: OutputDestination[] | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* The endpoints where outgoing connections initiate from
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
3165
|
+
EgressEndpoints?: ChannelEgressEndpoint[] | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* The unique id of the channel.
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
Id?: string;
|
|
3170
|
+
Id?: string | undefined;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* List of input attachments for channel.
|
|
3173
3173
|
* @public
|
|
3174
3174
|
*/
|
|
3175
|
-
InputAttachments?: InputAttachment[];
|
|
3175
|
+
InputAttachments?: InputAttachment[] | undefined;
|
|
3176
3176
|
/**
|
|
3177
3177
|
* Specification of network and file inputs for this channel
|
|
3178
3178
|
* @public
|
|
3179
3179
|
*/
|
|
3180
|
-
InputSpecification?: InputSpecification;
|
|
3180
|
+
InputSpecification?: InputSpecification | undefined;
|
|
3181
3181
|
/**
|
|
3182
3182
|
* The log level being written to CloudWatch Logs.
|
|
3183
3183
|
* @public
|
|
3184
3184
|
*/
|
|
3185
|
-
LogLevel?: LogLevel;
|
|
3185
|
+
LogLevel?: LogLevel | undefined;
|
|
3186
3186
|
/**
|
|
3187
3187
|
* Maintenance settings for this channel.
|
|
3188
3188
|
* @public
|
|
3189
3189
|
*/
|
|
3190
|
-
Maintenance?: MaintenanceStatus;
|
|
3190
|
+
Maintenance?: MaintenanceStatus | undefined;
|
|
3191
3191
|
/**
|
|
3192
3192
|
* The name of the channel. (user-mutable)
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
Name?: string;
|
|
3195
|
+
Name?: string | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* The number of currently healthy pipelines.
|
|
3198
3198
|
* @public
|
|
3199
3199
|
*/
|
|
3200
|
-
PipelinesRunningCount?: number;
|
|
3200
|
+
PipelinesRunningCount?: number | undefined;
|
|
3201
3201
|
/**
|
|
3202
3202
|
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
RoleArn?: string;
|
|
3205
|
+
RoleArn?: string | undefined;
|
|
3206
3206
|
/**
|
|
3207
3207
|
* Placeholder documentation for ChannelState
|
|
3208
3208
|
* @public
|
|
3209
3209
|
*/
|
|
3210
|
-
State?: ChannelState;
|
|
3210
|
+
State?: ChannelState | undefined;
|
|
3211
3211
|
/**
|
|
3212
3212
|
* A collection of key-value pairs.
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
Tags?: Record<string, string
|
|
3215
|
+
Tags?: Record<string, string> | undefined;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* Settings for any VPC outputs.
|
|
3218
3218
|
* @public
|
|
3219
3219
|
*/
|
|
3220
|
-
Vpc?: VpcOutputSettingsDescription;
|
|
3220
|
+
Vpc?: VpcOutputSettingsDescription | undefined;
|
|
3221
3221
|
/**
|
|
3222
3222
|
* AnywhereSettings settings for this channel.
|
|
3223
3223
|
* @public
|
|
3224
3224
|
*/
|
|
3225
|
-
AnywhereSettings?: DescribeAnywhereSettings;
|
|
3225
|
+
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
3226
3226
|
}
|
|
3227
3227
|
/**
|
|
3228
3228
|
* Placeholder documentation for CloudWatchAlarmTemplateGroupSummary
|
|
@@ -3243,7 +3243,7 @@ export interface CloudWatchAlarmTemplateGroupSummary {
|
|
|
3243
3243
|
* A resource's optional description.
|
|
3244
3244
|
* @public
|
|
3245
3245
|
*/
|
|
3246
|
-
Description?: string;
|
|
3246
|
+
Description?: string | undefined;
|
|
3247
3247
|
/**
|
|
3248
3248
|
* A cloudwatch alarm template group's id. AWS provided template groups have ids that start with `aws-`
|
|
3249
3249
|
* @public
|
|
@@ -3253,7 +3253,7 @@ export interface CloudWatchAlarmTemplateGroupSummary {
|
|
|
3253
3253
|
* Placeholder documentation for __timestampIso8601
|
|
3254
3254
|
* @public
|
|
3255
3255
|
*/
|
|
3256
|
-
ModifiedAt?: Date;
|
|
3256
|
+
ModifiedAt?: Date | undefined;
|
|
3257
3257
|
/**
|
|
3258
3258
|
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
3259
3259
|
* @public
|
|
@@ -3263,7 +3263,7 @@ export interface CloudWatchAlarmTemplateGroupSummary {
|
|
|
3263
3263
|
* Represents the tags associated with a resource.
|
|
3264
3264
|
* @public
|
|
3265
3265
|
*/
|
|
3266
|
-
Tags?: Record<string, string
|
|
3266
|
+
Tags?: Record<string, string> | undefined;
|
|
3267
3267
|
/**
|
|
3268
3268
|
* The number of templates in a group.
|
|
3269
3269
|
* @public
|
|
@@ -3355,12 +3355,12 @@ export interface CloudWatchAlarmTemplateSummary {
|
|
|
3355
3355
|
* The number of datapoints within the evaluation period that must be breaching to trigger the alarm.
|
|
3356
3356
|
* @public
|
|
3357
3357
|
*/
|
|
3358
|
-
DatapointsToAlarm?: number;
|
|
3358
|
+
DatapointsToAlarm?: number | undefined;
|
|
3359
3359
|
/**
|
|
3360
3360
|
* A resource's optional description.
|
|
3361
3361
|
* @public
|
|
3362
3362
|
*/
|
|
3363
|
-
Description?: string;
|
|
3363
|
+
Description?: string | undefined;
|
|
3364
3364
|
/**
|
|
3365
3365
|
* The number of periods over which data is compared to the specified threshold.
|
|
3366
3366
|
* @public
|
|
@@ -3385,7 +3385,7 @@ export interface CloudWatchAlarmTemplateSummary {
|
|
|
3385
3385
|
* Placeholder documentation for __timestampIso8601
|
|
3386
3386
|
* @public
|
|
3387
3387
|
*/
|
|
3388
|
-
ModifiedAt?: Date;
|
|
3388
|
+
ModifiedAt?: Date | undefined;
|
|
3389
3389
|
/**
|
|
3390
3390
|
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
3391
3391
|
* @public
|
|
@@ -3405,7 +3405,7 @@ export interface CloudWatchAlarmTemplateSummary {
|
|
|
3405
3405
|
* Represents the tags associated with a resource.
|
|
3406
3406
|
* @public
|
|
3407
3407
|
*/
|
|
3408
|
-
Tags?: Record<string, string
|
|
3408
|
+
Tags?: Record<string, string> | undefined;
|
|
3409
3409
|
/**
|
|
3410
3410
|
* The resource type this template should dynamically generate cloudwatch metric alarms for.
|
|
3411
3411
|
* @public
|
|
@@ -3483,37 +3483,37 @@ export interface DescribeChannelPlacementGroupSummary {
|
|
|
3483
3483
|
* The ARN of this ChannelPlacementGroup. It is automatically assigned when the ChannelPlacementGroup is created.
|
|
3484
3484
|
* @public
|
|
3485
3485
|
*/
|
|
3486
|
-
Arn?: string;
|
|
3486
|
+
Arn?: string | undefined;
|
|
3487
3487
|
/**
|
|
3488
3488
|
* Used in ListChannelPlacementGroupsResult
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
Channels?: string[];
|
|
3491
|
+
Channels?: string[] | undefined;
|
|
3492
3492
|
/**
|
|
3493
3493
|
* The ID of the Cluster that the Node belongs to.
|
|
3494
3494
|
* @public
|
|
3495
3495
|
*/
|
|
3496
|
-
ClusterId?: string;
|
|
3496
|
+
ClusterId?: string | undefined;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* The ID of the ChannelPlacementGroup. Unique in the AWS account. The ID is the resource-id portion of the ARN.
|
|
3499
3499
|
* @public
|
|
3500
3500
|
*/
|
|
3501
|
-
Id?: string;
|
|
3501
|
+
Id?: string | undefined;
|
|
3502
3502
|
/**
|
|
3503
3503
|
* The name that you specified for the ChannelPlacementGroup.
|
|
3504
3504
|
* @public
|
|
3505
3505
|
*/
|
|
3506
|
-
Name?: string;
|
|
3506
|
+
Name?: string | undefined;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* An array with one item, which is the signle Node that is associated with the ChannelPlacementGroup.
|
|
3509
3509
|
* @public
|
|
3510
3510
|
*/
|
|
3511
|
-
Nodes?: string[];
|
|
3511
|
+
Nodes?: string[] | undefined;
|
|
3512
3512
|
/**
|
|
3513
3513
|
* The current state of the ChannelPlacementGroup.
|
|
3514
3514
|
* @public
|
|
3515
3515
|
*/
|
|
3516
|
-
State?: ChannelPlacementGroupState;
|
|
3516
|
+
State?: ChannelPlacementGroupState | undefined;
|
|
3517
3517
|
}
|
|
3518
3518
|
/**
|
|
3519
3519
|
* @public
|
|
@@ -3535,12 +3535,12 @@ export interface InterfaceMapping {
|
|
|
3535
3535
|
* The logical name for one interface (on every Node) that handles a specific type of traffic. We recommend that the name hints at the physical interface it applies to. For example, it could refer to the traffic that the physical interface handles. For example, my-Inputs-Interface.
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
LogicalInterfaceName?: string;
|
|
3538
|
+
LogicalInterfaceName?: string | undefined;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* The ID of the network that you want to connect to the specified logicalInterfaceName.
|
|
3541
3541
|
* @public
|
|
3542
3542
|
*/
|
|
3543
|
-
NetworkId?: string;
|
|
3543
|
+
NetworkId?: string | undefined;
|
|
3544
3544
|
}
|
|
3545
3545
|
/**
|
|
3546
3546
|
* Used in DescribeClusterResult, DescribeClusterSummary, UpdateClusterResult.
|
|
@@ -3551,12 +3551,12 @@ export interface ClusterNetworkSettings {
|
|
|
3551
3551
|
* The network interface that is the default route for traffic to and from the node. MediaLive Anywhere uses this default when the destination for the traffic isn't covered by the route table for any of the networks. Specify the value of the appropriate logicalInterfaceName parameter that you create in the interfaceMappings.
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
DefaultRoute?: string;
|
|
3554
|
+
DefaultRoute?: string | undefined;
|
|
3555
3555
|
/**
|
|
3556
3556
|
* An array of interfaceMapping objects for this Cluster. Each mapping logically connects one interface on the nodes with one Network. You need only one mapping for each interface because all the Nodes share the mapping.
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
InterfaceMappings?: InterfaceMapping[];
|
|
3559
|
+
InterfaceMappings?: InterfaceMapping[] | undefined;
|
|
3560
3560
|
}
|
|
3561
3561
|
/**
|
|
3562
3562
|
* @public
|
|
@@ -3583,42 +3583,42 @@ export interface DescribeClusterSummary {
|
|
|
3583
3583
|
* The ARN of this Cluster. It is automatically assigned when the Cluster is created.
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
Arn?: string;
|
|
3586
|
+
Arn?: string | undefined;
|
|
3587
3587
|
/**
|
|
3588
3588
|
* An array of the IDs of the Channels that are associated with this Cluster. One Channel is associated with the Cluster as follows: A Channel belongs to a ChannelPlacementGroup. A ChannelPlacementGroup is attached to a Node. A Node belongs to a Cluster.
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
ChannelIds?: string[];
|
|
3591
|
+
ChannelIds?: string[] | undefined;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* The hardware type for the Cluster.
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
ClusterType?: ClusterType;
|
|
3596
|
+
ClusterType?: ClusterType | undefined;
|
|
3597
3597
|
/**
|
|
3598
3598
|
* The ID of the Cluster. Unique in the AWS account. The ID is the resource-id portion of the ARN.
|
|
3599
3599
|
* @public
|
|
3600
3600
|
*/
|
|
3601
|
-
Id?: string;
|
|
3601
|
+
Id?: string | undefined;
|
|
3602
3602
|
/**
|
|
3603
3603
|
* The ARN of the IAM role for the Node in this Cluster. Any Nodes that are associated with this Cluster assume this role. The role gives permissions to the operations that you expect these Node to perform.
|
|
3604
3604
|
* @public
|
|
3605
3605
|
*/
|
|
3606
|
-
InstanceRoleArn?: string;
|
|
3606
|
+
InstanceRoleArn?: string | undefined;
|
|
3607
3607
|
/**
|
|
3608
3608
|
* The name that you specified for the Cluster.
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
Name?: string;
|
|
3611
|
+
Name?: string | undefined;
|
|
3612
3612
|
/**
|
|
3613
3613
|
* Network settings that connect the Nodes in the Cluster to one or more of the Networks that the Cluster is associated with.
|
|
3614
3614
|
* @public
|
|
3615
3615
|
*/
|
|
3616
|
-
NetworkSettings?: ClusterNetworkSettings;
|
|
3616
|
+
NetworkSettings?: ClusterNetworkSettings | undefined;
|
|
3617
3617
|
/**
|
|
3618
3618
|
* The current state of the Cluster.
|
|
3619
3619
|
* @public
|
|
3620
3620
|
*/
|
|
3621
|
-
State?: ClusterState;
|
|
3621
|
+
State?: ClusterState | undefined;
|
|
3622
3622
|
}
|
|
3623
3623
|
/**
|
|
3624
3624
|
* Used in DescribeNetworkResult, DescribeNetworkSummary, UpdateNetworkResult.
|
|
@@ -3629,7 +3629,7 @@ export interface IpPool {
|
|
|
3629
3629
|
* A CIDR block of IP addresses that are reserved for MediaLive Anywhere.
|
|
3630
3630
|
* @public
|
|
3631
3631
|
*/
|
|
3632
|
-
Cidr?: string;
|
|
3632
|
+
Cidr?: string | undefined;
|
|
3633
3633
|
}
|
|
3634
3634
|
/**
|
|
3635
3635
|
* Used in DescribeNetworkResult, DescribeNetworkSummary, UpdateNetworkResult.
|
|
@@ -3640,12 +3640,12 @@ export interface Route {
|
|
|
3640
3640
|
* A CIDR block for one Route.
|
|
3641
3641
|
* @public
|
|
3642
3642
|
*/
|
|
3643
|
-
Cidr?: string;
|
|
3643
|
+
Cidr?: string | undefined;
|
|
3644
3644
|
/**
|
|
3645
3645
|
* The IP address of the Gateway for this route, if applicable.
|
|
3646
3646
|
* @public
|
|
3647
3647
|
*/
|
|
3648
|
-
Gateway?: string;
|
|
3648
|
+
Gateway?: string | undefined;
|
|
3649
3649
|
}
|
|
3650
3650
|
/**
|
|
3651
3651
|
* @public
|
|
@@ -3675,37 +3675,37 @@ export interface DescribeNetworkSummary {
|
|
|
3675
3675
|
* The ARN of this Network. It is automatically assigned when the Network is created.
|
|
3676
3676
|
* @public
|
|
3677
3677
|
*/
|
|
3678
|
-
Arn?: string;
|
|
3678
|
+
Arn?: string | undefined;
|
|
3679
3679
|
/**
|
|
3680
3680
|
* Placeholder documentation for __listOf__string
|
|
3681
3681
|
* @public
|
|
3682
3682
|
*/
|
|
3683
|
-
AssociatedClusterIds?: string[];
|
|
3683
|
+
AssociatedClusterIds?: string[] | undefined;
|
|
3684
3684
|
/**
|
|
3685
3685
|
* The ID of the Network. Unique in the AWS account. The ID is the resource-id portion of the ARN.
|
|
3686
3686
|
* @public
|
|
3687
3687
|
*/
|
|
3688
|
-
Id?: string;
|
|
3688
|
+
Id?: string | undefined;
|
|
3689
3689
|
/**
|
|
3690
3690
|
* An array of IpPools in your organization's network that identify a collection of IP addresses in your organization's network that are reserved for use in MediaLive Anywhere. MediaLive Anywhere uses these IP addresses for Push inputs (in both Bridge and NAT networks) and for output destinations (only in Bridge networks). Each IpPool specifies one CIDR block.
|
|
3691
3691
|
* @public
|
|
3692
3692
|
*/
|
|
3693
|
-
IpPools?: IpPool[];
|
|
3693
|
+
IpPools?: IpPool[] | undefined;
|
|
3694
3694
|
/**
|
|
3695
3695
|
* The name that you specified for this Network.
|
|
3696
3696
|
* @public
|
|
3697
3697
|
*/
|
|
3698
|
-
Name?: string;
|
|
3698
|
+
Name?: string | undefined;
|
|
3699
3699
|
/**
|
|
3700
3700
|
* An array of routes that MediaLive Anywhere needs to know about in order to route encoding traffic.
|
|
3701
3701
|
* @public
|
|
3702
3702
|
*/
|
|
3703
|
-
Routes?: Route[];
|
|
3703
|
+
Routes?: Route[] | undefined;
|
|
3704
3704
|
/**
|
|
3705
3705
|
* The current state of the Network. Only MediaLive Anywhere can change the state.
|
|
3706
3706
|
* @public
|
|
3707
3707
|
*/
|
|
3708
|
-
State?: NetworkState;
|
|
3708
|
+
State?: NetworkState | undefined;
|
|
3709
3709
|
}
|
|
3710
3710
|
/**
|
|
3711
3711
|
* @public
|
|
@@ -3740,17 +3740,17 @@ export interface NodeInterfaceMapping {
|
|
|
3740
3740
|
* A uniform logical interface name to address in a MediaLive channel configuration.
|
|
3741
3741
|
* @public
|
|
3742
3742
|
*/
|
|
3743
|
-
LogicalInterfaceName?: string;
|
|
3743
|
+
LogicalInterfaceName?: string | undefined;
|
|
3744
3744
|
/**
|
|
3745
3745
|
* Used in NodeInterfaceMapping and NodeInterfaceMappingCreateRequest
|
|
3746
3746
|
* @public
|
|
3747
3747
|
*/
|
|
3748
|
-
NetworkInterfaceMode?: NetworkInterfaceMode;
|
|
3748
|
+
NetworkInterfaceMode?: NetworkInterfaceMode | undefined;
|
|
3749
3749
|
/**
|
|
3750
3750
|
* The name of the physical interface on the hardware that will be running Elemental anywhere.
|
|
3751
3751
|
* @public
|
|
3752
3752
|
*/
|
|
3753
|
-
PhysicalInterfaceName?: string;
|
|
3753
|
+
PhysicalInterfaceName?: string | undefined;
|
|
3754
3754
|
}
|
|
3755
3755
|
/**
|
|
3756
3756
|
* @public
|
|
@@ -3795,57 +3795,57 @@ export interface DescribeNodeSummary {
|
|
|
3795
3795
|
* The ARN of the Node. It is automatically assigned when the Node is created.
|
|
3796
3796
|
* @public
|
|
3797
3797
|
*/
|
|
3798
|
-
Arn?: string;
|
|
3798
|
+
Arn?: string | undefined;
|
|
3799
3799
|
/**
|
|
3800
3800
|
* An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. Empty if the Node is not yet associated with any groups.
|
|
3801
3801
|
* @public
|
|
3802
3802
|
*/
|
|
3803
|
-
ChannelPlacementGroups?: string[];
|
|
3803
|
+
ChannelPlacementGroups?: string[] | undefined;
|
|
3804
3804
|
/**
|
|
3805
3805
|
* The ID of the Cluster that the Node belongs to.
|
|
3806
3806
|
* @public
|
|
3807
3807
|
*/
|
|
3808
|
-
ClusterId?: string;
|
|
3808
|
+
ClusterId?: string | undefined;
|
|
3809
3809
|
/**
|
|
3810
3810
|
* The current connection state of the Node.
|
|
3811
3811
|
* @public
|
|
3812
3812
|
*/
|
|
3813
|
-
ConnectionState?: NodeConnectionState;
|
|
3813
|
+
ConnectionState?: NodeConnectionState | undefined;
|
|
3814
3814
|
/**
|
|
3815
3815
|
* The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.
|
|
3816
3816
|
* @public
|
|
3817
3817
|
*/
|
|
3818
|
-
Id?: string;
|
|
3818
|
+
Id?: string | undefined;
|
|
3819
3819
|
/**
|
|
3820
3820
|
* The EC2 ARN of the Instance associated with the Node.
|
|
3821
3821
|
* @public
|
|
3822
3822
|
*/
|
|
3823
|
-
InstanceArn?: string;
|
|
3823
|
+
InstanceArn?: string | undefined;
|
|
3824
3824
|
/**
|
|
3825
3825
|
* At the routing layer will get it from the callerId/context for use with bring your own device.
|
|
3826
3826
|
* @public
|
|
3827
3827
|
*/
|
|
3828
|
-
ManagedInstanceId?: string;
|
|
3828
|
+
ManagedInstanceId?: string | undefined;
|
|
3829
3829
|
/**
|
|
3830
3830
|
* The name that you specified for the Node.
|
|
3831
3831
|
* @public
|
|
3832
3832
|
*/
|
|
3833
|
-
Name?: string;
|
|
3833
|
+
Name?: string | undefined;
|
|
3834
3834
|
/**
|
|
3835
3835
|
* Documentation update needed
|
|
3836
3836
|
* @public
|
|
3837
3837
|
*/
|
|
3838
|
-
NodeInterfaceMappings?: NodeInterfaceMapping[];
|
|
3838
|
+
NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
|
|
3839
3839
|
/**
|
|
3840
3840
|
* The initial role current role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
|
|
3841
3841
|
* @public
|
|
3842
3842
|
*/
|
|
3843
|
-
Role?: NodeRole;
|
|
3843
|
+
Role?: NodeRole | undefined;
|
|
3844
3844
|
/**
|
|
3845
3845
|
* The current state of the Node.
|
|
3846
3846
|
* @public
|
|
3847
3847
|
*/
|
|
3848
|
-
State?: NodeState;
|
|
3848
|
+
State?: NodeState | undefined;
|
|
3849
3849
|
}
|
|
3850
3850
|
/**
|
|
3851
3851
|
* Placeholder documentation for EventBridgeRuleTemplateGroupSummary
|
|
@@ -3866,7 +3866,7 @@ export interface EventBridgeRuleTemplateGroupSummary {
|
|
|
3866
3866
|
* A resource's optional description.
|
|
3867
3867
|
* @public
|
|
3868
3868
|
*/
|
|
3869
|
-
Description?: string;
|
|
3869
|
+
Description?: string | undefined;
|
|
3870
3870
|
/**
|
|
3871
3871
|
* An eventbridge rule template group's id. AWS provided template groups have ids that start with `aws-`
|
|
3872
3872
|
* @public
|
|
@@ -3876,7 +3876,7 @@ export interface EventBridgeRuleTemplateGroupSummary {
|
|
|
3876
3876
|
* Placeholder documentation for __timestampIso8601
|
|
3877
3877
|
* @public
|
|
3878
3878
|
*/
|
|
3879
|
-
ModifiedAt?: Date;
|
|
3879
|
+
ModifiedAt?: Date | undefined;
|
|
3880
3880
|
/**
|
|
3881
3881
|
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
3882
3882
|
* @public
|
|
@@ -3886,7 +3886,7 @@ export interface EventBridgeRuleTemplateGroupSummary {
|
|
|
3886
3886
|
* Represents the tags associated with a resource.
|
|
3887
3887
|
* @public
|
|
3888
3888
|
*/
|
|
3889
|
-
Tags?: Record<string, string
|
|
3889
|
+
Tags?: Record<string, string> | undefined;
|
|
3890
3890
|
/**
|
|
3891
3891
|
* The number of templates in a group.
|
|
3892
3892
|
* @public
|
|
@@ -3935,7 +3935,7 @@ export interface EventBridgeRuleTemplateSummary {
|
|
|
3935
3935
|
* A resource's optional description.
|
|
3936
3936
|
* @public
|
|
3937
3937
|
*/
|
|
3938
|
-
Description?: string;
|
|
3938
|
+
Description?: string | undefined;
|
|
3939
3939
|
/**
|
|
3940
3940
|
* The number of targets configured to send matching events.
|
|
3941
3941
|
* @public
|
|
@@ -3960,7 +3960,7 @@ export interface EventBridgeRuleTemplateSummary {
|
|
|
3960
3960
|
* Placeholder documentation for __timestampIso8601
|
|
3961
3961
|
* @public
|
|
3962
3962
|
*/
|
|
3963
|
-
ModifiedAt?: Date;
|
|
3963
|
+
ModifiedAt?: Date | undefined;
|
|
3964
3964
|
/**
|
|
3965
3965
|
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
3966
3966
|
* @public
|
|
@@ -3970,7 +3970,7 @@ export interface EventBridgeRuleTemplateSummary {
|
|
|
3970
3970
|
* Represents the tags associated with a resource.
|
|
3971
3971
|
* @public
|
|
3972
3972
|
*/
|
|
3973
|
-
Tags?: Record<string, string
|
|
3973
|
+
Tags?: Record<string, string> | undefined;
|
|
3974
3974
|
}
|
|
3975
3975
|
/**
|
|
3976
3976
|
* The target to which to send matching events.
|
|
@@ -4005,12 +4005,12 @@ export interface InputDestinationRoute {
|
|
|
4005
4005
|
* The CIDR of the route.
|
|
4006
4006
|
* @public
|
|
4007
4007
|
*/
|
|
4008
|
-
Cidr?: string;
|
|
4008
|
+
Cidr?: string | undefined;
|
|
4009
4009
|
/**
|
|
4010
4010
|
* An optional gateway for the route.
|
|
4011
4011
|
* @public
|
|
4012
4012
|
*/
|
|
4013
|
-
Gateway?: string;
|
|
4013
|
+
Gateway?: string | undefined;
|
|
4014
4014
|
}
|
|
4015
4015
|
/**
|
|
4016
4016
|
* The properties for a VPC type input destination.
|
|
@@ -4021,12 +4021,12 @@ export interface InputDestinationVpc {
|
|
|
4021
4021
|
* The availability zone of the Input destination.
|
|
4022
4022
|
* @public
|
|
4023
4023
|
*/
|
|
4024
|
-
AvailabilityZone?: string;
|
|
4024
|
+
AvailabilityZone?: string | undefined;
|
|
4025
4025
|
/**
|
|
4026
4026
|
* The network interface ID of the Input destination in the VPC.
|
|
4027
4027
|
* @public
|
|
4028
4028
|
*/
|
|
4029
|
-
NetworkInterfaceId?: string;
|
|
4029
|
+
NetworkInterfaceId?: string | undefined;
|
|
4030
4030
|
}
|
|
4031
4031
|
/**
|
|
4032
4032
|
* The settings for a PUSH type input.
|
|
@@ -4038,34 +4038,34 @@ export interface InputDestination {
|
|
|
4038
4038
|
* It remains fixed for the lifetime of the input.
|
|
4039
4039
|
* @public
|
|
4040
4040
|
*/
|
|
4041
|
-
Ip?: string;
|
|
4041
|
+
Ip?: string | undefined;
|
|
4042
4042
|
/**
|
|
4043
4043
|
* The port number for the input.
|
|
4044
4044
|
* @public
|
|
4045
4045
|
*/
|
|
4046
|
-
Port?: string;
|
|
4046
|
+
Port?: string | undefined;
|
|
4047
4047
|
/**
|
|
4048
4048
|
* This represents the endpoint that the customer stream will be
|
|
4049
4049
|
* pushed to.
|
|
4050
4050
|
* @public
|
|
4051
4051
|
*/
|
|
4052
|
-
Url?: string;
|
|
4052
|
+
Url?: string | undefined;
|
|
4053
4053
|
/**
|
|
4054
4054
|
* The properties for a VPC type input destination.
|
|
4055
4055
|
* @public
|
|
4056
4056
|
*/
|
|
4057
|
-
Vpc?: InputDestinationVpc;
|
|
4057
|
+
Vpc?: InputDestinationVpc | undefined;
|
|
4058
4058
|
/**
|
|
4059
4059
|
* The ID of the attached network.
|
|
4060
4060
|
* @public
|
|
4061
4061
|
*/
|
|
4062
|
-
Network?: string;
|
|
4062
|
+
Network?: string | undefined;
|
|
4063
4063
|
/**
|
|
4064
4064
|
* If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input
|
|
4065
4065
|
* is going to be on the customer local network.
|
|
4066
4066
|
* @public
|
|
4067
4067
|
*/
|
|
4068
|
-
NetworkRoutes?: InputDestinationRoute[];
|
|
4068
|
+
NetworkRoutes?: InputDestinationRoute[] | undefined;
|
|
4069
4069
|
}
|
|
4070
4070
|
/**
|
|
4071
4071
|
* @public
|
|
@@ -4088,7 +4088,7 @@ export interface InputDeviceSettings {
|
|
|
4088
4088
|
* The unique ID for the device.
|
|
4089
4089
|
* @public
|
|
4090
4090
|
*/
|
|
4091
|
-
Id?: string;
|
|
4091
|
+
Id?: string | undefined;
|
|
4092
4092
|
}
|
|
4093
4093
|
/**
|
|
4094
4094
|
* @public
|
|
@@ -4123,7 +4123,7 @@ export interface MediaConnectFlow {
|
|
|
4123
4123
|
* The unique ARN of the MediaConnect Flow being used as a source.
|
|
4124
4124
|
* @public
|
|
4125
4125
|
*/
|
|
4126
|
-
FlowArn?: string;
|
|
4126
|
+
FlowArn?: string | undefined;
|
|
4127
4127
|
}
|
|
4128
4128
|
/**
|
|
4129
4129
|
* Pair of multicast url and source ip address (optional) that make up a multicast source.
|
|
@@ -4134,7 +4134,7 @@ export interface MulticastSource {
|
|
|
4134
4134
|
* This represents the ip address of the device sending the multicast stream.
|
|
4135
4135
|
* @public
|
|
4136
4136
|
*/
|
|
4137
|
-
SourceIp?: string;
|
|
4137
|
+
SourceIp?: string | undefined;
|
|
4138
4138
|
/**
|
|
4139
4139
|
* This represents the customer's source URL where multicast stream is pulled from.
|
|
4140
4140
|
* @public
|
|
@@ -4150,7 +4150,7 @@ export interface MulticastSettings {
|
|
|
4150
4150
|
* Placeholder documentation for __listOfMulticastSource
|
|
4151
4151
|
* @public
|
|
4152
4152
|
*/
|
|
4153
|
-
Sources?: MulticastSource[];
|
|
4153
|
+
Sources?: MulticastSource[] | undefined;
|
|
4154
4154
|
}
|
|
4155
4155
|
/**
|
|
4156
4156
|
* The settings for a PULL type input.
|
|
@@ -4161,18 +4161,18 @@ export interface InputSource {
|
|
|
4161
4161
|
* The key used to extract the password from EC2 Parameter store.
|
|
4162
4162
|
* @public
|
|
4163
4163
|
*/
|
|
4164
|
-
PasswordParam?: string;
|
|
4164
|
+
PasswordParam?: string | undefined;
|
|
4165
4165
|
/**
|
|
4166
4166
|
* This represents the customer's source URL where stream is
|
|
4167
4167
|
* pulled from.
|
|
4168
4168
|
* @public
|
|
4169
4169
|
*/
|
|
4170
|
-
Url?: string;
|
|
4170
|
+
Url?: string | undefined;
|
|
4171
4171
|
/**
|
|
4172
4172
|
* The username for the input source.
|
|
4173
4173
|
* @public
|
|
4174
4174
|
*/
|
|
4175
|
-
Username?: string;
|
|
4175
|
+
Username?: string | undefined;
|
|
4176
4176
|
}
|
|
4177
4177
|
/**
|
|
4178
4178
|
* @public
|
|
@@ -4196,12 +4196,12 @@ export interface SrtCallerDecryption {
|
|
|
4196
4196
|
* The algorithm used to encrypt content.
|
|
4197
4197
|
* @public
|
|
4198
4198
|
*/
|
|
4199
|
-
Algorithm?: Algorithm;
|
|
4199
|
+
Algorithm?: Algorithm | undefined;
|
|
4200
4200
|
/**
|
|
4201
4201
|
* The ARN for the secret in Secrets Manager. Someone in your organization must create a secret and provide you with its ARN. The secret holds the passphrase that MediaLive uses to decrypt the source content.
|
|
4202
4202
|
* @public
|
|
4203
4203
|
*/
|
|
4204
|
-
PassphraseSecretArn?: string;
|
|
4204
|
+
PassphraseSecretArn?: string | undefined;
|
|
4205
4205
|
}
|
|
4206
4206
|
/**
|
|
4207
4207
|
* The configuration for a source that uses SRT as the connection protocol. In terms of establishing the connection, MediaLive is always caller and the upstream system is always the listener. In terms of transmission of the source content, MediaLive is always the receiver and the upstream system is always the sender.
|
|
@@ -4212,27 +4212,27 @@ export interface SrtCallerSource {
|
|
|
4212
4212
|
* The decryption settings for the SRT caller source. Present only if the source has decryption enabled.
|
|
4213
4213
|
* @public
|
|
4214
4214
|
*/
|
|
4215
|
-
Decryption?: SrtCallerDecryption;
|
|
4215
|
+
Decryption?: SrtCallerDecryption | undefined;
|
|
4216
4216
|
/**
|
|
4217
4217
|
* The preferred latency (in milliseconds) for implementing packet loss and recovery. Packet recovery is a key feature of SRT.
|
|
4218
4218
|
* @public
|
|
4219
4219
|
*/
|
|
4220
|
-
MinimumLatency?: number;
|
|
4220
|
+
MinimumLatency?: number | undefined;
|
|
4221
4221
|
/**
|
|
4222
4222
|
* The IP address at the upstream system (the listener) that MediaLive (the caller) connects to.
|
|
4223
4223
|
* @public
|
|
4224
4224
|
*/
|
|
4225
|
-
SrtListenerAddress?: string;
|
|
4225
|
+
SrtListenerAddress?: string | undefined;
|
|
4226
4226
|
/**
|
|
4227
4227
|
* The port at the upstream system (the listener) that MediaLive (the caller) connects to.
|
|
4228
4228
|
* @public
|
|
4229
4229
|
*/
|
|
4230
|
-
SrtListenerPort?: string;
|
|
4230
|
+
SrtListenerPort?: string | undefined;
|
|
4231
4231
|
/**
|
|
4232
4232
|
* The stream ID, if the upstream system uses this identifier.
|
|
4233
4233
|
* @public
|
|
4234
4234
|
*/
|
|
4235
|
-
StreamId?: string;
|
|
4235
|
+
StreamId?: string | undefined;
|
|
4236
4236
|
}
|
|
4237
4237
|
/**
|
|
4238
4238
|
* The configured sources for this SRT input.
|
|
@@ -4243,7 +4243,7 @@ export interface SrtSettings {
|
|
|
4243
4243
|
* Placeholder documentation for __listOfSrtCallerSource
|
|
4244
4244
|
* @public
|
|
4245
4245
|
*/
|
|
4246
|
-
SrtCallerSources?: SrtCallerSource[];
|
|
4246
|
+
SrtCallerSources?: SrtCallerSource[] | undefined;
|
|
4247
4247
|
}
|
|
4248
4248
|
/**
|
|
4249
4249
|
* @public
|
|
@@ -4291,100 +4291,100 @@ export interface Input {
|
|
|
4291
4291
|
* The Unique ARN of the input (generated, immutable).
|
|
4292
4292
|
* @public
|
|
4293
4293
|
*/
|
|
4294
|
-
Arn?: string;
|
|
4294
|
+
Arn?: string | undefined;
|
|
4295
4295
|
/**
|
|
4296
4296
|
* A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).
|
|
4297
4297
|
* @public
|
|
4298
4298
|
*/
|
|
4299
|
-
AttachedChannels?: string[];
|
|
4299
|
+
AttachedChannels?: string[] | undefined;
|
|
4300
4300
|
/**
|
|
4301
4301
|
* A list of the destinations of the input (PUSH-type).
|
|
4302
4302
|
* @public
|
|
4303
4303
|
*/
|
|
4304
|
-
Destinations?: InputDestination[];
|
|
4304
|
+
Destinations?: InputDestination[] | undefined;
|
|
4305
4305
|
/**
|
|
4306
4306
|
* The generated ID of the input (unique for user account, immutable).
|
|
4307
4307
|
* @public
|
|
4308
4308
|
*/
|
|
4309
|
-
Id?: string;
|
|
4309
|
+
Id?: string | undefined;
|
|
4310
4310
|
/**
|
|
4311
4311
|
* 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.
|
|
4312
4312
|
* 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.
|
|
4313
4313
|
* @public
|
|
4314
4314
|
*/
|
|
4315
|
-
InputClass?: InputClass;
|
|
4315
|
+
InputClass?: InputClass | undefined;
|
|
4316
4316
|
/**
|
|
4317
4317
|
* Settings for the input devices.
|
|
4318
4318
|
* @public
|
|
4319
4319
|
*/
|
|
4320
|
-
InputDevices?: InputDeviceSettings[];
|
|
4320
|
+
InputDevices?: InputDeviceSettings[] | undefined;
|
|
4321
4321
|
/**
|
|
4322
4322
|
* A list of IDs for all Inputs which are partners of this one.
|
|
4323
4323
|
* @public
|
|
4324
4324
|
*/
|
|
4325
|
-
InputPartnerIds?: string[];
|
|
4325
|
+
InputPartnerIds?: string[] | undefined;
|
|
4326
4326
|
/**
|
|
4327
4327
|
* Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
|
|
4328
4328
|
* during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
|
|
4329
4329
|
* @public
|
|
4330
4330
|
*/
|
|
4331
|
-
InputSourceType?: InputSourceType;
|
|
4331
|
+
InputSourceType?: InputSourceType | undefined;
|
|
4332
4332
|
/**
|
|
4333
4333
|
* A list of MediaConnect Flows for this input.
|
|
4334
4334
|
* @public
|
|
4335
4335
|
*/
|
|
4336
|
-
MediaConnectFlows?: MediaConnectFlow[];
|
|
4336
|
+
MediaConnectFlows?: MediaConnectFlow[] | undefined;
|
|
4337
4337
|
/**
|
|
4338
4338
|
* The user-assigned name (This is a mutable value).
|
|
4339
4339
|
* @public
|
|
4340
4340
|
*/
|
|
4341
|
-
Name?: string;
|
|
4341
|
+
Name?: string | undefined;
|
|
4342
4342
|
/**
|
|
4343
4343
|
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
|
|
4344
4344
|
* @public
|
|
4345
4345
|
*/
|
|
4346
|
-
RoleArn?: string;
|
|
4346
|
+
RoleArn?: string | undefined;
|
|
4347
4347
|
/**
|
|
4348
4348
|
* A list of IDs for all the Input Security Groups attached to the input.
|
|
4349
4349
|
* @public
|
|
4350
4350
|
*/
|
|
4351
|
-
SecurityGroups?: string[];
|
|
4351
|
+
SecurityGroups?: string[] | undefined;
|
|
4352
4352
|
/**
|
|
4353
4353
|
* A list of the sources of the input (PULL-type).
|
|
4354
4354
|
* @public
|
|
4355
4355
|
*/
|
|
4356
|
-
Sources?: InputSource[];
|
|
4356
|
+
Sources?: InputSource[] | undefined;
|
|
4357
4357
|
/**
|
|
4358
4358
|
* Placeholder documentation for InputState
|
|
4359
4359
|
* @public
|
|
4360
4360
|
*/
|
|
4361
|
-
State?: InputState;
|
|
4361
|
+
State?: InputState | undefined;
|
|
4362
4362
|
/**
|
|
4363
4363
|
* A collection of key-value pairs.
|
|
4364
4364
|
* @public
|
|
4365
4365
|
*/
|
|
4366
|
-
Tags?: Record<string, string
|
|
4366
|
+
Tags?: Record<string, string> | undefined;
|
|
4367
4367
|
/**
|
|
4368
4368
|
* The different types of inputs that AWS Elemental MediaLive supports.
|
|
4369
4369
|
* @public
|
|
4370
4370
|
*/
|
|
4371
|
-
Type?: InputType;
|
|
4371
|
+
Type?: InputType | undefined;
|
|
4372
4372
|
/**
|
|
4373
4373
|
* The settings associated with an SRT input.
|
|
4374
4374
|
* @public
|
|
4375
4375
|
*/
|
|
4376
|
-
SrtSettings?: SrtSettings;
|
|
4376
|
+
SrtSettings?: SrtSettings | undefined;
|
|
4377
4377
|
/**
|
|
4378
4378
|
* The location of this input. AWS, for an input existing in the AWS Cloud, On-Prem for
|
|
4379
4379
|
* an input in a customer network.
|
|
4380
4380
|
* @public
|
|
4381
4381
|
*/
|
|
4382
|
-
InputNetworkLocation?: InputNetworkLocation;
|
|
4382
|
+
InputNetworkLocation?: InputNetworkLocation | undefined;
|
|
4383
4383
|
/**
|
|
4384
4384
|
* Multicast Input settings.
|
|
4385
4385
|
* @public
|
|
4386
4386
|
*/
|
|
4387
|
-
MulticastSettings?: MulticastSettings;
|
|
4387
|
+
MulticastSettings?: MulticastSettings | undefined;
|
|
4388
4388
|
}
|
|
4389
4389
|
/**
|
|
4390
4390
|
* A network route configuration.
|
|
@@ -4395,12 +4395,12 @@ export interface InputRequestDestinationRoute {
|
|
|
4395
4395
|
* The CIDR of the route.
|
|
4396
4396
|
* @public
|
|
4397
4397
|
*/
|
|
4398
|
-
Cidr?: string;
|
|
4398
|
+
Cidr?: string | undefined;
|
|
4399
4399
|
/**
|
|
4400
4400
|
* An optional gateway for the route.
|
|
4401
4401
|
* @public
|
|
4402
4402
|
*/
|
|
4403
|
-
Gateway?: string;
|
|
4403
|
+
Gateway?: string | undefined;
|
|
4404
4404
|
}
|
|
4405
4405
|
/**
|
|
4406
4406
|
* Endpoint settings for a PUSH type input.
|
|
@@ -4412,24 +4412,24 @@ export interface InputDestinationRequest {
|
|
|
4412
4412
|
* to.
|
|
4413
4413
|
* @public
|
|
4414
4414
|
*/
|
|
4415
|
-
StreamName?: string;
|
|
4415
|
+
StreamName?: string | undefined;
|
|
4416
4416
|
/**
|
|
4417
4417
|
* If the push input has an input location of ON-PREM, ID the ID of the attached network.
|
|
4418
4418
|
* @public
|
|
4419
4419
|
*/
|
|
4420
|
-
Network?: string;
|
|
4420
|
+
Network?: string | undefined;
|
|
4421
4421
|
/**
|
|
4422
4422
|
* If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input
|
|
4423
4423
|
* is going to be on the customer local network.
|
|
4424
4424
|
* @public
|
|
4425
4425
|
*/
|
|
4426
|
-
NetworkRoutes?: InputRequestDestinationRoute[];
|
|
4426
|
+
NetworkRoutes?: InputRequestDestinationRoute[] | undefined;
|
|
4427
4427
|
/**
|
|
4428
4428
|
* If the push input has an input location of ON-PREM it's optional to specify what the ip address
|
|
4429
4429
|
* of the input is going to be on the customer local network.
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
StaticIpAddress?: string;
|
|
4432
|
+
StaticIpAddress?: string | undefined;
|
|
4433
4433
|
}
|
|
4434
4434
|
/**
|
|
4435
4435
|
* @public
|
|
@@ -4458,12 +4458,12 @@ export interface InputDeviceConfigurableAudioChannelPairConfig {
|
|
|
4458
4458
|
* The ID for one audio pair configuration, a value from 1 to 8.
|
|
4459
4459
|
* @public
|
|
4460
4460
|
*/
|
|
4461
|
-
Id?: number;
|
|
4461
|
+
Id?: number | undefined;
|
|
4462
4462
|
/**
|
|
4463
4463
|
* The profile to set for one audio pair configuration. Choose an enumeration value. Each value describes one audio configuration using the format (rate control algorithm)-(codec)_(quality)-(bitrate in bytes). For example, CBR-AAC_HQ-192000. Or choose DISABLED, in which case the device won't produce audio for this pair.
|
|
4464
4464
|
* @public
|
|
4465
4465
|
*/
|
|
4466
|
-
Profile?: InputDeviceConfigurableAudioChannelPairProfile;
|
|
4466
|
+
Profile?: InputDeviceConfigurableAudioChannelPairProfile | undefined;
|
|
4467
4467
|
}
|
|
4468
4468
|
/**
|
|
4469
4469
|
* Settings for an input device.
|
|
@@ -4474,7 +4474,7 @@ export interface InputDeviceRequest {
|
|
|
4474
4474
|
* The unique ID for the device.
|
|
4475
4475
|
* @public
|
|
4476
4476
|
*/
|
|
4477
|
-
Id?: string;
|
|
4477
|
+
Id?: string | undefined;
|
|
4478
4478
|
}
|
|
4479
4479
|
/**
|
|
4480
4480
|
* @public
|
|
@@ -4571,47 +4571,47 @@ export interface InputDeviceHdSettings {
|
|
|
4571
4571
|
* If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).
|
|
4572
4572
|
* @public
|
|
4573
4573
|
*/
|
|
4574
|
-
ActiveInput?: InputDeviceActiveInput;
|
|
4574
|
+
ActiveInput?: InputDeviceActiveInput | undefined;
|
|
4575
4575
|
/**
|
|
4576
4576
|
* The source at the input device that is currently active. You can specify this source.
|
|
4577
4577
|
* @public
|
|
4578
4578
|
*/
|
|
4579
|
-
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
4579
|
+
ConfiguredInput?: InputDeviceConfiguredInput | undefined;
|
|
4580
4580
|
/**
|
|
4581
4581
|
* The state of the input device.
|
|
4582
4582
|
* @public
|
|
4583
4583
|
*/
|
|
4584
|
-
DeviceState?: InputDeviceState;
|
|
4584
|
+
DeviceState?: InputDeviceState | undefined;
|
|
4585
4585
|
/**
|
|
4586
4586
|
* The frame rate of the video source.
|
|
4587
4587
|
* @public
|
|
4588
4588
|
*/
|
|
4589
|
-
Framerate?: number;
|
|
4589
|
+
Framerate?: number | undefined;
|
|
4590
4590
|
/**
|
|
4591
4591
|
* The height of the video source, in pixels.
|
|
4592
4592
|
* @public
|
|
4593
4593
|
*/
|
|
4594
|
-
Height?: number;
|
|
4594
|
+
Height?: number | undefined;
|
|
4595
4595
|
/**
|
|
4596
4596
|
* The current maximum bitrate for ingesting this source, in bits per second. You can specify this maximum.
|
|
4597
4597
|
* @public
|
|
4598
4598
|
*/
|
|
4599
|
-
MaxBitrate?: number;
|
|
4599
|
+
MaxBitrate?: number | undefined;
|
|
4600
4600
|
/**
|
|
4601
4601
|
* The scan type of the video source.
|
|
4602
4602
|
* @public
|
|
4603
4603
|
*/
|
|
4604
|
-
ScanType?: InputDeviceScanType;
|
|
4604
|
+
ScanType?: InputDeviceScanType | undefined;
|
|
4605
4605
|
/**
|
|
4606
4606
|
* The width of the video source, in pixels.
|
|
4607
4607
|
* @public
|
|
4608
4608
|
*/
|
|
4609
|
-
Width?: number;
|
|
4609
|
+
Width?: number | undefined;
|
|
4610
4610
|
/**
|
|
4611
4611
|
* The Link device's buffer size (latency) in milliseconds (ms). You can specify this value.
|
|
4612
4612
|
* @public
|
|
4613
4613
|
*/
|
|
4614
|
-
LatencyMs?: number;
|
|
4614
|
+
LatencyMs?: number | undefined;
|
|
4615
4615
|
}
|
|
4616
4616
|
/**
|
|
4617
4617
|
* @public
|
|
@@ -4634,27 +4634,27 @@ export interface InputDeviceNetworkSettings {
|
|
|
4634
4634
|
* The DNS addresses of the input device.
|
|
4635
4635
|
* @public
|
|
4636
4636
|
*/
|
|
4637
|
-
DnsAddresses?: string[];
|
|
4637
|
+
DnsAddresses?: string[] | undefined;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* The network gateway IP address.
|
|
4640
4640
|
* @public
|
|
4641
4641
|
*/
|
|
4642
|
-
Gateway?: string;
|
|
4642
|
+
Gateway?: string | undefined;
|
|
4643
4643
|
/**
|
|
4644
4644
|
* The IP address of the input device.
|
|
4645
4645
|
* @public
|
|
4646
4646
|
*/
|
|
4647
|
-
IpAddress?: string;
|
|
4647
|
+
IpAddress?: string | undefined;
|
|
4648
4648
|
/**
|
|
4649
4649
|
* Specifies whether the input device has been configured (outside of MediaLive) to use a dynamic IP address assignment (DHCP) or a static IP address.
|
|
4650
4650
|
* @public
|
|
4651
4651
|
*/
|
|
4652
|
-
IpScheme?: InputDeviceIpScheme;
|
|
4652
|
+
IpScheme?: InputDeviceIpScheme | undefined;
|
|
4653
4653
|
/**
|
|
4654
4654
|
* The subnet mask of the input device.
|
|
4655
4655
|
* @public
|
|
4656
4656
|
*/
|
|
4657
|
-
SubnetMask?: string;
|
|
4657
|
+
SubnetMask?: string | undefined;
|
|
4658
4658
|
}
|
|
4659
4659
|
/**
|
|
4660
4660
|
* @public
|
|
@@ -4708,12 +4708,12 @@ export interface InputDeviceUhdAudioChannelPairConfig {
|
|
|
4708
4708
|
* The ID for one audio pair configuration, a value from 1 to 8.
|
|
4709
4709
|
* @public
|
|
4710
4710
|
*/
|
|
4711
|
-
Id?: number;
|
|
4711
|
+
Id?: number | undefined;
|
|
4712
4712
|
/**
|
|
4713
4713
|
* The profile for one audio pair configuration. This property describes one audio configuration in the format (rate control algorithm)-(codec)_(quality)-(bitrate in bytes). For example, CBR-AAC_HQ-192000. Or DISABLED, in which case the device won't produce audio for this pair.
|
|
4714
4714
|
* @public
|
|
4715
4715
|
*/
|
|
4716
|
-
Profile?: InputDeviceUhdAudioChannelPairProfile;
|
|
4716
|
+
Profile?: InputDeviceUhdAudioChannelPairProfile | undefined;
|
|
4717
4717
|
}
|
|
4718
4718
|
/**
|
|
4719
4719
|
* @public
|
|
@@ -4736,22 +4736,22 @@ export interface InputDeviceMediaConnectSettings {
|
|
|
4736
4736
|
* The ARN of the MediaConnect flow.
|
|
4737
4737
|
* @public
|
|
4738
4738
|
*/
|
|
4739
|
-
FlowArn?: string;
|
|
4739
|
+
FlowArn?: string | undefined;
|
|
4740
4740
|
/**
|
|
4741
4741
|
* The ARN for the role that MediaLive assumes to access the attached flow and secret.
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
RoleArn?: string;
|
|
4744
|
+
RoleArn?: string | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* The ARN of the secret used to encrypt the stream.
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
SecretArn?: string;
|
|
4749
|
+
SecretArn?: string | undefined;
|
|
4750
4750
|
/**
|
|
4751
4751
|
* The name of the MediaConnect flow source.
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
SourceName?: string;
|
|
4754
|
+
SourceName?: string | undefined;
|
|
4755
4755
|
}
|
|
4756
4756
|
/**
|
|
4757
4757
|
* Settings that describe the active source from the input device, and the video characteristics of that source.
|
|
@@ -4762,62 +4762,62 @@ export interface InputDeviceUhdSettings {
|
|
|
4762
4762
|
* If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).
|
|
4763
4763
|
* @public
|
|
4764
4764
|
*/
|
|
4765
|
-
ActiveInput?: InputDeviceActiveInput;
|
|
4765
|
+
ActiveInput?: InputDeviceActiveInput | undefined;
|
|
4766
4766
|
/**
|
|
4767
4767
|
* The source at the input device that is currently active. You can specify this source.
|
|
4768
4768
|
* @public
|
|
4769
4769
|
*/
|
|
4770
|
-
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
4770
|
+
ConfiguredInput?: InputDeviceConfiguredInput | undefined;
|
|
4771
4771
|
/**
|
|
4772
4772
|
* The state of the input device.
|
|
4773
4773
|
* @public
|
|
4774
4774
|
*/
|
|
4775
|
-
DeviceState?: InputDeviceState;
|
|
4775
|
+
DeviceState?: InputDeviceState | undefined;
|
|
4776
4776
|
/**
|
|
4777
4777
|
* The frame rate of the video source.
|
|
4778
4778
|
* @public
|
|
4779
4779
|
*/
|
|
4780
|
-
Framerate?: number;
|
|
4780
|
+
Framerate?: number | undefined;
|
|
4781
4781
|
/**
|
|
4782
4782
|
* The height of the video source, in pixels.
|
|
4783
4783
|
* @public
|
|
4784
4784
|
*/
|
|
4785
|
-
Height?: number;
|
|
4785
|
+
Height?: number | undefined;
|
|
4786
4786
|
/**
|
|
4787
4787
|
* The current maximum bitrate for ingesting this source, in bits per second. You can specify this maximum.
|
|
4788
4788
|
* @public
|
|
4789
4789
|
*/
|
|
4790
|
-
MaxBitrate?: number;
|
|
4790
|
+
MaxBitrate?: number | undefined;
|
|
4791
4791
|
/**
|
|
4792
4792
|
* The scan type of the video source.
|
|
4793
4793
|
* @public
|
|
4794
4794
|
*/
|
|
4795
|
-
ScanType?: InputDeviceScanType;
|
|
4795
|
+
ScanType?: InputDeviceScanType | undefined;
|
|
4796
4796
|
/**
|
|
4797
4797
|
* The width of the video source, in pixels.
|
|
4798
4798
|
* @public
|
|
4799
4799
|
*/
|
|
4800
|
-
Width?: number;
|
|
4800
|
+
Width?: number | undefined;
|
|
4801
4801
|
/**
|
|
4802
4802
|
* The Link device's buffer size (latency) in milliseconds (ms). You can specify this value.
|
|
4803
4803
|
* @public
|
|
4804
4804
|
*/
|
|
4805
|
-
LatencyMs?: number;
|
|
4805
|
+
LatencyMs?: number | undefined;
|
|
4806
4806
|
/**
|
|
4807
4807
|
* The codec for the video that the device produces.
|
|
4808
4808
|
* @public
|
|
4809
4809
|
*/
|
|
4810
|
-
Codec?: InputDeviceCodec;
|
|
4810
|
+
Codec?: InputDeviceCodec | undefined;
|
|
4811
4811
|
/**
|
|
4812
4812
|
* Information about the MediaConnect flow attached to the device. Returned only if the outputType is MEDIACONNECT_FLOW.
|
|
4813
4813
|
* @public
|
|
4814
4814
|
*/
|
|
4815
|
-
MediaconnectSettings?: InputDeviceMediaConnectSettings;
|
|
4815
|
+
MediaconnectSettings?: InputDeviceMediaConnectSettings | undefined;
|
|
4816
4816
|
/**
|
|
4817
4817
|
* An array of eight audio configurations, one for each audio pair in the source. Each audio configuration specifies either to exclude the pair, or to format it and include it in the output from the UHD device. Applies only when the device is configured as the source for a MediaConnect flow.
|
|
4818
4818
|
* @public
|
|
4819
4819
|
*/
|
|
4820
|
-
AudioChannelPairs?: InputDeviceUhdAudioChannelPairConfig[];
|
|
4820
|
+
AudioChannelPairs?: InputDeviceUhdAudioChannelPairConfig[] | undefined;
|
|
4821
4821
|
}
|
|
4822
4822
|
/**
|
|
4823
4823
|
* Details of the input device.
|
|
@@ -4828,82 +4828,82 @@ export interface InputDeviceSummary {
|
|
|
4828
4828
|
* The unique ARN of the input device.
|
|
4829
4829
|
* @public
|
|
4830
4830
|
*/
|
|
4831
|
-
Arn?: string;
|
|
4831
|
+
Arn?: string | undefined;
|
|
4832
4832
|
/**
|
|
4833
4833
|
* The state of the connection between the input device and AWS.
|
|
4834
4834
|
* @public
|
|
4835
4835
|
*/
|
|
4836
|
-
ConnectionState?: InputDeviceConnectionState;
|
|
4836
|
+
ConnectionState?: InputDeviceConnectionState | undefined;
|
|
4837
4837
|
/**
|
|
4838
4838
|
* 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.
|
|
4839
4839
|
* @public
|
|
4840
4840
|
*/
|
|
4841
|
-
DeviceSettingsSyncState?: DeviceSettingsSyncState;
|
|
4841
|
+
DeviceSettingsSyncState?: DeviceSettingsSyncState | undefined;
|
|
4842
4842
|
/**
|
|
4843
4843
|
* The status of software on the input device.
|
|
4844
4844
|
* @public
|
|
4845
4845
|
*/
|
|
4846
|
-
DeviceUpdateStatus?: DeviceUpdateStatus;
|
|
4846
|
+
DeviceUpdateStatus?: DeviceUpdateStatus | undefined;
|
|
4847
4847
|
/**
|
|
4848
4848
|
* Settings that describe an input device that is type HD.
|
|
4849
4849
|
* @public
|
|
4850
4850
|
*/
|
|
4851
|
-
HdDeviceSettings?: InputDeviceHdSettings;
|
|
4851
|
+
HdDeviceSettings?: InputDeviceHdSettings | undefined;
|
|
4852
4852
|
/**
|
|
4853
4853
|
* The unique ID of the input device.
|
|
4854
4854
|
* @public
|
|
4855
4855
|
*/
|
|
4856
|
-
Id?: string;
|
|
4856
|
+
Id?: string | undefined;
|
|
4857
4857
|
/**
|
|
4858
4858
|
* The network MAC address of the input device.
|
|
4859
4859
|
* @public
|
|
4860
4860
|
*/
|
|
4861
|
-
MacAddress?: string;
|
|
4861
|
+
MacAddress?: string | undefined;
|
|
4862
4862
|
/**
|
|
4863
4863
|
* A name that you specify for the input device.
|
|
4864
4864
|
* @public
|
|
4865
4865
|
*/
|
|
4866
|
-
Name?: string;
|
|
4866
|
+
Name?: string | undefined;
|
|
4867
4867
|
/**
|
|
4868
4868
|
* Network settings for the input device.
|
|
4869
4869
|
* @public
|
|
4870
4870
|
*/
|
|
4871
|
-
NetworkSettings?: InputDeviceNetworkSettings;
|
|
4871
|
+
NetworkSettings?: InputDeviceNetworkSettings | undefined;
|
|
4872
4872
|
/**
|
|
4873
4873
|
* The unique serial number of the input device.
|
|
4874
4874
|
* @public
|
|
4875
4875
|
*/
|
|
4876
|
-
SerialNumber?: string;
|
|
4876
|
+
SerialNumber?: string | undefined;
|
|
4877
4877
|
/**
|
|
4878
4878
|
* The type of the input device.
|
|
4879
4879
|
* @public
|
|
4880
4880
|
*/
|
|
4881
|
-
Type?: InputDeviceType;
|
|
4881
|
+
Type?: InputDeviceType | undefined;
|
|
4882
4882
|
/**
|
|
4883
4883
|
* Settings that describe an input device that is type UHD.
|
|
4884
4884
|
* @public
|
|
4885
4885
|
*/
|
|
4886
|
-
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
4886
|
+
UhdDeviceSettings?: InputDeviceUhdSettings | undefined;
|
|
4887
4887
|
/**
|
|
4888
4888
|
* A collection of key-value pairs.
|
|
4889
4889
|
* @public
|
|
4890
4890
|
*/
|
|
4891
|
-
Tags?: Record<string, string
|
|
4891
|
+
Tags?: Record<string, string> | undefined;
|
|
4892
4892
|
/**
|
|
4893
4893
|
* The Availability Zone associated with this input device.
|
|
4894
4894
|
* @public
|
|
4895
4895
|
*/
|
|
4896
|
-
AvailabilityZone?: string;
|
|
4896
|
+
AvailabilityZone?: string | undefined;
|
|
4897
4897
|
/**
|
|
4898
4898
|
* An array of the ARNs for the MediaLive inputs attached to the device. Returned only if the outputType is MEDIALIVE_INPUT.
|
|
4899
4899
|
* @public
|
|
4900
4900
|
*/
|
|
4901
|
-
MedialiveInputArns?: string[];
|
|
4901
|
+
MedialiveInputArns?: string[] | undefined;
|
|
4902
4902
|
/**
|
|
4903
4903
|
* 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.
|
|
4904
4904
|
* @public
|
|
4905
4905
|
*/
|
|
4906
|
-
OutputType?: InputDeviceOutputType;
|
|
4906
|
+
OutputType?: InputDeviceOutputType | undefined;
|
|
4907
4907
|
}
|
|
4908
4908
|
/**
|
|
4909
4909
|
* @public
|
|
@@ -4928,7 +4928,7 @@ export interface InputWhitelistRule {
|
|
|
4928
4928
|
* The IPv4 CIDR that's whitelisted.
|
|
4929
4929
|
* @public
|
|
4930
4930
|
*/
|
|
4931
|
-
Cidr?: string;
|
|
4931
|
+
Cidr?: string | undefined;
|
|
4932
4932
|
}
|
|
4933
4933
|
/**
|
|
4934
4934
|
* An Input Security Group
|
|
@@ -4939,32 +4939,32 @@ export interface InputSecurityGroup {
|
|
|
4939
4939
|
* Unique ARN of Input Security Group
|
|
4940
4940
|
* @public
|
|
4941
4941
|
*/
|
|
4942
|
-
Arn?: string;
|
|
4942
|
+
Arn?: string | undefined;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* The Id of the Input Security Group
|
|
4945
4945
|
* @public
|
|
4946
4946
|
*/
|
|
4947
|
-
Id?: string;
|
|
4947
|
+
Id?: string | undefined;
|
|
4948
4948
|
/**
|
|
4949
4949
|
* The list of inputs currently using this Input Security Group.
|
|
4950
4950
|
* @public
|
|
4951
4951
|
*/
|
|
4952
|
-
Inputs?: string[];
|
|
4952
|
+
Inputs?: string[] | undefined;
|
|
4953
4953
|
/**
|
|
4954
4954
|
* The current state of the Input Security Group.
|
|
4955
4955
|
* @public
|
|
4956
4956
|
*/
|
|
4957
|
-
State?: InputSecurityGroupState;
|
|
4957
|
+
State?: InputSecurityGroupState | undefined;
|
|
4958
4958
|
/**
|
|
4959
4959
|
* A collection of key-value pairs.
|
|
4960
4960
|
* @public
|
|
4961
4961
|
*/
|
|
4962
|
-
Tags?: Record<string, string
|
|
4962
|
+
Tags?: Record<string, string> | undefined;
|
|
4963
4963
|
/**
|
|
4964
4964
|
* Whitelist rules and their sync status
|
|
4965
4965
|
* @public
|
|
4966
4966
|
*/
|
|
4967
|
-
WhitelistRules?: InputWhitelistRule[];
|
|
4967
|
+
WhitelistRules?: InputWhitelistRule[] | undefined;
|
|
4968
4968
|
}
|
|
4969
4969
|
/**
|
|
4970
4970
|
* Settings for for a PULL type input.
|
|
@@ -4975,18 +4975,18 @@ export interface InputSourceRequest {
|
|
|
4975
4975
|
* The key used to extract the password from EC2 Parameter store.
|
|
4976
4976
|
* @public
|
|
4977
4977
|
*/
|
|
4978
|
-
PasswordParam?: string;
|
|
4978
|
+
PasswordParam?: string | undefined;
|
|
4979
4979
|
/**
|
|
4980
4980
|
* This represents the customer's source URL where stream is
|
|
4981
4981
|
* pulled from.
|
|
4982
4982
|
* @public
|
|
4983
4983
|
*/
|
|
4984
|
-
Url?: string;
|
|
4984
|
+
Url?: string | undefined;
|
|
4985
4985
|
/**
|
|
4986
4986
|
* The username for the input source.
|
|
4987
4987
|
* @public
|
|
4988
4988
|
*/
|
|
4989
|
-
Username?: string;
|
|
4989
|
+
Username?: string | undefined;
|
|
4990
4990
|
}
|
|
4991
4991
|
/**
|
|
4992
4992
|
* An IPv4 CIDR to whitelist.
|
|
@@ -4997,7 +4997,7 @@ export interface InputWhitelistRuleCidr {
|
|
|
4997
4997
|
* The IPv4 CIDR to whitelist.
|
|
4998
4998
|
* @public
|
|
4999
4999
|
*/
|
|
5000
|
-
Cidr?: string;
|
|
5000
|
+
Cidr?: string | undefined;
|
|
5001
5001
|
}
|
|
5002
5002
|
/**
|
|
5003
5003
|
* Used in ClusterNetworkSettingsCreateRequest.
|
|
@@ -5008,12 +5008,12 @@ export interface InterfaceMappingCreateRequest {
|
|
|
5008
5008
|
* The logical name for one interface (on every Node) that handles a specific type of traffic. We recommend that the name hints at the physical interface it applies to. For example, it could refer to the traffic that the physical interface handles. For example, my-Inputs-Interface.
|
|
5009
5009
|
* @public
|
|
5010
5010
|
*/
|
|
5011
|
-
LogicalInterfaceName?: string;
|
|
5011
|
+
LogicalInterfaceName?: string | undefined;
|
|
5012
5012
|
/**
|
|
5013
5013
|
* The ID of the network that you want to connect to the specified logicalInterfaceName.
|
|
5014
5014
|
* @public
|
|
5015
5015
|
*/
|
|
5016
|
-
NetworkId?: string;
|
|
5016
|
+
NetworkId?: string | undefined;
|
|
5017
5017
|
}
|
|
5018
5018
|
/**
|
|
5019
5019
|
* Placeholder documentation for InterfaceMappingUpdateRequest
|
|
@@ -5024,12 +5024,12 @@ export interface InterfaceMappingUpdateRequest {
|
|
|
5024
5024
|
* The logical name for one interface (on every Node) that handles a specific type of traffic. We recommend that the name hints at the physical interface it applies to. For example, it could refer to the traffic that the physical interface handles. For example, my-Inputs-Interface.
|
|
5025
5025
|
* @public
|
|
5026
5026
|
*/
|
|
5027
|
-
LogicalInterfaceName?: string;
|
|
5027
|
+
LogicalInterfaceName?: string | undefined;
|
|
5028
5028
|
/**
|
|
5029
5029
|
* The ID of the network that you want to connect to the specified logicalInterfaceName. You can use the ListNetworks operation to discover all the IDs.
|
|
5030
5030
|
* @public
|
|
5031
5031
|
*/
|
|
5032
|
-
NetworkId?: string;
|
|
5032
|
+
NetworkId?: string | undefined;
|
|
5033
5033
|
}
|
|
5034
5034
|
/**
|
|
5035
5035
|
* Used in CreateNetworkRequest.
|
|
@@ -5040,7 +5040,7 @@ export interface IpPoolCreateRequest {
|
|
|
5040
5040
|
* A CIDR block of IP addresses to reserve for MediaLive Anywhere.
|
|
5041
5041
|
* @public
|
|
5042
5042
|
*/
|
|
5043
|
-
Cidr?: string;
|
|
5043
|
+
Cidr?: string | undefined;
|
|
5044
5044
|
}
|
|
5045
5045
|
/**
|
|
5046
5046
|
* Used in UpdateNetworkRequest.
|
|
@@ -5051,7 +5051,7 @@ export interface IpPoolUpdateRequest {
|
|
|
5051
5051
|
* A CIDR block of IP addresses to reserve for MediaLive Anywhere.
|
|
5052
5052
|
* @public
|
|
5053
5053
|
*/
|
|
5054
|
-
Cidr?: string;
|
|
5054
|
+
Cidr?: string | undefined;
|
|
5055
5055
|
}
|
|
5056
5056
|
/**
|
|
5057
5057
|
* The settings for a MediaConnect Flow.
|
|
@@ -5062,7 +5062,7 @@ export interface MediaConnectFlowRequest {
|
|
|
5062
5062
|
* The ARN of the MediaConnect Flow that you want to use as a source.
|
|
5063
5063
|
* @public
|
|
5064
5064
|
*/
|
|
5065
|
-
FlowArn?: string;
|
|
5065
|
+
FlowArn?: string | undefined;
|
|
5066
5066
|
}
|
|
5067
5067
|
/**
|
|
5068
5068
|
* A direct source or destination neighbor to an AWS media resource.
|
|
@@ -5078,7 +5078,7 @@ export interface MediaResourceNeighbor {
|
|
|
5078
5078
|
* The logical name of an AWS media resource.
|
|
5079
5079
|
* @public
|
|
5080
5080
|
*/
|
|
5081
|
-
Name?: string;
|
|
5081
|
+
Name?: string | undefined;
|
|
5082
5082
|
}
|
|
5083
5083
|
/**
|
|
5084
5084
|
* Pair of multicast url and source ip address (optional) that make up a multicast source.
|
|
@@ -5089,7 +5089,7 @@ export interface MulticastSourceCreateRequest {
|
|
|
5089
5089
|
* This represents the ip address of the device sending the multicast stream.
|
|
5090
5090
|
* @public
|
|
5091
5091
|
*/
|
|
5092
|
-
SourceIp?: string;
|
|
5092
|
+
SourceIp?: string | undefined;
|
|
5093
5093
|
/**
|
|
5094
5094
|
* This represents the customer's source URL where multicast stream is pulled from.
|
|
5095
5095
|
* @public
|
|
@@ -5105,7 +5105,7 @@ export interface MulticastSourceUpdateRequest {
|
|
|
5105
5105
|
* This represents the ip address of the device sending the multicast stream.
|
|
5106
5106
|
* @public
|
|
5107
5107
|
*/
|
|
5108
|
-
SourceIp?: string;
|
|
5108
|
+
SourceIp?: string | undefined;
|
|
5109
5109
|
/**
|
|
5110
5110
|
* This represents the customer's source URL where multicast stream is pulled from.
|
|
5111
5111
|
* @public
|
|
@@ -5121,7 +5121,7 @@ export interface MultiplexMediaConnectOutputDestinationSettings {
|
|
|
5121
5121
|
* The MediaConnect entitlement ARN available as a Flow source.
|
|
5122
5122
|
* @public
|
|
5123
5123
|
*/
|
|
5124
|
-
EntitlementArn?: string;
|
|
5124
|
+
EntitlementArn?: string | undefined;
|
|
5125
5125
|
}
|
|
5126
5126
|
/**
|
|
5127
5127
|
* Multiplex output destination settings
|
|
@@ -5132,7 +5132,7 @@ export interface MultiplexOutputDestination {
|
|
|
5132
5132
|
* Multiplex MediaConnect output destination settings.
|
|
5133
5133
|
* @public
|
|
5134
5134
|
*/
|
|
5135
|
-
MediaConnectSettings?: MultiplexMediaConnectOutputDestinationSettings;
|
|
5135
|
+
MediaConnectSettings?: MultiplexMediaConnectOutputDestinationSettings | undefined;
|
|
5136
5136
|
}
|
|
5137
5137
|
/**
|
|
5138
5138
|
* The current source for one of the pipelines in the multiplex.
|
|
@@ -5143,12 +5143,12 @@ export interface MultiplexProgramPipelineDetail {
|
|
|
5143
5143
|
* Identifies the channel pipeline that is currently active for the pipeline (identified by PipelineId) in the multiplex.
|
|
5144
5144
|
* @public
|
|
5145
5145
|
*/
|
|
5146
|
-
ActiveChannelPipeline?: string;
|
|
5146
|
+
ActiveChannelPipeline?: string | undefined;
|
|
5147
5147
|
/**
|
|
5148
5148
|
* Identifies a specific pipeline in the multiplex.
|
|
5149
5149
|
* @public
|
|
5150
5150
|
*/
|
|
5151
|
-
PipelineId?: string;
|
|
5151
|
+
PipelineId?: string | undefined;
|
|
5152
5152
|
}
|
|
5153
5153
|
/**
|
|
5154
5154
|
* Placeholder documentation for MultiplexProgramSummary
|
|
@@ -5159,12 +5159,12 @@ export interface MultiplexProgramSummary {
|
|
|
5159
5159
|
* The MediaLive Channel associated with the program.
|
|
5160
5160
|
* @public
|
|
5161
5161
|
*/
|
|
5162
|
-
ChannelId?: string;
|
|
5162
|
+
ChannelId?: string | undefined;
|
|
5163
5163
|
/**
|
|
5164
5164
|
* The name of the multiplex program.
|
|
5165
5165
|
* @public
|
|
5166
5166
|
*/
|
|
5167
|
-
ProgramName?: string;
|
|
5167
|
+
ProgramName?: string | undefined;
|
|
5168
5168
|
}
|
|
5169
5169
|
/**
|
|
5170
5170
|
* Contains summary configuration for a Multiplex event.
|
|
@@ -5175,7 +5175,7 @@ export interface MultiplexSettingsSummary {
|
|
|
5175
5175
|
* Transport stream bit rate.
|
|
5176
5176
|
* @public
|
|
5177
5177
|
*/
|
|
5178
|
-
TransportStreamBitrate?: number;
|
|
5178
|
+
TransportStreamBitrate?: number | undefined;
|
|
5179
5179
|
}
|
|
5180
5180
|
/**
|
|
5181
5181
|
* @public
|
|
@@ -5205,47 +5205,47 @@ export interface MultiplexSummary {
|
|
|
5205
5205
|
* The unique arn of the multiplex.
|
|
5206
5206
|
* @public
|
|
5207
5207
|
*/
|
|
5208
|
-
Arn?: string;
|
|
5208
|
+
Arn?: string | undefined;
|
|
5209
5209
|
/**
|
|
5210
5210
|
* A list of availability zones for the multiplex.
|
|
5211
5211
|
* @public
|
|
5212
5212
|
*/
|
|
5213
|
-
AvailabilityZones?: string[];
|
|
5213
|
+
AvailabilityZones?: string[] | undefined;
|
|
5214
5214
|
/**
|
|
5215
5215
|
* The unique id of the multiplex.
|
|
5216
5216
|
* @public
|
|
5217
5217
|
*/
|
|
5218
|
-
Id?: string;
|
|
5218
|
+
Id?: string | undefined;
|
|
5219
5219
|
/**
|
|
5220
5220
|
* Configuration for a multiplex event.
|
|
5221
5221
|
* @public
|
|
5222
5222
|
*/
|
|
5223
|
-
MultiplexSettings?: MultiplexSettingsSummary;
|
|
5223
|
+
MultiplexSettings?: MultiplexSettingsSummary | undefined;
|
|
5224
5224
|
/**
|
|
5225
5225
|
* The name of the multiplex.
|
|
5226
5226
|
* @public
|
|
5227
5227
|
*/
|
|
5228
|
-
Name?: string;
|
|
5228
|
+
Name?: string | undefined;
|
|
5229
5229
|
/**
|
|
5230
5230
|
* The number of currently healthy pipelines.
|
|
5231
5231
|
* @public
|
|
5232
5232
|
*/
|
|
5233
|
-
PipelinesRunningCount?: number;
|
|
5233
|
+
PipelinesRunningCount?: number | undefined;
|
|
5234
5234
|
/**
|
|
5235
5235
|
* The number of programs in the multiplex.
|
|
5236
5236
|
* @public
|
|
5237
5237
|
*/
|
|
5238
|
-
ProgramCount?: number;
|
|
5238
|
+
ProgramCount?: number | undefined;
|
|
5239
5239
|
/**
|
|
5240
5240
|
* The current state of the multiplex.
|
|
5241
5241
|
* @public
|
|
5242
5242
|
*/
|
|
5243
|
-
State?: MultiplexState;
|
|
5243
|
+
State?: MultiplexState | undefined;
|
|
5244
5244
|
/**
|
|
5245
5245
|
* A collection of key-value pairs.
|
|
5246
5246
|
* @public
|
|
5247
5247
|
*/
|
|
5248
|
-
Tags?: Record<string, string
|
|
5248
|
+
Tags?: Record<string, string> | undefined;
|
|
5249
5249
|
}
|
|
5250
5250
|
/**
|
|
5251
5251
|
* Used in CreateNodeRequest.
|
|
@@ -5256,17 +5256,17 @@ export interface NodeInterfaceMappingCreateRequest {
|
|
|
5256
5256
|
* Specify one of the logicalInterfaceNames that you created in the Cluster that this node belongs to. For example, my-Inputs-Interface.
|
|
5257
5257
|
* @public
|
|
5258
5258
|
*/
|
|
5259
|
-
LogicalInterfaceName?: string;
|
|
5259
|
+
LogicalInterfaceName?: string | undefined;
|
|
5260
5260
|
/**
|
|
5261
5261
|
* The style of the network -- NAT or BRIDGE.
|
|
5262
5262
|
* @public
|
|
5263
5263
|
*/
|
|
5264
|
-
NetworkInterfaceMode?: NetworkInterfaceMode;
|
|
5264
|
+
NetworkInterfaceMode?: NetworkInterfaceMode | undefined;
|
|
5265
5265
|
/**
|
|
5266
5266
|
* Specify the physical name that corresponds to the logicalInterfaceName that you specified in this interface mapping. For example, Eth1 or ENO1234EXAMPLE.
|
|
5267
5267
|
* @public
|
|
5268
5268
|
*/
|
|
5269
|
-
PhysicalInterfaceName?: string;
|
|
5269
|
+
PhysicalInterfaceName?: string | undefined;
|
|
5270
5270
|
}
|
|
5271
5271
|
/**
|
|
5272
5272
|
* @public
|
|
@@ -5395,42 +5395,42 @@ export interface ReservationResourceSpecification {
|
|
|
5395
5395
|
* Channel class, e.g. 'STANDARD'
|
|
5396
5396
|
* @public
|
|
5397
5397
|
*/
|
|
5398
|
-
ChannelClass?: ChannelClass;
|
|
5398
|
+
ChannelClass?: ChannelClass | undefined;
|
|
5399
5399
|
/**
|
|
5400
5400
|
* Codec, e.g. 'AVC'
|
|
5401
5401
|
* @public
|
|
5402
5402
|
*/
|
|
5403
|
-
Codec?: ReservationCodec;
|
|
5403
|
+
Codec?: ReservationCodec | undefined;
|
|
5404
5404
|
/**
|
|
5405
5405
|
* Maximum bitrate, e.g. 'MAX_20_MBPS'
|
|
5406
5406
|
* @public
|
|
5407
5407
|
*/
|
|
5408
|
-
MaximumBitrate?: ReservationMaximumBitrate;
|
|
5408
|
+
MaximumBitrate?: ReservationMaximumBitrate | undefined;
|
|
5409
5409
|
/**
|
|
5410
5410
|
* Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only)
|
|
5411
5411
|
* @public
|
|
5412
5412
|
*/
|
|
5413
|
-
MaximumFramerate?: ReservationMaximumFramerate;
|
|
5413
|
+
MaximumFramerate?: ReservationMaximumFramerate | undefined;
|
|
5414
5414
|
/**
|
|
5415
5415
|
* Resolution, e.g. 'HD'
|
|
5416
5416
|
* @public
|
|
5417
5417
|
*/
|
|
5418
|
-
Resolution?: ReservationResolution;
|
|
5418
|
+
Resolution?: ReservationResolution | undefined;
|
|
5419
5419
|
/**
|
|
5420
5420
|
* Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
|
|
5421
5421
|
* @public
|
|
5422
5422
|
*/
|
|
5423
|
-
ResourceType?: ReservationResourceType;
|
|
5423
|
+
ResourceType?: ReservationResourceType | undefined;
|
|
5424
5424
|
/**
|
|
5425
5425
|
* Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only)
|
|
5426
5426
|
* @public
|
|
5427
5427
|
*/
|
|
5428
|
-
SpecialFeature?: ReservationSpecialFeature;
|
|
5428
|
+
SpecialFeature?: ReservationSpecialFeature | undefined;
|
|
5429
5429
|
/**
|
|
5430
5430
|
* Video quality, e.g. 'STANDARD' (Outputs only)
|
|
5431
5431
|
* @public
|
|
5432
5432
|
*/
|
|
5433
|
-
VideoQuality?: ReservationVideoQuality;
|
|
5433
|
+
VideoQuality?: ReservationVideoQuality | undefined;
|
|
5434
5434
|
}
|
|
5435
5435
|
/**
|
|
5436
5436
|
* Reserved resources available for purchase
|
|
@@ -5441,57 +5441,57 @@ export interface Offering {
|
|
|
5441
5441
|
* Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
|
|
5442
5442
|
* @public
|
|
5443
5443
|
*/
|
|
5444
|
-
Arn?: string;
|
|
5444
|
+
Arn?: string | undefined;
|
|
5445
5445
|
/**
|
|
5446
5446
|
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
|
|
5447
5447
|
* @public
|
|
5448
5448
|
*/
|
|
5449
|
-
CurrencyCode?: string;
|
|
5449
|
+
CurrencyCode?: string | undefined;
|
|
5450
5450
|
/**
|
|
5451
5451
|
* Lease duration, e.g. '12'
|
|
5452
5452
|
* @public
|
|
5453
5453
|
*/
|
|
5454
|
-
Duration?: number;
|
|
5454
|
+
Duration?: number | undefined;
|
|
5455
5455
|
/**
|
|
5456
5456
|
* Units for duration, e.g. 'MONTHS'
|
|
5457
5457
|
* @public
|
|
5458
5458
|
*/
|
|
5459
|
-
DurationUnits?: OfferingDurationUnits;
|
|
5459
|
+
DurationUnits?: OfferingDurationUnits | undefined;
|
|
5460
5460
|
/**
|
|
5461
5461
|
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
|
|
5462
5462
|
* @public
|
|
5463
5463
|
*/
|
|
5464
|
-
FixedPrice?: number;
|
|
5464
|
+
FixedPrice?: number | undefined;
|
|
5465
5465
|
/**
|
|
5466
5466
|
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
|
|
5467
5467
|
* @public
|
|
5468
5468
|
*/
|
|
5469
|
-
OfferingDescription?: string;
|
|
5469
|
+
OfferingDescription?: string | undefined;
|
|
5470
5470
|
/**
|
|
5471
5471
|
* Unique offering ID, e.g. '87654321'
|
|
5472
5472
|
* @public
|
|
5473
5473
|
*/
|
|
5474
|
-
OfferingId?: string;
|
|
5474
|
+
OfferingId?: string | undefined;
|
|
5475
5475
|
/**
|
|
5476
5476
|
* Offering type, e.g. 'NO_UPFRONT'
|
|
5477
5477
|
* @public
|
|
5478
5478
|
*/
|
|
5479
|
-
OfferingType?: OfferingType;
|
|
5479
|
+
OfferingType?: OfferingType | undefined;
|
|
5480
5480
|
/**
|
|
5481
5481
|
* AWS region, e.g. 'us-west-2'
|
|
5482
5482
|
* @public
|
|
5483
5483
|
*/
|
|
5484
|
-
Region?: string;
|
|
5484
|
+
Region?: string | undefined;
|
|
5485
5485
|
/**
|
|
5486
5486
|
* Resource configuration details
|
|
5487
5487
|
* @public
|
|
5488
5488
|
*/
|
|
5489
|
-
ResourceSpecification?: ReservationResourceSpecification;
|
|
5489
|
+
ResourceSpecification?: ReservationResourceSpecification | undefined;
|
|
5490
5490
|
/**
|
|
5491
5491
|
* Recurring usage charge for each reserved resource, e.g. '157.0'
|
|
5492
5492
|
* @public
|
|
5493
5493
|
*/
|
|
5494
|
-
UsagePrice?: number;
|
|
5494
|
+
UsagePrice?: number | undefined;
|
|
5495
5495
|
}
|
|
5496
5496
|
/**
|
|
5497
5497
|
* @public
|
|
@@ -5596,7 +5596,7 @@ export interface DvbNitSettings {
|
|
|
5596
5596
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
5597
5597
|
* @public
|
|
5598
5598
|
*/
|
|
5599
|
-
RepInterval?: number;
|
|
5599
|
+
RepInterval?: number | undefined;
|
|
5600
5600
|
}
|
|
5601
5601
|
/**
|
|
5602
5602
|
* @public
|
|
@@ -5621,22 +5621,22 @@ export interface DvbSdtSettings {
|
|
|
5621
5621
|
* 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.
|
|
5622
5622
|
* @public
|
|
5623
5623
|
*/
|
|
5624
|
-
OutputSdt?: DvbSdtOutputSdt;
|
|
5624
|
+
OutputSdt?: DvbSdtOutputSdt | undefined;
|
|
5625
5625
|
/**
|
|
5626
5626
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
5627
5627
|
* @public
|
|
5628
5628
|
*/
|
|
5629
|
-
RepInterval?: number;
|
|
5629
|
+
RepInterval?: number | undefined;
|
|
5630
5630
|
/**
|
|
5631
5631
|
* The service name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.
|
|
5632
5632
|
* @public
|
|
5633
5633
|
*/
|
|
5634
|
-
ServiceName?: string;
|
|
5634
|
+
ServiceName?: string | undefined;
|
|
5635
5635
|
/**
|
|
5636
5636
|
* The service provider name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.
|
|
5637
5637
|
* @public
|
|
5638
5638
|
*/
|
|
5639
|
-
ServiceProviderName?: string;
|
|
5639
|
+
ServiceProviderName?: string | undefined;
|
|
5640
5640
|
}
|
|
5641
5641
|
/**
|
|
5642
5642
|
* DVB Time and Date Table (SDT)
|
|
@@ -5647,7 +5647,7 @@ export interface DvbTdtSettings {
|
|
|
5647
5647
|
* The number of milliseconds between instances of this table in the output transport stream.
|
|
5648
5648
|
* @public
|
|
5649
5649
|
*/
|
|
5650
|
-
RepInterval?: number;
|
|
5650
|
+
RepInterval?: number | undefined;
|
|
5651
5651
|
}
|
|
5652
5652
|
/**
|
|
5653
5653
|
* @public
|
|
@@ -5806,207 +5806,207 @@ export interface M2tsSettings {
|
|
|
5806
5806
|
* 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.
|
|
5807
5807
|
* @public
|
|
5808
5808
|
*/
|
|
5809
|
-
AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
|
|
5809
|
+
AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
|
|
5810
5810
|
/**
|
|
5811
5811
|
* When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
|
|
5812
5812
|
* @public
|
|
5813
5813
|
*/
|
|
5814
|
-
Arib?: M2tsArib;
|
|
5814
|
+
Arib?: M2tsArib | undefined;
|
|
5815
5815
|
/**
|
|
5816
5816
|
* 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).
|
|
5817
5817
|
* @public
|
|
5818
5818
|
*/
|
|
5819
|
-
AribCaptionsPid?: string;
|
|
5819
|
+
AribCaptionsPid?: string | undefined;
|
|
5820
5820
|
/**
|
|
5821
5821
|
* 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.
|
|
5822
5822
|
* @public
|
|
5823
5823
|
*/
|
|
5824
|
-
AribCaptionsPidControl?: M2tsAribCaptionsPidControl;
|
|
5824
|
+
AribCaptionsPidControl?: M2tsAribCaptionsPidControl | undefined;
|
|
5825
5825
|
/**
|
|
5826
5826
|
* When set to dvb, uses DVB buffer model for Dolby Digital audio. When set to atsc, the ATSC model is used.
|
|
5827
5827
|
* @public
|
|
5828
5828
|
*/
|
|
5829
|
-
AudioBufferModel?: M2tsAudioBufferModel;
|
|
5829
|
+
AudioBufferModel?: M2tsAudioBufferModel | undefined;
|
|
5830
5830
|
/**
|
|
5831
5831
|
* The number of audio frames to insert for each PES packet.
|
|
5832
5832
|
* @public
|
|
5833
5833
|
*/
|
|
5834
|
-
AudioFramesPerPes?: number;
|
|
5834
|
+
AudioFramesPerPes?: number | undefined;
|
|
5835
5835
|
/**
|
|
5836
5836
|
* Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. 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).
|
|
5837
5837
|
* @public
|
|
5838
5838
|
*/
|
|
5839
|
-
AudioPids?: string;
|
|
5839
|
+
AudioPids?: string | undefined;
|
|
5840
5840
|
/**
|
|
5841
5841
|
* When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87 for EAC3. When set to dvb, uses stream type = 0x06.
|
|
5842
5842
|
* @public
|
|
5843
5843
|
*/
|
|
5844
|
-
AudioStreamType?: M2tsAudioStreamType;
|
|
5844
|
+
AudioStreamType?: M2tsAudioStreamType | undefined;
|
|
5845
5845
|
/**
|
|
5846
5846
|
* The output bitrate of the transport stream in bits per second. Setting to 0 lets the muxer automatically determine the appropriate bitrate.
|
|
5847
5847
|
* @public
|
|
5848
5848
|
*/
|
|
5849
|
-
Bitrate?: number;
|
|
5849
|
+
Bitrate?: number | undefined;
|
|
5850
5850
|
/**
|
|
5851
5851
|
* 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.
|
|
5852
5852
|
* @public
|
|
5853
5853
|
*/
|
|
5854
|
-
BufferModel?: M2tsBufferModel;
|
|
5854
|
+
BufferModel?: M2tsBufferModel | undefined;
|
|
5855
5855
|
/**
|
|
5856
5856
|
* When set to enabled, generates captionServiceDescriptor in PMT.
|
|
5857
5857
|
* @public
|
|
5858
5858
|
*/
|
|
5859
|
-
CcDescriptor?: M2tsCcDescriptor;
|
|
5859
|
+
CcDescriptor?: M2tsCcDescriptor | undefined;
|
|
5860
5860
|
/**
|
|
5861
5861
|
* Inserts DVB Network Information Table (NIT) at the specified table repetition interval.
|
|
5862
5862
|
* @public
|
|
5863
5863
|
*/
|
|
5864
|
-
DvbNitSettings?: DvbNitSettings;
|
|
5864
|
+
DvbNitSettings?: DvbNitSettings | undefined;
|
|
5865
5865
|
/**
|
|
5866
5866
|
* Inserts DVB Service Description Table (SDT) at the specified table repetition interval.
|
|
5867
5867
|
* @public
|
|
5868
5868
|
*/
|
|
5869
|
-
DvbSdtSettings?: DvbSdtSettings;
|
|
5869
|
+
DvbSdtSettings?: DvbSdtSettings | undefined;
|
|
5870
5870
|
/**
|
|
5871
5871
|
* Packet Identifier (PID) for input source DVB Subtitle 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).
|
|
5872
5872
|
* @public
|
|
5873
5873
|
*/
|
|
5874
|
-
DvbSubPids?: string;
|
|
5874
|
+
DvbSubPids?: string | undefined;
|
|
5875
5875
|
/**
|
|
5876
5876
|
* Inserts DVB Time and Date Table (TDT) at the specified table repetition interval.
|
|
5877
5877
|
* @public
|
|
5878
5878
|
*/
|
|
5879
|
-
DvbTdtSettings?: DvbTdtSettings;
|
|
5879
|
+
DvbTdtSettings?: DvbTdtSettings | undefined;
|
|
5880
5880
|
/**
|
|
5881
5881
|
* Packet Identifier (PID) for input source DVB Teletext data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
|
|
5882
5882
|
* @public
|
|
5883
5883
|
*/
|
|
5884
|
-
DvbTeletextPid?: string;
|
|
5884
|
+
DvbTeletextPid?: string | undefined;
|
|
5885
5885
|
/**
|
|
5886
5886
|
* If set to passthrough, passes any EBIF data from the input source to this output.
|
|
5887
5887
|
* @public
|
|
5888
5888
|
*/
|
|
5889
|
-
Ebif?: M2tsEbifControl;
|
|
5889
|
+
Ebif?: M2tsEbifControl | undefined;
|
|
5890
5890
|
/**
|
|
5891
5891
|
* 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.
|
|
5892
5892
|
* @public
|
|
5893
5893
|
*/
|
|
5894
|
-
EbpAudioInterval?: M2tsAudioInterval;
|
|
5894
|
+
EbpAudioInterval?: M2tsAudioInterval | undefined;
|
|
5895
5895
|
/**
|
|
5896
5896
|
* 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.
|
|
5897
5897
|
* @public
|
|
5898
5898
|
*/
|
|
5899
|
-
EbpLookaheadMs?: number;
|
|
5899
|
+
EbpLookaheadMs?: number | undefined;
|
|
5900
5900
|
/**
|
|
5901
5901
|
* 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.
|
|
5902
5902
|
* @public
|
|
5903
5903
|
*/
|
|
5904
|
-
EbpPlacement?: M2tsEbpPlacement;
|
|
5904
|
+
EbpPlacement?: M2tsEbpPlacement | undefined;
|
|
5905
5905
|
/**
|
|
5906
5906
|
* This field is unused and deprecated.
|
|
5907
5907
|
* @public
|
|
5908
5908
|
*/
|
|
5909
|
-
EcmPid?: string;
|
|
5909
|
+
EcmPid?: string | undefined;
|
|
5910
5910
|
/**
|
|
5911
5911
|
* Include or exclude the ES Rate field in the PES header.
|
|
5912
5912
|
* @public
|
|
5913
5913
|
*/
|
|
5914
|
-
EsRateInPes?: M2tsEsRateInPes;
|
|
5914
|
+
EsRateInPes?: M2tsEsRateInPes | undefined;
|
|
5915
5915
|
/**
|
|
5916
5916
|
* 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).
|
|
5917
5917
|
* @public
|
|
5918
5918
|
*/
|
|
5919
|
-
EtvPlatformPid?: string;
|
|
5919
|
+
EtvPlatformPid?: string | undefined;
|
|
5920
5920
|
/**
|
|
5921
5921
|
* Packet Identifier (PID) for input source ETV Signal data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
|
|
5922
5922
|
* @public
|
|
5923
5923
|
*/
|
|
5924
|
-
EtvSignalPid?: string;
|
|
5924
|
+
EtvSignalPid?: string | undefined;
|
|
5925
5925
|
/**
|
|
5926
5926
|
* The length in seconds of each fragment. Only used with EBP markers.
|
|
5927
5927
|
* @public
|
|
5928
5928
|
*/
|
|
5929
|
-
FragmentTime?: number;
|
|
5929
|
+
FragmentTime?: number | undefined;
|
|
5930
5930
|
/**
|
|
5931
5931
|
* If set to passthrough, passes any KLV data from the input source to this output.
|
|
5932
5932
|
* @public
|
|
5933
5933
|
*/
|
|
5934
|
-
Klv?: M2tsKlv;
|
|
5934
|
+
Klv?: M2tsKlv | undefined;
|
|
5935
5935
|
/**
|
|
5936
5936
|
* 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).
|
|
5937
5937
|
* @public
|
|
5938
5938
|
*/
|
|
5939
|
-
KlvDataPids?: string;
|
|
5939
|
+
KlvDataPids?: string | undefined;
|
|
5940
5940
|
/**
|
|
5941
5941
|
* 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.
|
|
5942
5942
|
* @public
|
|
5943
5943
|
*/
|
|
5944
|
-
NielsenId3Behavior?: M2tsNielsenId3Behavior;
|
|
5944
|
+
NielsenId3Behavior?: M2tsNielsenId3Behavior | undefined;
|
|
5945
5945
|
/**
|
|
5946
5946
|
* 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.
|
|
5947
5947
|
* @public
|
|
5948
5948
|
*/
|
|
5949
|
-
NullPacketBitrate?: number;
|
|
5949
|
+
NullPacketBitrate?: number | undefined;
|
|
5950
5950
|
/**
|
|
5951
5951
|
* The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
|
|
5952
5952
|
* @public
|
|
5953
5953
|
*/
|
|
5954
|
-
PatInterval?: number;
|
|
5954
|
+
PatInterval?: number | undefined;
|
|
5955
5955
|
/**
|
|
5956
5956
|
* 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.
|
|
5957
5957
|
* @public
|
|
5958
5958
|
*/
|
|
5959
|
-
PcrControl?: M2tsPcrControl;
|
|
5959
|
+
PcrControl?: M2tsPcrControl | undefined;
|
|
5960
5960
|
/**
|
|
5961
5961
|
* Maximum time in milliseconds between Program Clock Reference (PCRs) inserted into the transport stream.
|
|
5962
5962
|
* @public
|
|
5963
5963
|
*/
|
|
5964
|
-
PcrPeriod?: number;
|
|
5964
|
+
PcrPeriod?: number | undefined;
|
|
5965
5965
|
/**
|
|
5966
5966
|
* Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
|
|
5967
5967
|
* @public
|
|
5968
5968
|
*/
|
|
5969
|
-
PcrPid?: string;
|
|
5969
|
+
PcrPid?: string | undefined;
|
|
5970
5970
|
/**
|
|
5971
5971
|
* The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
|
|
5972
5972
|
* @public
|
|
5973
5973
|
*/
|
|
5974
|
-
PmtInterval?: number;
|
|
5974
|
+
PmtInterval?: number | undefined;
|
|
5975
5975
|
/**
|
|
5976
5976
|
* Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
|
|
5977
5977
|
* @public
|
|
5978
5978
|
*/
|
|
5979
|
-
PmtPid?: string;
|
|
5979
|
+
PmtPid?: string | undefined;
|
|
5980
5980
|
/**
|
|
5981
5981
|
* The value of the program number field in the Program Map Table.
|
|
5982
5982
|
* @public
|
|
5983
5983
|
*/
|
|
5984
|
-
ProgramNum?: number;
|
|
5984
|
+
ProgramNum?: number | undefined;
|
|
5985
5985
|
/**
|
|
5986
5986
|
* 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.
|
|
5987
5987
|
* @public
|
|
5988
5988
|
*/
|
|
5989
|
-
RateMode?: M2tsRateMode;
|
|
5989
|
+
RateMode?: M2tsRateMode | undefined;
|
|
5990
5990
|
/**
|
|
5991
5991
|
* 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).
|
|
5992
5992
|
* @public
|
|
5993
5993
|
*/
|
|
5994
|
-
Scte27Pids?: string;
|
|
5994
|
+
Scte27Pids?: string | undefined;
|
|
5995
5995
|
/**
|
|
5996
5996
|
* Optionally pass SCTE-35 signals from the input source to this output.
|
|
5997
5997
|
* @public
|
|
5998
5998
|
*/
|
|
5999
|
-
Scte35Control?: M2tsScte35Control;
|
|
5999
|
+
Scte35Control?: M2tsScte35Control | undefined;
|
|
6000
6000
|
/**
|
|
6001
6001
|
* 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).
|
|
6002
6002
|
* @public
|
|
6003
6003
|
*/
|
|
6004
|
-
Scte35Pid?: string;
|
|
6004
|
+
Scte35Pid?: string | undefined;
|
|
6005
6005
|
/**
|
|
6006
6006
|
* 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.
|
|
6007
6007
|
* @public
|
|
6008
6008
|
*/
|
|
6009
|
-
SegmentationMarkers?: M2tsSegmentationMarkers;
|
|
6009
|
+
SegmentationMarkers?: M2tsSegmentationMarkers | undefined;
|
|
6010
6010
|
/**
|
|
6011
6011
|
* 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.
|
|
6012
6012
|
*
|
|
@@ -6015,37 +6015,37 @@ export interface M2tsSettings {
|
|
|
6015
6015
|
* 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.
|
|
6016
6016
|
* @public
|
|
6017
6017
|
*/
|
|
6018
|
-
SegmentationStyle?: M2tsSegmentationStyle;
|
|
6018
|
+
SegmentationStyle?: M2tsSegmentationStyle | undefined;
|
|
6019
6019
|
/**
|
|
6020
6020
|
* The length in seconds of each segment. Required unless markers is set to _none_.
|
|
6021
6021
|
* @public
|
|
6022
6022
|
*/
|
|
6023
|
-
SegmentationTime?: number;
|
|
6023
|
+
SegmentationTime?: number | undefined;
|
|
6024
6024
|
/**
|
|
6025
6025
|
* When set to passthrough, timed metadata will be passed through from input to output.
|
|
6026
6026
|
* @public
|
|
6027
6027
|
*/
|
|
6028
|
-
TimedMetadataBehavior?: M2tsTimedMetadataBehavior;
|
|
6028
|
+
TimedMetadataBehavior?: M2tsTimedMetadataBehavior | undefined;
|
|
6029
6029
|
/**
|
|
6030
6030
|
* 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).
|
|
6031
6031
|
* @public
|
|
6032
6032
|
*/
|
|
6033
|
-
TimedMetadataPid?: string;
|
|
6033
|
+
TimedMetadataPid?: string | undefined;
|
|
6034
6034
|
/**
|
|
6035
6035
|
* The value of the transport stream ID field in the Program Map Table.
|
|
6036
6036
|
* @public
|
|
6037
6037
|
*/
|
|
6038
|
-
TransportStreamId?: number;
|
|
6038
|
+
TransportStreamId?: number | undefined;
|
|
6039
6039
|
/**
|
|
6040
6040
|
* Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
|
|
6041
6041
|
* @public
|
|
6042
6042
|
*/
|
|
6043
|
-
VideoPid?: string;
|
|
6043
|
+
VideoPid?: string | undefined;
|
|
6044
6044
|
/**
|
|
6045
6045
|
* Defines the amount SCTE-35 preroll will be increased (in milliseconds) on the output. Preroll is the amount of time between the presence of a SCTE-35 indication in a transport stream and the PTS of the video frame it references. Zero means don't add pullup (it doesn't mean set the preroll to zero). Negative pullup is not supported, which means that you can't make the preroll shorter. Be aware that latency in the output will increase by the pullup amount.
|
|
6046
6046
|
* @public
|
|
6047
6047
|
*/
|
|
6048
|
-
Scte35PrerollPullupMilliseconds?: number;
|
|
6048
|
+
Scte35PrerollPullupMilliseconds?: number | undefined;
|
|
6049
6049
|
}
|
|
6050
6050
|
/**
|
|
6051
6051
|
* Raw Settings
|
|
@@ -6062,12 +6062,12 @@ export interface ArchiveContainerSettings {
|
|
|
6062
6062
|
* M2ts Settings
|
|
6063
6063
|
* @public
|
|
6064
6064
|
*/
|
|
6065
|
-
M2tsSettings?: M2tsSettings;
|
|
6065
|
+
M2tsSettings?: M2tsSettings | undefined;
|
|
6066
6066
|
/**
|
|
6067
6067
|
* Raw Settings
|
|
6068
6068
|
* @public
|
|
6069
6069
|
*/
|
|
6070
|
-
RawSettings?: RawSettings;
|
|
6070
|
+
RawSettings?: RawSettings | undefined;
|
|
6071
6071
|
}
|
|
6072
6072
|
/**
|
|
6073
6073
|
* Archive Output Settings
|
|
@@ -6083,12 +6083,12 @@ export interface ArchiveOutputSettings {
|
|
|
6083
6083
|
* Output file extension. If excluded, this will be auto-selected from the container type.
|
|
6084
6084
|
* @public
|
|
6085
6085
|
*/
|
|
6086
|
-
Extension?: string;
|
|
6086
|
+
Extension?: string | undefined;
|
|
6087
6087
|
/**
|
|
6088
6088
|
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
|
|
6089
6089
|
* @public
|
|
6090
6090
|
*/
|
|
6091
|
-
NameModifier?: string;
|
|
6091
|
+
NameModifier?: string | undefined;
|
|
6092
6092
|
}
|
|
6093
6093
|
/**
|
|
6094
6094
|
* Cmaf Ingest Output Settings
|
|
@@ -6099,5 +6099,5 @@ export interface CmafIngestOutputSettings {
|
|
|
6099
6099
|
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
|
|
6100
6100
|
* @public
|
|
6101
6101
|
*/
|
|
6102
|
-
NameModifier?: string;
|
|
6102
|
+
NameModifier?: string | undefined;
|
|
6103
6103
|
}
|