Interface HlsWebdavCdnProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HlsWebdavCdnProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.146Z")
@Stability(Experimental)
public interface HlsWebdavCdnProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for HLS WebDAV CDN settings.
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.alpha.*;
import software.amazon.awscdk.*;
HttpTransferMode httpTransferMode;
HlsWebdavCdnProps hlsWebdavCdnProps = HlsWebdavCdnProps.builder()
.connectionRetryInterval(123)
.filecacheDuration(Duration.minutes(30))
.httpTransferMode(httpTransferMode)
.numRetries(123)
.restartDelay(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHlsWebdavCdnPropsstatic final classAn implementation forHlsWebdavCdnProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HlsWebdavCdnProps.Builderbuilder()default Number(experimental) The number of seconds to wait before retrying a connection to the CDN.default Duration(experimental) The size of the file cache for streaming outputs.default HttpTransferMode(experimental) Specifies whether to use chunked transfer encoding.default Number(experimental) The number of retry attempts.default Number(experimental) The number of seconds to wait before restarting after a failure.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionRetryInterval
(experimental) The number of seconds to wait before retrying a connection to the CDN.Default: 1
-
getFilecacheDuration
(experimental) The size of the file cache for streaming outputs.Default: Duration.seconds(300)
-
getHttpTransferMode
(experimental) Specifies whether to use chunked transfer encoding.Default: HttpTransferMode.NON_CHUNKED
-
getNumRetries
(experimental) The number of retry attempts.Default: 10
-
getRestartDelay
(experimental) The number of seconds to wait before restarting after a failure.Default: 1
-
builder
- Returns:
- a
HlsWebdavCdnProps.BuilderofHlsWebdavCdnProps
-