class M3u8Scte35Behavior
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.M3u8Scte35Behavior |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#M3u8Scte35Behavior |
Java | software.amazon.awscdk.services.medialive.alpha.M3u8Scte35Behavior |
Python | aws_cdk.aws_medialive_alpha.M3u8Scte35Behavior |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป M3u8Scte35Behavior |
SCTE-35 passthrough behavior for an M3U8 container.
Example
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [
{
encodes: [video],
outputName: 'video',
hlsSettings: medialive.HlsSettings.standard({
m3u8Settings: medialive.M3u8Settings.of({
scte35Behavior: medialive.M3u8Scte35Behavior.PASSTHROUGH,
programNum: 1,
}),
}),
},
{
encodes: [audio],
outputName: 'audio',
hlsSettings: medialive.HlsSettings.audioOnly({
audioGroupId: 'program',
audioOnlyImage: medialive.FileLocation.fromBucket(bucket, 'art/cover.png'),
}),
},
],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static NO_PASSTHROUGH | M3u8 | Do not pass SCTE-35 signals through. |
| static PASSTHROUGH | M3u8 | Pass SCTE-35 signals from the input through to the output. |
value
Type:
string
The underlying string value passed to CloudFormation.
static NO_PASSTHROUGH
Type:
M3u8
Do not pass SCTE-35 signals through.
static PASSTHROUGH
Type:
M3u8
Pass SCTE-35 signals from the input through to the output.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): M3u8Scte35Behavior
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (