Interface CfnChannel.DashPlaylistSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.DashPlaylistSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.DashPlaylistSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediatailor.*;
DashPlaylistSettingsProperty dashPlaylistSettingsProperty = DashPlaylistSettingsProperty.builder()
.manifestWindowSeconds(123)
.minBufferTimeSeconds(123)
.minUpdatePeriodSeconds(123)
.suggestedPresentationDelaySeconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.DashPlaylistSettingsPropertystatic final classAn implementation forCfnChannel.DashPlaylistSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe total duration (in seconds) of each manifest.default NumberMinimum amount of content (measured in seconds) that a player must keep available in the buffer.default NumberMinimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.default NumberAmount of time (in seconds) that the player should be from the live point at the end of the manifest.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifestWindowSeconds
The total duration (in seconds) of each manifest.Minimum value:
30seconds. Maximum value:3600seconds.- See Also:
-
getMinBufferTimeSeconds
Minimum amount of content (measured in seconds) that a player must keep available in the buffer.Minimum value:
2seconds. Maximum value:60seconds.- See Also:
-
getMinUpdatePeriodSeconds
Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.Minimum value:
2seconds. Maximum value:60seconds.- See Also:
-
getSuggestedPresentationDelaySeconds
Amount of time (in seconds) that the player should be from the live point at the end of the manifest.Minimum value:
2seconds. Maximum value:60seconds.- See Also:
-
builder
-