class M2tsScte35Control
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.M2tsScte35Control |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#M2tsScte35Control |
Java | software.amazon.awscdk.services.medialive.alpha.M2tsScte35Control |
Python | aws_cdk.aws_medialive_alpha.M2tsScte35Control |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป M2tsScte35Control |
SCTE-35 passthrough behavior.
Example
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.udp({
name: 'udp_out',
destinations: [medialive.UdpOutputDestination.udp({ address: '203.0.113.5', port: 5000 })],
outputs: [{
encodes: [video, audio],
outputName: 'ts',
m2tsSettings: medialive.M2tsSettings.of({
bitrate: Bitrate.mbps(8),
rateMode: medialive.M2tsRateMode.VBR,
programNum: 1,
patInterval: Duration.millis(100),
pmtInterval: Duration.millis(100),
scte35Control: medialive.M2tsScte35Control.PASSTHROUGH,
dvbSdtSettings: {
outputSdt: medialive.DvbSdtOutputMode.SDT_MANUAL,
serviceName: 'My Service',
repInterval: Duration.millis(2000),
},
}),
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static NONE | M2ts | Do not pass SCTE-35 signals through. |
| static PASSTHROUGH | M2ts | Pass SCTE-35 signals from the input through to the output. |
value
Type:
string
The underlying string value passed to CloudFormation.
static NONE
Type:
M2ts
Do not pass SCTE-35 signals through.
static PASSTHROUGH
Type:
M2ts
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): M2tsScte35Control
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (