public static interface CfnChannel.HlsCdnSettingsProperty
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 software.amazon.awscdk.services.medialive.*; HlsCdnSettingsProperty hlsCdnSettingsProperty = HlsCdnSettingsProperty.builder() .hlsAkamaiSettings(HlsAkamaiSettingsProperty.builder() .connectionRetryInterval(123) .filecacheDuration(123) .httpTransferMode("httpTransferMode") .numRetries(123) .restartDelay(123) .salt("salt") .token("token") .build()) .hlsBasicPutSettings(HlsBasicPutSettingsProperty.builder() .connectionRetryInterval(123) .filecacheDuration(123) .numRetries(123) .restartDelay(123) .build()) .hlsMediaStoreSettings(HlsMediaStoreSettingsProperty.builder() .connectionRetryInterval(123) .filecacheDuration(123) .mediaStoreStorageClass("mediaStoreStorageClass") .numRetries(123) .restartDelay(123) .build()) .hlsS3Settings(HlsS3SettingsProperty.builder() .cannedAcl("cannedAcl") .build()) .hlsWebdavSettings(HlsWebdavSettingsProperty.builder() .connectionRetryInterval(123) .filecacheDuration(123) .httpTransferMode("httpTransferMode") .numRetries(123) .restartDelay(123) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.HlsCdnSettingsProperty.Builder
A builder for
CfnChannel.HlsCdnSettingsProperty |
static class |
CfnChannel.HlsCdnSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.HlsCdnSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.HlsCdnSettingsProperty.Builder |
builder() |
default java.lang.Object |
getHlsAkamaiSettings()
Sets up Akamai as the downstream system for the HLS output group.
|
default java.lang.Object |
getHlsBasicPutSettings()
The settings for Basic Put for the HLS output.
|
default java.lang.Object |
getHlsMediaStoreSettings()
Sets up MediaStore as the destination for the HLS output.
|
default java.lang.Object |
getHlsS3Settings()
Sets up Amazon S3 as the destination for this HLS output.
|
default java.lang.Object |
getHlsWebdavSettings()
The settings for Web VTT captions in the HLS output group.
|
default java.lang.Object getHlsAkamaiSettings()
default java.lang.Object getHlsBasicPutSettings()
default java.lang.Object getHlsMediaStoreSettings()
default java.lang.Object getHlsS3Settings()
default java.lang.Object getHlsWebdavSettings()
The parent of this entity is HlsGroupSettings.
static CfnChannel.HlsCdnSettingsProperty.Builder builder()