Struct aws_sdk_mediapackage::model::hls_package::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for HlsPackage
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn ad_markers(self, input: AdMarkers) -> Self
pub fn ad_markers(self, input: AdMarkers) -> Self
This setting controls how ad markers are included in the packaged OriginEndpoint. “NONE” will omit all SCTE-35 ad markers from the output. “PASSTHROUGH” causes the manifest to contain a copy of the SCTE-35 ad markers (comments) taken directly from the input HTTP Live Streaming (HLS) manifest. “SCTE35_ENHANCED” generates ad markers and blackout tags based on SCTE-35 messages in the input source. “DATERANGE” inserts EXT-X-DATERANGE tags to signal ad and program transition events in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value that is greater than 0.
sourcepub fn set_ad_markers(self, input: Option<AdMarkers>) -> Self
pub fn set_ad_markers(self, input: Option<AdMarkers>) -> Self
This setting controls how ad markers are included in the packaged OriginEndpoint. “NONE” will omit all SCTE-35 ad markers from the output. “PASSTHROUGH” causes the manifest to contain a copy of the SCTE-35 ad markers (comments) taken directly from the input HTTP Live Streaming (HLS) manifest. “SCTE35_ENHANCED” generates ad markers and blackout tags based on SCTE-35 messages in the input source. “DATERANGE” inserts EXT-X-DATERANGE tags to signal ad and program transition events in HLS and CMAF manifests. For this option, you must set a programDateTimeIntervalSeconds value that is greater than 0.
sourcepub fn ad_triggers(self, input: AdTriggersElement) -> Self
pub fn ad_triggers(self, input: AdTriggersElement) -> Self
Appends an item to ad_triggers
.
To override the contents of this collection use set_ad_triggers
.
A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no ad markers are output. Specify multiple items to create ad markers for all of the included message types.
sourcepub fn set_ad_triggers(self, input: Option<Vec<AdTriggersElement>>) -> Self
pub fn set_ad_triggers(self, input: Option<Vec<AdTriggersElement>>) -> Self
A list of SCTE-35 message types that are treated as ad markers in the output. If empty, no ad markers are output. Specify multiple items to create ad markers for all of the included message types.
sourcepub fn ads_on_delivery_restrictions(
self,
input: AdsOnDeliveryRestrictions
) -> Self
pub fn ads_on_delivery_restrictions(
self,
input: AdsOnDeliveryRestrictions
) -> Self
This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to determine whether a message signals an ad. Choosing “NONE” means no SCTE-35 messages become ads. Choosing “RESTRICTED” means SCTE-35 messages of the types specified in AdTriggers that contain delivery restrictions will be treated as ads. Choosing “UNRESTRICTED” means SCTE-35 messages of the types specified in AdTriggers that do not contain delivery restrictions will be treated as ads. Choosing “BOTH” means all SCTE-35 messages of the types specified in AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags and are always treated as ads if specified in AdTriggers.
sourcepub fn set_ads_on_delivery_restrictions(
self,
input: Option<AdsOnDeliveryRestrictions>
) -> Self
pub fn set_ads_on_delivery_restrictions(
self,
input: Option<AdsOnDeliveryRestrictions>
) -> Self
This setting allows the delivery restriction flags on SCTE-35 segmentation descriptors to determine whether a message signals an ad. Choosing “NONE” means no SCTE-35 messages become ads. Choosing “RESTRICTED” means SCTE-35 messages of the types specified in AdTriggers that contain delivery restrictions will be treated as ads. Choosing “UNRESTRICTED” means SCTE-35 messages of the types specified in AdTriggers that do not contain delivery restrictions will be treated as ads. Choosing “BOTH” means all SCTE-35 messages of the types specified in AdTriggers will be treated as ads. Note that Splice Insert messages do not have these flags and are always treated as ads if specified in AdTriggers.
sourcepub fn encryption(self, input: HlsEncryption) -> Self
pub fn encryption(self, input: HlsEncryption) -> Self
An HTTP Live Streaming (HLS) encryption configuration.
sourcepub fn set_encryption(self, input: Option<HlsEncryption>) -> Self
pub fn set_encryption(self, input: Option<HlsEncryption>) -> Self
An HTTP Live Streaming (HLS) encryption configuration.
sourcepub fn include_dvb_subtitles(self, input: bool) -> Self
pub fn include_dvb_subtitles(self, input: bool) -> Self
When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
sourcepub fn set_include_dvb_subtitles(self, input: Option<bool>) -> Self
pub fn set_include_dvb_subtitles(self, input: Option<bool>) -> Self
When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
sourcepub fn include_iframe_only_stream(self, input: bool) -> Self
pub fn include_iframe_only_stream(self, input: bool) -> Self
When enabled, an I-Frame only stream will be included in the output.
sourcepub fn set_include_iframe_only_stream(self, input: Option<bool>) -> Self
pub fn set_include_iframe_only_stream(self, input: Option<bool>) -> Self
When enabled, an I-Frame only stream will be included in the output.
sourcepub fn playlist_type(self, input: PlaylistType) -> Self
pub fn playlist_type(self, input: PlaylistType) -> Self
The HTTP Live Streaming (HLS) playlist type. When either “EVENT” or “VOD” is specified, a corresponding EXT-X-PLAYLIST-TYPE entry will be included in the media playlist.
sourcepub fn set_playlist_type(self, input: Option<PlaylistType>) -> Self
pub fn set_playlist_type(self, input: Option<PlaylistType>) -> Self
The HTTP Live Streaming (HLS) playlist type. When either “EVENT” or “VOD” is specified, a corresponding EXT-X-PLAYLIST-TYPE entry will be included in the media playlist.
sourcepub fn playlist_window_seconds(self, input: i32) -> Self
pub fn playlist_window_seconds(self, input: i32) -> Self
Time window (in seconds) contained in each parent manifest.
sourcepub fn set_playlist_window_seconds(self, input: Option<i32>) -> Self
pub fn set_playlist_window_seconds(self, input: Option<i32>) -> Self
Time window (in seconds) contained in each parent manifest.
sourcepub fn program_date_time_interval_seconds(self, input: i32) -> Self
pub fn program_date_time_interval_seconds(self, input: i32) -> Self
The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag inserted into manifests. Additionally, when an interval is specified ID3Timed Metadata messages will be generated every 5 seconds using the ingest time of the content. If the interval is not specified, or set to 0, then no EXT-X-PROGRAM-DATE-TIME tags will be inserted into manifests and no ID3Timed Metadata messages will be generated. Note that irrespective of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input, it will be passed through to HLS output.
sourcepub fn set_program_date_time_interval_seconds(self, input: Option<i32>) -> Self
pub fn set_program_date_time_interval_seconds(self, input: Option<i32>) -> Self
The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag inserted into manifests. Additionally, when an interval is specified ID3Timed Metadata messages will be generated every 5 seconds using the ingest time of the content. If the interval is not specified, or set to 0, then no EXT-X-PROGRAM-DATE-TIME tags will be inserted into manifests and no ID3Timed Metadata messages will be generated. Note that irrespective of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input, it will be passed through to HLS output.
sourcepub fn segment_duration_seconds(self, input: i32) -> Self
pub fn segment_duration_seconds(self, input: i32) -> Self
Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source fragment duration.
sourcepub fn set_segment_duration_seconds(self, input: Option<i32>) -> Self
pub fn set_segment_duration_seconds(self, input: Option<i32>) -> Self
Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source fragment duration.
sourcepub fn stream_selection(self, input: StreamSelection) -> Self
pub fn stream_selection(self, input: StreamSelection) -> Self
A StreamSelection configuration.
sourcepub fn set_stream_selection(self, input: Option<StreamSelection>) -> Self
pub fn set_stream_selection(self, input: Option<StreamSelection>) -> Self
A StreamSelection configuration.
sourcepub fn use_audio_rendition_group(self, input: bool) -> Self
pub fn use_audio_rendition_group(self, input: bool) -> Self
When enabled, audio streams will be placed in rendition groups in the output.
sourcepub fn set_use_audio_rendition_group(self, input: Option<bool>) -> Self
pub fn set_use_audio_rendition_group(self, input: Option<bool>) -> Self
When enabled, audio streams will be placed in rendition groups in the output.
sourcepub fn build(self) -> HlsPackage
pub fn build(self) -> HlsPackage
Consumes the builder and constructs a HlsPackage
.