interface HlsBasicPutSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.HlsBasicPutSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_HlsBasicPutSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.HlsBasicPutSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.HlsBasicPutSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » HlsBasicPutSettingsProperty |
The configuration of HLS Basic Put Settings.
The parent of this entity is HlsCdnSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const hlsBasicPutSettingsProperty: medialive_mixins.CfnChannelPropsMixin.HlsBasicPutSettingsProperty = {
connectionRetryInterval: 123,
filecacheDuration: 123,
numRetries: 123,
restartDelay: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | number | The number of seconds to wait before retrying a connection to the CDN if the connection is lost. |
| filecache | number | The size, in seconds, of the file cache for streaming outputs. |
| num | number | The number of retry attempts that MediaLive makes before the channel is put into an error state. |
| restart | number | If a streaming output fails, the number of seconds to wait until a restart is initiated. |
connectionRetryInterval?
Type:
number
(optional)
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.
filecacheDuration?
Type:
number
(optional)
The size, in seconds, of the file cache for streaming outputs.
numRetries?
Type:
number
(optional)
The number of retry attempts that MediaLive makes before the channel is put into an error state.
restartDelay?
Type:
number
(optional)
If a streaming output fails, the number of seconds to wait until a restart is initiated.
A value of 0 means never restart.

.NET
Go
Java
Python
TypeScript