interface UdpOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.UdpOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#UdpOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.UdpOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.UdpOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป UdpOutputDefinition |
Implements
Output
Output definition for a UDP output group.
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';
import * as cdk from 'aws-cdk-lib';
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
declare const fecMode: medialive_alpha.FecMode;
declare const m2tsSettings: medialive_alpha.M2tsSettings;
const udpOutputDefinition: medialive_alpha.UdpOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
buffer: cdk.Duration.minutes(30),
fec: {
columnDepth: 123,
mode: fecMode,
rowLength: 123,
},
m2tsSettings: m2tsSettings,
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| buffer? | Duration | The output buffering (overrides group-level setting). |
| fec? | Fec | Forward Error Correction (FEC) settings for this output. |
| m2ts | M2ts | MPEG-TS (M2TS) container settings for this output. |
encodes
Type:
Encode[]
The encode configurations to wire to this output.
outputName
Type:
string
The name of this output.
Must be unique across all outputs in the channel.
buffer?
Type:
Duration
(optional, default: uses group-level buffer)
The output buffering (overrides group-level setting).
Applied at millisecond granularity.
fec?
Type:
Fec
(optional, default: no FEC)
Forward Error Correction (FEC) settings for this output.
m2tsSettings?
Type:
M2ts
(optional, default: service defaults)
MPEG-TS (M2TS) container settings for this output.

.NET
Go
Java
Python
TypeScript (