Interface CfnOriginEndpointPropsMixin.ScteProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpointPropsMixin.ScteProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpointPropsMixin
@Stability(Stable)
public static interface CfnOriginEndpointPropsMixin.ScteProperty
extends software.amazon.jsii.JsiiSerializable
The SCTE-35 configuration associated with the origin endpoint.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.*;
ScteProperty scteProperty = ScteProperty.builder()
.customAdTypes(List.of("customAdTypes"))
.scteFilter(List.of("scteFilter"))
.scteInSegments("scteInSegments")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpointPropsMixin.SctePropertystatic final classAn implementation forCfnOriginEndpointPropsMixin.ScteProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomAdTypes
A list of additional non-Ad SCTE-35 event types to treat as advertisements.
When configured, events matching these types produce ad markers (such as
SCTE35-OUTandSCTE35-INin HLS DATERANGE tags) in manifests.Valid values:
PROGRAM|CHAPTER|UNSCHEDULED_EVENT|ALTERNATE_CONTENT_OPPORTUNITY|NETWORKIf you don't specify any values, the default is empty (only default ad types are used).
- See Also:
-
getScteFilter
The filter associated with the SCTE-35 configuration.- See Also:
-
getScteInSegments
Controls whether SCTE-35 messages are included in segment files.- None – SCTE-35 messages are not included in segments (default)
- All – SCTE-35 messages are embedded in segment data
For DASH manifests, when set to
All, anInbandEventStreamtag signals that SCTE messages are present in segments. This setting works independently of manifest ad markers.- See Also:
-
builder
-