interface HlsPlaylistSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnChannelPropsMixin.HlsPlaylistSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnChannelPropsMixin_HlsPlaylistSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnChannelPropsMixin.HlsPlaylistSettingsProperty |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnChannelPropsMixin.HlsPlaylistSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnChannelPropsMixin » 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 { mixins as mediatailor_mixins } from '@aws-cdk/mixins-preview/aws-mediatailor';
const hlsPlaylistSettingsProperty: mediatailor_mixins.CfnChannelPropsMixin.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