Interface LowLatencyHlsManifestConfiguration

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LowLatencyHlsManifestConfiguration.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:36.078Z") @Stability(Experimental) public interface LowLatencyHlsManifestConfiguration extends software.amazon.jsii.JsiiSerializable
(experimental) Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.

Example:

 Channel channel;
 OriginEndpoint.Builder.create(this, "Endpoint")
         .channel(channel)
         .segment(Segment.cmaf())
         .manifests(List.of(Manifest.lowLatencyHLS(LowLatencyHlsManifestConfiguration.builder()
                 .manifestName("index")
                 .manifestWindow(Duration.seconds(30))
                 .programDateTimeInterval(Duration.seconds(5))
                 .childManifestName("child")
                 .build())))
         .build();
 
  • Method Details

    • getManifestName

      @Stability(Experimental) @NotNull String getManifestName()
      (experimental) A short string that's appended to the endpoint URL.

      The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index. MediaPackage automatically inserts the format extension, such as .m3u8. You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.

    • getChildManifestName

      @Stability(Experimental) @Nullable default String getChildManifestName()
      (experimental) The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.

      Default: - No child manifest name specified

    • getFilterConfiguration

      @Stability(Experimental) @Nullable default FilterConfiguration getFilterConfiguration()
      (experimental) Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.

      https://docs.aws.amazon.com/mediapackage/latest/userguide/manifest-filter-query-parameters.html

      Default: - No filter configuration

    • getManifestWindow

      @Stability(Experimental) @Nullable default Duration getManifestWindow()
      (experimental) The total duration (in seconds) of the manifest's content.

      Default: 60

    • getProgramDateTimeInterval

      @Stability(Experimental) @Nullable default Duration getProgramDateTimeInterval()
      (experimental) Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify.

      If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.

      Default: - No program date time interval

    • getScteAdMarkerHls

      @Stability(Experimental) @Nullable default AdMarkerHls getScteAdMarkerHls()
      (experimental) The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.

      Default: - No SCTE ad marker configuration

    • getStartTag

      @Stability(Experimental) @Nullable default StartTag getStartTag()
      (experimental) Insert EXT-X-START tag in the manifest with the configured settings.

      Default: - No start tag

    • getUrlEncodeChildManifest

      @Stability(Experimental) @Nullable default Boolean getUrlEncodeChildManifest()
      (experimental) When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol.

      For more information, see AWS Signature Version 4 for API requests in AWS Identity and Access Management User Guide.

      Default: false

    • builder

      @Stability(Experimental) static LowLatencyHlsManifestConfiguration.Builder builder()
      Returns:
      a LowLatencyHlsManifestConfiguration.Builder of LowLatencyHlsManifestConfiguration