class Scte35SegmentationScope
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Scte35SegmentationScope |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Scte35SegmentationScope |
Java | software.amazon.awscdk.services.medialive.alpha.Scte35SegmentationScope |
Python | aws_cdk.aws_medialive_alpha.Scte35SegmentationScope |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Scte35SegmentationScope |
Controls which output groups receive SCTE-35 segmentation cues.
Example
import { StringParameter } from 'aws-cdk-lib/aws-ssm';
declare const stack: Stack;
declare const input: medialive.IInput;
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
declare const poisPassword: StringParameter;
new medialive.Channel(stack, 'Channel', {
inputs: [{ input }],
availSettings: medialive.AvailSettings.esam({
pois: {
url: 'https://pois.example.com/esam',
username: 'pois-user',
password: poisPassword,
},
acquisitionPointId: 'acquisition-point-1',
adAvailOffset: Duration.millis(200),
}),
scte35SegmentationScope: medialive.Scte35SegmentationScope.SCTE35_ENABLED_OUTPUT_GROUPS,
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static ALL_OUTPUT_GROUPS | Scte35 | Insert segment breaks in all output groups. |
| static SCTE35_ENABLED_OUTPUT_GROUPS | Scte35 | Insert segment breaks only in output groups with SCTE-35 passthrough enabled (recommended). |
value
Type:
string
The underlying string value passed to CloudFormation.
static ALL_OUTPUT_GROUPS
Type:
Scte35
Insert segment breaks in all output groups.
static SCTE35_ENABLED_OUTPUT_GROUPS
Type:
Scte35
Insert segment breaks only in output groups with SCTE-35 passthrough enabled (recommended).
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): Scte35SegmentationScope
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (