interface ScteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnOriginEndpointPropsMixin.ScteProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnOriginEndpointPropsMixin_ScteProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnOriginEndpointPropsMixin.ScteProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnOriginEndpointPropsMixin.ScteProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » CfnOriginEndpointPropsMixin » ScteProperty |
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 { aws_mediapackagev2 as mediapackagev2 } from '@aws-cdk/cfn-property-mixins';
const scteProperty: mediapackagev2.CfnOriginEndpointPropsMixin.ScteProperty = {
customAdTypes: ['customAdTypes'],
scteFilter: ['scteFilter'],
scteInSegments: 'scteInSegments',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string[] | A list of additional non-Ad SCTE-35 event types to treat as advertisements. |
| scte | string[] | The filter associated with the SCTE-35 configuration. |
| scte | string | Controls whether SCTE-35 messages are included in segment files. |
customAdTypes?
Type:
string[]
(optional)
<p>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 <code>SCTE35-OUT and <code>SCTE35-IN in HLS DATERANGE tags) in manifests.
<p>Valid values: <code>PROGRAM | <code>CHAPTER | <code>UNSCHEDULED_EVENT | <code>ALTERNATE_CONTENT_OPPORTUNITY | <code>NETWORK <p>If you don't specify any values, the default is empty (only default ad types are used).scteFilter?
Type:
string[]
(optional)
The filter associated with the SCTE-35 configuration.
scteInSegments?
Type:
string
(optional)
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 , an InbandEventStream tag signals that SCTE messages are present in segments. This setting works independently of manifest ad markers.

.NET
Go
Java
Python
TypeScript