@Stability(value=Stable)
public static interface CfnChannel.HlsInputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 Number |
getBandwidth()
When specified, the HLS stream with the m3u8 bandwidth that most closely matches this value is chosen.
|
default Number |
getBufferSegments()
When specified, reading of the HLS input begins this many buffer segments from the end (most recently written segment).
|
default Number |
getRetries()
The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.
|
default Number |
getRetryInterval()
The number of seconds between retries when an attempt to read a manifest or segment fails.
|
default String |
getScte35Source()
Identifies the source for the SCTE-35 messages that MediaLive will ingest.
|
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default Number getBufferSegments()
When not specified, the HLS input begins with the first segment specified in the m3u8.
@Stability(value=Stable) @Nullable default Number getRetries()
@Stability(value=Stable) @Nullable default Number getRetryInterval()
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) static CfnChannel.HlsInputSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.