interface DashPlaylistSettingsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaTailor.CfnChannel.DashPlaylistSettingsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnChannel_DashPlaylistSettingsProperty |
![]() | software.amazon.awscdk.services.mediatailor.CfnChannel.DashPlaylistSettingsProperty |
![]() | aws_cdk.aws_mediatailor.CfnChannel.DashPlaylistSettingsProperty |
![]() | aws-cdk-lib » aws_mediatailor » CfnChannel » DashPlaylistSettingsProperty |
Dash manifest 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 dashPlaylistSettingsProperty: mediatailor.CfnChannel.DashPlaylistSettingsProperty = {
manifestWindowSeconds: 123,
minBufferTimeSeconds: 123,
minUpdatePeriodSeconds: 123,
suggestedPresentationDelaySeconds: 123,
};
Properties
Name | Type | Description |
---|---|---|
manifest | number | The total duration (in seconds) of each manifest. |
min | number | Minimum amount of content (measured in seconds) that a player must keep available in the buffer. |
min | number | Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. |
suggested | number | Amount of time (in seconds) that the player should be from the live point at the end of the manifest. |
manifestWindowSeconds?
Type:
number
(optional)
The total duration (in seconds) of each manifest.
Minimum value: 30
seconds. Maximum value: 3600
seconds.
minBufferTimeSeconds?
Type:
number
(optional)
Minimum amount of content (measured in seconds) that a player must keep available in the buffer.
Minimum value: 2
seconds. Maximum value: 60
seconds.
minUpdatePeriodSeconds?
Type:
number
(optional)
Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.
Minimum value: 2
seconds. Maximum value: 60
seconds.
suggestedPresentationDelaySeconds?
Type:
number
(optional)
Amount of time (in seconds) that the player should be from the live point at the end of the manifest.
Minimum value: 2
seconds. Maximum value: 60
seconds.