interface HlsPlaylistSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnChannel.HlsPlaylistSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnChannel_HlsPlaylistSettingsProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnChannel.HlsPlaylistSettingsProperty |
Python | aws_cdk.aws_mediatailor.CfnChannel.HlsPlaylistSettingsProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnChannel » HlsPlaylistSettingsProperty |
HLS playlist configuration parameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const hlsPlaylistSettingsProperty: mediatailor.CfnChannel.HlsPlaylistSettingsProperty = {
adMarkupType: ['adMarkupType'],
manifestWindowSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ad | string[] | Determines the type of SCTE 35 tags to use in ad markup. |
| manifest | number | The total duration (in seconds) of each manifest. |
adMarkupType?
Type:
string[]
(optional)
Determines the type of SCTE 35 tags to use in ad markup.
Specify DATERANGE to use DATERANGE tags (for live or VOD content). Specify SCTE35_ENHANCED to use EXT-X-CUE-OUT and EXT-X-CUE-IN tags (for VOD content only).
manifestWindowSeconds?
Type:
number
(optional)
The total duration (in seconds) of each manifest.
Minimum value: 30 seconds. Maximum value: 3600 seconds.

.NET
Go
Java
Python
TypeScript