aws-cdk-lib.aws_medialive.CfnChannel.HlsInputSettingsProperty

interface HlsInputSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.HlsInputSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_HlsInputSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.HlsInputSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.HlsInputSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » HlsInputSettingsProperty

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const hlsInputSettingsProperty: medialive.CfnChannel.HlsInputSettingsProperty = {
  bandwidth: 123,
  bufferSegments: 123,
  retries: 123,
  retryInterval: 123,
  scte35Source: 'scte35Source',
};

Properties

NameTypeDescription
bandwidth?numberWhen specified, the HLS stream with the m3u8 bandwidth that most closely matches this value is chosen.
bufferSegments?numberWhen specified, reading of the HLS input begins this many buffer segments from the end (most recently written segment).
retries?numberThe number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.
retryInterval?numberThe number of seconds between retries when an attempt to read a manifest or segment fails.
scte35Source?stringIdentifies the source for the SCTE-35 messages that MediaLive will ingest.

bandwidth?

Type: number (optional)

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.


bufferSegments?

Type: number (optional)

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.


retries?

Type: number (optional)

The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.


retryInterval?

Type: number (optional)

The number of seconds between retries when an attempt to read a manifest or segment fails.


scte35Source?

Type: string (optional)

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.