Interface CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpoint
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() .clipStartTime("clipStartTime") .end("end") .manifestFilter("manifestFilter") .start("start") .timeDelaySeconds(123) .build()) .manifestWindowSeconds(123) .programDateTimeIntervalSeconds(123) .scteHls(ScteHlsProperty.builder() .adMarkerHls("adMarkerHls") .build()) .startTag(StartTagProperty.builder() .timeOffset(123) // the properties below are optional .precise(false) .build()) .url("url") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.default Object
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.A short short string that's appended to the endpoint URL.default Number
The total duration (in seconds) of the manifest's content.default Number
InsertsEXT-X-PROGRAM-DATE-TIME
tags in the output manifest at the interval that you specify.default Object
The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.default Object
To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.default String
getUrl()
The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifestName
A short 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. ThemanifestName
on theHLSManifest
object overrides themanifestName
you provided on theoriginEndpoint
object.- See Also:
-
getChildManifestName
The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.- See Also:
-
getFilterConfiguration
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.
- See Also:
-
getManifestWindowSeconds
The total duration (in seconds) of the manifest's content.- See Also:
-
getProgramDateTimeIntervalSeconds
InsertsEXT-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.ID3Timed
metadata messages generate every 5 seconds whenever MediaPackage ingests the content.Irrespective of this parameter, if any
ID3Timed
metadata is in the HLS input, MediaPackage passes through that metadata to the HLS output.- See Also:
-
getScteHls
The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.- See Also:
-
getStartTag
To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.
When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
- See Also:
-
getUrl
The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.- See Also:
-
builder
@Stability(Stable) static CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty.Builder builder()
-