Interface CfnOriginEndpoint.HlsManifestProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.HlsManifestProperty extends software.amazon.jsii.JsiiSerializable
An HTTP Live Streaming (HLS) manifest configuration on a CMAF endpoint.

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.mediapackage.*;
 HlsManifestProperty hlsManifestProperty = HlsManifestProperty.builder()
         .id("id")
         // the properties below are optional
         .adMarkers("adMarkers")
         .adsOnDeliveryRestrictions("adsOnDeliveryRestrictions")
         .adTriggers(List.of("adTriggers"))
         .includeIframeOnlyStream(false)
         .manifestName("manifestName")
         .playlistType("playlistType")
         .playlistWindowSeconds(123)
         .programDateTimeIntervalSeconds(123)
         .url("url")
         .build();
 

See Also: