Interface HlsBasicPutCdnProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HlsBasicPutCdnProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.121Z")
@Stability(Experimental)
public interface HlsBasicPutCdnProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for HLS Basic PUT 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.*;
HlsBasicPutCdnProps hlsBasicPutCdnProps = HlsBasicPutCdnProps.builder()
.connectionRetryInterval(123)
.filecacheDuration(Duration.minutes(30))
.numRetries(123)
.restartDelay(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHlsBasicPutCdnPropsstatic final classAn implementation forHlsBasicPutCdnProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HlsBasicPutCdnProps.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 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)
-
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
HlsBasicPutCdnProps.BuilderofHlsBasicPutCdnProps
-