Interface CfnChannel.HlsMediaStoreSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.HlsMediaStoreSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.HlsMediaStoreSettingsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
 HlsMediaStoreSettingsProperty hlsMediaStoreSettingsProperty = HlsMediaStoreSettingsProperty.builder()
         .connectionRetryInterval(123)
         .filecacheDuration(123)
         .mediaStoreStorageClass("mediaStoreStorageClass")
         .numRetries(123)
         .restartDelay(123)
         .build();
 

See Also: