class DvbSdtOutputMode
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.DvbSdtOutputMode |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#DvbSdtOutputMode |
Java | software.amazon.awscdk.services.medialive.alpha.DvbSdtOutputMode |
Python | aws_cdk.aws_medialive_alpha.DvbSdtOutputMode |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป DvbSdtOutputMode |
How DVB Service Description Table (SDT) information is inserted.
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 SDT_FOLLOW | Dvb | Copy SDT information from the input stream to the output stream. |
| static SDT_FOLLOW_IF_PRESENT | Dvb | Copy SDT from the input if present, otherwise use the configured values. |
| static SDT_MANUAL | Dvb | Use the user-defined SDT information. |
| static SDT_NONE | Dvb | Do not include SDT information in the output. |
value
Type:
string
The underlying string value passed to CloudFormation.
static SDT_FOLLOW
Type:
Dvb
Copy SDT information from the input stream to the output stream.
static SDT_FOLLOW_IF_PRESENT
Type:
Dvb
Copy SDT from the input if present, otherwise use the configured values.
static SDT_MANUAL
Type:
Dvb
Use the user-defined SDT information.
static SDT_NONE
Type:
Dvb
Do not include SDT information in the output.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): DvbSdtOutputMode
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (