Interface CfnChannel.HlsMediaStoreSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.HlsMediaStoreSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.HlsMediaStoreSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of a MediaStore container as the destination for an HLS output.
The parent of this entity is HlsCdnSettings.
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.medialive.*;
HlsMediaStoreSettingsProperty hlsMediaStoreSettingsProperty = HlsMediaStoreSettingsProperty.builder()
.connectionRetryInterval(123)
.filecacheDuration(123)
.mediaStoreStorageClass("mediaStoreStorageClass")
.numRetries(123)
.restartDelay(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.HlsMediaStoreSettingsPropertystatic final classAn implementation forCfnChannel.HlsMediaStoreSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe number of seconds to wait before retrying a connection to the CDN if the connection is lost.default NumberThe size, in seconds, of the file cache for streaming outputs.default StringWhen set to temporal, output files are stored in non-persistent memory for faster reading and writing.default NumberThe number of retry attempts that are made before the channel is put into an error state.default NumberIf a streaming output fails, the number of seconds to wait until a restart is initiated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionRetryInterval
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.- See Also:
-
getFilecacheDuration
The size, in seconds, of the file cache for streaming outputs.- See Also:
-
getMediaStoreStorageClass
When set to temporal, output files are stored in non-persistent memory for faster reading and writing.- See Also:
-
getNumRetries
The number of retry attempts that are made before the channel is put into an error state.- See Also:
-
getRestartDelay
If a streaming output fails, the number of seconds to wait until a restart is initiated.A value of 0 means never restart.
- See Also:
-
builder
-