interface HlsWebdavCdnProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsWebdavCdnProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsWebdavCdnProps |
Java | software.amazon.awscdk.services.medialive.alpha.HlsWebdavCdnProps |
Python | aws_cdk.aws_medialive_alpha.HlsWebdavCdnProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsWebdavCdnProps |
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 * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
declare const httpTransferMode: medialive_alpha.HttpTransferMode;
const hlsWebdavCdnProps: medialive_alpha.HlsWebdavCdnProps = {
connectionRetryInterval: 123,
filecacheDuration: cdk.Duration.minutes(30),
httpTransferMode: httpTransferMode,
numRetries: 123,
restartDelay: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | number | The number of seconds to wait before retrying a connection to the CDN. |
| filecache | Duration | The size of the file cache for streaming outputs. |
| http | Http | Specifies whether to use chunked transfer encoding. |
| num | number | The number of retry attempts. |
| restart | number | The number of seconds to wait before restarting after a failure. |
connectionRetryInterval?
Type:
number
(optional, default: 1)
The number of seconds to wait before retrying a connection to the CDN.
filecacheDuration?
Type:
Duration
(optional, default: Duration.seconds(300))
The size of the file cache for streaming outputs.
httpTransferMode?
Type:
Http
(optional, default: HttpTransferMode.NON_CHUNKED)
Specifies whether to use chunked transfer encoding.
numRetries?
Type:
number
(optional, default: 10)
The number of retry attempts.
restartDelay?
Type:
number
(optional, default: 1)
The number of seconds to wait before restarting after a failure.

.NET
Go
Java
Python
TypeScript (