public static interface CfnChannel.HlsInputSettingsProperty
The parent of this entity is NetworkInputSettings.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.medialive.*; HlsInputSettingsProperty hlsInputSettingsProperty = HlsInputSettingsProperty.builder() .bandwidth(123) .bufferSegments(123) .retries(123) .retryInterval(123) .scte35Source("scte35Source") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.HlsInputSettingsProperty.Builder
A builder for
CfnChannel.HlsInputSettingsProperty |
static class |
CfnChannel.HlsInputSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.HlsInputSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.HlsInputSettingsProperty.Builder |
builder() |
default java.lang.Number |
getBandwidth()
When specified, the HLS stream with the m3u8 bandwidth that most closely matches this value is chosen.
|
default java.lang.Number |
getBufferSegments()
When specified, reading of the HLS input begins this many buffer segments from the end (most recently written segment).
|
default java.lang.Number |
getRetries()
The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.
|
default java.lang.Number |
getRetryInterval()
The number of seconds between retries when an attempt to read a manifest or segment fails.
|
default java.lang.String |
getScte35Source()
Identifies the source for the SCTE-35 messages that MediaLive will ingest.
|
default java.lang.Number getBandwidth()
Otherwise, the highest bandwidth stream in the m3u8 is chosen. The bitrate is specified in bits per second, as in an HLS manifest.
default java.lang.Number getBufferSegments()
When not specified, the HLS input begins with the first segment specified in the m3u8.
default java.lang.Number getRetries()
default java.lang.Number getRetryInterval()
default java.lang.String getScte35Source()
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.
static CfnChannel.HlsInputSettingsProperty.Builder builder()