Interface LowLatencyHlsManifestConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LowLatencyHlsManifestConfiguration.Jsii$Proxy
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLowLatencyHlsManifestConfigurationstatic final classAn implementation forLowLatencyHlsManifestConfiguration -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(experimental) The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.default FilterConfiguration(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.(experimental) A short string that's appended to the endpoint URL.default Duration(experimental) The total duration (in seconds) of the manifest's content.default Duration(experimental) Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify.default AdMarkerHls(experimental) The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.default StartTag(experimental) Insert EXT-X-START tag in the manifest with the configured settings.default Boolean(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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
(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
(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
(experimental) The total duration (in seconds) of the manifest's content.Default: 60
-
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
(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
(experimental) Insert EXT-X-START tag in the manifest with the configured settings.Default: - No start tag
-
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
-