#[non_exhaustive]pub struct CreateLowLatencyHlsManifestConfiguration {
pub manifest_name: String,
pub child_manifest_name: Option<String>,
pub scte_hls: Option<ScteHls>,
pub manifest_window_seconds: Option<i32>,
pub program_date_time_interval_seconds: Option<i32>,
pub filter_configuration: Option<FilterConfiguration>,
}
Expand description
Create a low-latency HTTP live streaming (HLS) manifest configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.manifest_name: String
A short short string that's appended to the endpoint URL. The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index. MediaPackage automatically inserts the format extension, such as .m3u8. You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.
child_manifest_name: Option<String>
A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.
scte_hls: Option<ScteHls>
The SCTE configuration.
manifest_window_seconds: Option<i32>
The total duration (in seconds) of the manifest's content.
program_date_time_interval_seconds: Option<i32>
Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.
Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.
filter_configuration: Option<FilterConfiguration>
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
Implementations§
source§impl CreateLowLatencyHlsManifestConfiguration
impl CreateLowLatencyHlsManifestConfiguration
sourcepub fn manifest_name(&self) -> &str
pub fn manifest_name(&self) -> &str
A short short string that's appended to the endpoint URL. The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index. MediaPackage automatically inserts the format extension, such as .m3u8. You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.
sourcepub fn child_manifest_name(&self) -> Option<&str>
pub fn child_manifest_name(&self) -> Option<&str>
A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index, with an added suffix to distinguish it from the manifest name. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.
sourcepub fn manifest_window_seconds(&self) -> Option<i32>
pub fn manifest_window_seconds(&self) -> Option<i32>
The total duration (in seconds) of the manifest's content.
sourcepub fn program_date_time_interval_seconds(&self) -> Option<i32>
pub fn program_date_time_interval_seconds(&self) -> Option<i32>
Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.
Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.
sourcepub fn filter_configuration(&self) -> Option<&FilterConfiguration>
pub fn filter_configuration(&self) -> Option<&FilterConfiguration>
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
source§impl CreateLowLatencyHlsManifestConfiguration
impl CreateLowLatencyHlsManifestConfiguration
sourcepub fn builder() -> CreateLowLatencyHlsManifestConfigurationBuilder
pub fn builder() -> CreateLowLatencyHlsManifestConfigurationBuilder
Creates a new builder-style object to manufacture CreateLowLatencyHlsManifestConfiguration
.
Trait Implementations§
source§impl Clone for CreateLowLatencyHlsManifestConfiguration
impl Clone for CreateLowLatencyHlsManifestConfiguration
source§fn clone(&self) -> CreateLowLatencyHlsManifestConfiguration
fn clone(&self) -> CreateLowLatencyHlsManifestConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateLowLatencyHlsManifestConfiguration
impl PartialEq for CreateLowLatencyHlsManifestConfiguration
source§fn eq(&self, other: &CreateLowLatencyHlsManifestConfiguration) -> bool
fn eq(&self, other: &CreateLowLatencyHlsManifestConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.