Interface CfnPlaybackConfiguration.ManifestProcessingRulesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlaybackConfiguration.ManifestProcessingRulesProperty.Jsii$Proxy
- Enclosing class:
CfnPlaybackConfiguration
@Stability(Stable)
public static interface CfnPlaybackConfiguration.ManifestProcessingRulesProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for manifest processing rules.
Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
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.mediatailor.*;
ManifestProcessingRulesProperty manifestProcessingRulesProperty = ManifestProcessingRulesProperty.builder()
.adMarkerPassthrough(AdMarkerPassthroughProperty.builder()
.enabled(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlaybackConfiguration.ManifestProcessingRulesPropertystatic final classAn implementation forCfnPlaybackConfiguration.ManifestProcessingRulesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdMarkerPassthrough
For HLS, when set totrue, MediaTailor passes throughEXT-X-CUE-IN,EXT-X-CUE-OUT, andEXT-X-SPLICEPOINT-SCTE35ad markers from the origin manifest to the MediaTailor personalized manifest.No logic is applied to these ad markers. For example, if
EXT-X-CUE-OUThas a value of60, but no ads are filled for that ad break, MediaTailor will not set the value to0.Returns union: either
IResolvableorCfnPlaybackConfiguration.AdMarkerPassthroughProperty- See Also:
-
builder
@Stability(Stable) static CfnPlaybackConfiguration.ManifestProcessingRulesProperty.Builder builder()
-