aws-cdk-lib.aws_medialive.CfnChannel.HlsCdnSettingsProperty

interface HlsCdnSettingsProperty

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

The settings for the CDN of an HLS output.

The parent of this entity is HlsGroupSettings.

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 hlsCdnSettingsProperty: medialive.CfnChannel.HlsCdnSettingsProperty = {
  hlsAkamaiSettings: {
    connectionRetryInterval: 123,
    filecacheDuration: 123,
    httpTransferMode: 'httpTransferMode',
    numRetries: 123,
    restartDelay: 123,
    salt: 'salt',
    token: 'token',
  },
  hlsBasicPutSettings: {
    connectionRetryInterval: 123,
    filecacheDuration: 123,
    numRetries: 123,
    restartDelay: 123,
  },
  hlsMediaStoreSettings: {
    connectionRetryInterval: 123,
    filecacheDuration: 123,
    mediaStoreStorageClass: 'mediaStoreStorageClass',
    numRetries: 123,
    restartDelay: 123,
  },
  hlsS3Settings: {
    cannedAcl: 'cannedAcl',
  },
  hlsWebdavSettings: {
    connectionRetryInterval: 123,
    filecacheDuration: 123,
    httpTransferMode: 'httpTransferMode',
    numRetries: 123,
    restartDelay: 123,
  },
};

Properties

NameTypeDescription
hlsAkamaiSettings?IResolvable | HlsAkamaiSettingsPropertySets up Akamai as the downstream system for the HLS output group.
hlsBasicPutSettings?IResolvable | HlsBasicPutSettingsPropertyThe settings for Basic Put for the HLS output.
hlsMediaStoreSettings?IResolvable | HlsMediaStoreSettingsPropertySets up MediaStore as the destination for the HLS output.
hlsS3Settings?IResolvable | HlsS3SettingsPropertySets up Amazon S3 as the destination for this HLS output.
hlsWebdavSettings?IResolvable | HlsWebdavSettingsPropertyThe settings for Web VTT captions in the HLS output group.

hlsAkamaiSettings?

Type: IResolvable | HlsAkamaiSettingsProperty (optional)

Sets up Akamai as the downstream system for the HLS output group.


hlsBasicPutSettings?

Type: IResolvable | HlsBasicPutSettingsProperty (optional)

The settings for Basic Put for the HLS output.


hlsMediaStoreSettings?

Type: IResolvable | HlsMediaStoreSettingsProperty (optional)

Sets up MediaStore as the destination for the HLS output.


hlsS3Settings?

Type: IResolvable | HlsS3SettingsProperty (optional)

Sets up Amazon S3 as the destination for this HLS output.


hlsWebdavSettings?

Type: IResolvable | HlsWebdavSettingsProperty (optional)

The settings for Web VTT captions in the HLS output group.

The parent of this entity is HlsGroupSettings.