Interface CfnPackagingConfiguration.HlsManifestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingConfiguration.HlsManifestProperty.Jsii$Proxy
- Enclosing class:
CfnPackagingConfiguration
@Stability(Stable)
public static interface CfnPackagingConfiguration.HlsManifestProperty
extends software.amazon.jsii.JsiiSerializable
Parameters for an HLS manifest.
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() .adMarkers("adMarkers") .includeIframeOnlyStream(false) .manifestName("manifestName") .programDateTimeIntervalSeconds(123) .repeatExtXKey(false) .streamSelection(StreamSelectionProperty.builder() .maxVideoBitsPerSecond(123) .minVideoBitsPerSecond(123) .streamOrder("streamOrder") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPackagingConfiguration.HlsManifestProperty
static final class
An implementation forCfnPackagingConfiguration.HlsManifestProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
This setting controls ad markers in the packaged content.default Object
Applies to stream sets with a single video track only.default String
A short string that's appended to the end of the endpoint URL to create a unique path to this packaging configuration.default Number
InsertsEXT-X-PROGRAM-DATE-TIME
tags in the output manifest at the interval that you specify.default Object
Repeat theEXT-X-KEY
directive for every media segment.default Object
Video bitrate limitations for outputs from this packaging configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdMarkers
This setting controls ad markers in the packaged content.Valid values:
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.
-
getIncludeIframeOnlyStream
Applies to stream sets with a single video track only.When enabled, the output includes an additional I-frame only stream, along with the other tracks.
-
getManifestName
A short string that's appended to the end of the endpoint URL to create a unique path to this packaging configuration. -
getProgramDateTimeIntervalSeconds
InsertsEXT-X-PROGRAM-DATE-TIME
tags in the output manifest at the interval that you specify.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 theEXT-X-PROGRAM-DATE-TIME
tags are not included in the manifest. -
getRepeatExtXKey
Repeat theEXT-X-KEY
directive for every media segment.This might result in an increase in client requests to the DRM server.
-
getStreamSelection
Video bitrate limitations for outputs from this packaging configuration. -
builder
-