public static interface CfnOriginEndpoint.HlsManifestProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnOriginEndpoint.HlsManifestProperty.Builder
A builder for
CfnOriginEndpoint.HlsManifestProperty |
static class |
CfnOriginEndpoint.HlsManifestProperty.Jsii$Proxy
An implementation for
CfnOriginEndpoint.HlsManifestProperty |
Modifier and Type | Method and Description |
---|---|
static CfnOriginEndpoint.HlsManifestProperty.Builder |
builder() |
default java.lang.String |
getAdMarkers()
Controls how ad markers are included in the packaged endpoint.
|
default java.lang.String |
getAdsOnDeliveryRestrictions()
The flags on SCTE-35 segmentation descriptors that have to be present for MediaPackage to insert ad markers in the output manifest.
|
default java.util.List<java.lang.String> |
getAdTriggers()
Specifies the SCTE-35 message types that MediaPackage treats as ad markers in the output manifest.
|
java.lang.String |
getId()
The manifest ID is required and must be unique within the OriginEndpoint.
|
default java.lang.Object |
getIncludeIframeOnlyStream()
Applies to stream sets with a single video track only.
|
default java.lang.String |
getManifestName()
A short string that's appended to the end of the endpoint URL to create a unique path to this endpoint.
|
default java.lang.String |
getPlaylistType()
When specified as either `event` or `vod` , a corresponding `EXT-X-PLAYLIST-TYPE` entry is included in the media playlist.
|
default java.lang.Number |
getPlaylistWindowSeconds()
Time window (in seconds) contained in each parent manifest.
|
default java.lang.Number |
getProgramDateTimeIntervalSeconds()
Inserts `EXT-X-PROGRAM-DATE-TIME` tags in the output manifest at the interval that you specify.
|
default java.lang.String |
getUrl()
The URL that's used to request this manifest from this endpoint.
|
java.lang.String getId()
The ID can't be changed after the endpoint is created.
default java.lang.String getAdMarkers()
Valid values are none
, passthrough
, or scte35_enhanced
.
NONE
- omits all SCTE-35 ad markers from the output.PASSTHROUGH
- creates a copy in the output of the SCTE-35 ad markers (comments) taken directly from the input manifest.SCTE35_ENHANCED
- generates ad markers and blackout tags in the output based on the SCTE-35 messages from the input manifest.default java.lang.String getAdsOnDeliveryRestrictions()
For information about SCTE-35 in MediaPackage, see SCTE-35 Message Options in AWS Elemental MediaPackage .
default java.util.List<java.lang.String> getAdTriggers()
Valid values:
BREAK
DISTRIBUTOR_ADVERTISEMENT
DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
DISTRIBUTOR_PLACEMENT_OPPORTUNITY
PROVIDER_ADVERTISEMENT
PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY
PROVIDER_PLACEMENT_OPPORTUNITY
SPLICE_INSERT
default java.lang.Object getIncludeIframeOnlyStream()
When true, the stream set includes an additional I-frame only stream, along with the other tracks. If false, this extra stream is not included.
default java.lang.String getManifestName()
The manifestName on the HLSManifest object overrides the manifestName that you provided on the originEndpoint object.
default java.lang.String getPlaylistType()
Indicates if the playlist is live-to-VOD content.
default java.lang.Number getPlaylistWindowSeconds()
default java.lang.Number getProgramDateTimeIntervalSeconds()
Additionally, ID3Timed metadata messages are generated every 5 seconds starting when the content was ingested.
Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.
Omit this attribute or enter 0
to indicate that the EXT-X-PROGRAM-DATE-TIME
tags are not included in the manifest.
default java.lang.String getUrl()
static CfnOriginEndpoint.HlsManifestProperty.Builder builder()