#[non_exhaustive]pub struct GetHlsManifestConfiguration {
pub manifest_name: String,
pub url: String,
pub child_manifest_name: Option<String>,
pub manifest_window_seconds: Option<i32>,
pub program_date_time_interval_seconds: Option<i32>,
pub scte_hls: Option<ScteHls>,
pub filter_configuration: Option<FilterConfiguration>,
}
Expand description
Retrieve the 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.
url: String
The egress domain URL for stream delivery from MediaPackage.
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 child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.
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.
scte_hls: Option<ScteHls>
The SCTE configuration.
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 GetHlsManifestConfiguration
impl GetHlsManifestConfiguration
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 child manifest name, index_1. 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 GetHlsManifestConfiguration
impl GetHlsManifestConfiguration
sourcepub fn builder() -> GetHlsManifestConfigurationBuilder
pub fn builder() -> GetHlsManifestConfigurationBuilder
Creates a new builder-style object to manufacture GetHlsManifestConfiguration
.
Trait Implementations§
source§impl Clone for GetHlsManifestConfiguration
impl Clone for GetHlsManifestConfiguration
source§fn clone(&self) -> GetHlsManifestConfiguration
fn clone(&self) -> GetHlsManifestConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetHlsManifestConfiguration
impl Debug for GetHlsManifestConfiguration
source§impl PartialEq for GetHlsManifestConfiguration
impl PartialEq for GetHlsManifestConfiguration
source§fn eq(&self, other: &GetHlsManifestConfiguration) -> bool
fn eq(&self, other: &GetHlsManifestConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.