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();
 
  • Method Details

    • getConnectionRetryInterval

      @Stability(Experimental) @Nullable default Number getConnectionRetryInterval()
      (experimental) The number of seconds to wait before retrying a connection to the CDN.

      Default: 1

    • getFilecacheDuration

      @Stability(Experimental) @Nullable default Duration getFilecacheDuration()
      (experimental) The size of the file cache for streaming outputs.

      Default: Duration.seconds(300)

    • getHttpTransferMode

      @Stability(Experimental) @Nullable default HttpTransferMode getHttpTransferMode()
      (experimental) Specifies whether to use chunked transfer encoding.

      Default: HttpTransferMode.NON_CHUNKED

    • getNumRetries

      @Stability(Experimental) @Nullable default Number getNumRetries()
      (experimental) The number of retry attempts.

      Default: 10

    • getRestartDelay

      @Stability(Experimental) @Nullable default Number getRestartDelay()
      (experimental) The number of seconds to wait before restarting after a failure.

      Default: 1

    • builder

      @Stability(Experimental) static HlsWebdavCdnProps.Builder builder()
      Returns:
      a HlsWebdavCdnProps.Builder of HlsWebdavCdnProps