interface HlsBasicPutCdnProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsBasicPutCdnProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsBasicPutCdnProps |
Java | software.amazon.awscdk.services.medialive.alpha.HlsBasicPutCdnProps |
Python | aws_cdk.aws_medialive_alpha.HlsBasicPutCdnProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsBasicPutCdnProps |
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 * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
const hlsBasicPutCdnProps: medialive_alpha.HlsBasicPutCdnProps = {
connectionRetryInterval: 123,
filecacheDuration: cdk.Duration.minutes(30),
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. |
| 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.
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 (