Interface CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.

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.mediapackagev2.*;
 LowLatencyHlsManifestConfigurationProperty lowLatencyHlsManifestConfigurationProperty = LowLatencyHlsManifestConfigurationProperty.builder()
         .manifestName("manifestName")
         // the properties below are optional
         .childManifestName("childManifestName")
         .filterConfiguration(FilterConfigurationProperty.builder()
                 .end("end")
                 .manifestFilter("manifestFilter")
                 .start("start")
                 .timeDelaySeconds(123)
                 .build())
         .manifestWindowSeconds(123)
         .programDateTimeIntervalSeconds(123)
         .scteHls(ScteHlsProperty.builder()
                 .adMarkerHls("adMarkerHls")
                 .build())
         .url("url")
         .build();
 

See Also: