interface Scte35SpliceInsertSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Scte35SpliceInsertSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Scte35SpliceInsertSettings |
Java | software.amazon.awscdk.services.medialive.alpha.Scte35SpliceInsertSettings |
Python | aws_cdk.aws_medialive_alpha.Scte35SpliceInsertSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Scte35SpliceInsertSettings |
SCTE-35 splice insert avail settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const scte35FlagBehavior: medialive_alpha.Scte35FlagBehavior;
const scte35SpliceInsertSettings: medialive_alpha.Scte35SpliceInsertSettings = {
adAvailOffset: 123,
noRegionalBlackoutFlag: scte35FlagBehavior,
webDeliveryAllowedFlag: scte35FlagBehavior,
};
Properties
| Name | Type | Description |
|---|---|---|
| ad | number | Offset in milliseconds added to the input ad avail PTS time. |
| no | Scte35 | When set to IGNORE, segment descriptors with noRegionalBlackoutFlag set to 0 no longer trigger blackouts or ad avail slates. |
| web | Scte35 | When set to IGNORE, segment descriptors with webDeliveryAllowedFlag set to 0 no longer trigger blackouts or ad avail slates. |
adAvailOffset?
Type:
number
(optional, default: service default)
Offset in milliseconds added to the input ad avail PTS time.
Applies only to embedded SCTE 104/35 messages.
noRegionalBlackoutFlag?
Type:
Scte35
(optional, default: service default)
When set to IGNORE, segment descriptors with noRegionalBlackoutFlag set to 0 no longer trigger blackouts or ad avail slates.
webDeliveryAllowedFlag?
Type:
Scte35
(optional, default: service default)
When set to IGNORE, segment descriptors with webDeliveryAllowedFlag set to 0 no longer trigger blackouts or ad avail slates.

.NET
Go
Java
Python
TypeScript (