Interface CfnChannel.HlsInputSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.HlsInputSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.HlsInputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Information about how to connect to the upstream system.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.HlsInputSettingsProperty
static final class
An implementation forCfnChannel.HlsInputSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
When specified, the HLS stream with the m3u8 bandwidth that most closely matches this value is chosen.default Number
When specified, reading of the HLS input begins this many buffer segments from the end (most recently written segment).default Number
The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.default Number
The number of seconds between retries when an attempt to read a manifest or segment fails.default String
Identifies the source for the SCTE-35 messages that MediaLive will ingest.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBandwidth
When specified, the HLS stream with the m3u8 bandwidth that most closely matches this value is chosen.Otherwise, the highest bandwidth stream in the m3u8 is chosen. The bitrate is specified in bits per second, as in an HLS manifest.
- See Also:
-
getBufferSegments
When specified, reading of the HLS input begins this many buffer segments from the end (most recently written segment).When not specified, the HLS input begins with the first segment specified in the m3u8.
- See Also:
-
getRetries
The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.- See Also:
-
getRetryInterval
The number of seconds between retries when an attempt to read a manifest or segment fails.- See Also:
-
getScte35Source
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.
- See Also:
-
builder
-