Interface CfnChannel.HlsBasicPutSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.HlsBasicPutSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.HlsBasicPutSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of HLS Basic Put Settings.
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.*; HlsBasicPutSettingsProperty hlsBasicPutSettingsProperty = HlsBasicPutSettingsProperty.builder() .connectionRetryInterval(123) .filecacheDuration(123) .numRetries(123) .restartDelay(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.HlsBasicPutSettingsProperty
static final class
An implementation forCfnChannel.HlsBasicPutSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.default Number
The size, in seconds, of the file cache for streaming outputs.default Number
The number of retry attempts that MediaLive makes before the channel is put into an error state.default Number
If 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. -
getFilecacheDuration
The size, in seconds, of the file cache for streaming outputs. -
getNumRetries
The number of retry attempts that MediaLive makes before the channel is put into an error state. -
getRestartDelay
If a streaming output fails, the number of seconds to wait until a restart is initiated.A value of 0 means never restart.
-
builder
-