aws-cdk-lib.aws_medialive.CfnChannel.HlsMediaStoreSettingsProperty

interface HlsMediaStoreSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.HlsMediaStoreSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_HlsMediaStoreSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.HlsMediaStoreSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.HlsMediaStoreSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » HlsMediaStoreSettingsProperty

The configuration of a MediaStore container as the destination for an HLS output.

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const hlsMediaStoreSettingsProperty: medialive.CfnChannel.HlsMediaStoreSettingsProperty = {
  connectionRetryInterval: 123,
  filecacheDuration: 123,
  mediaStoreStorageClass: 'mediaStoreStorageClass',
  numRetries: 123,
  restartDelay: 123,
};

Properties

NameTypeDescription
connectionRetryInterval?numberThe number of seconds to wait before retrying a connection to the CDN if the connection is lost.
filecacheDuration?numberThe size, in seconds, of the file cache for streaming outputs.
mediaStoreStorageClass?stringWhen set to temporal, output files are stored in non-persistent memory for faster reading and writing.
numRetries?numberThe number of retry attempts that are made before the channel is put into an error state.
restartDelay?numberIf 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.


mediaStoreStorageClass?

Type: string (optional)

When set to temporal, output files are stored in non-persistent memory for faster reading and writing.


numRetries?

Type: number (optional)

The number of retry attempts that are made 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.