interface UdpOutputGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.UdpOutputGroupProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#UdpOutputGroupProps |
Java | software.amazon.awscdk.services.medialive.alpha.UdpOutputGroupProps |
Python | aws_cdk.aws_medialive_alpha.UdpOutputGroupProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป UdpOutputGroupProps |
Properties for a UDP output group.
Example
declare const video: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.udp({
name: 'udp',
destinations: [medialive.UdpOutputDestination.rtp({ address: '203.0.113.5', port: 5000 })],
outputs: [{
encodes: [video],
outputName: 'ts',
fec: { mode: medialive.FecMode.COLUMN_AND_ROW, columnDepth: 10, rowLength: 10 },
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| destinations | Udp[] | The destinations for this output group โ one per pipeline. |
| name | string | The name of this output group. |
| buffer? | Duration | The output buffering. |
| input | Udp | Action to take when the input is lost. |
| outputs? | Udp[] | The outputs for this UDP output group. |
| timed | Udp | Indicates the ID3 frame that has the timecode. |
| timed | Duration | The timed metadata interval. |
destinations
Type:
Udp[]
The destinations for this output group โ one per pipeline.
Array position determines the pipeline mapping:
destinations[0]โ Pipeline 0destinations[1]โ Pipeline 1 (STANDARD channels only)
For a SINGLE_PIPELINE channel, provide exactly 1 destination. For a STANDARD channel, provide exactly 2 destinations.
name
Type:
string
The name of this output group.
Used as the destination reference ID. Underscores are normalised to hyphens internally.
buffer?
Type:
Duration
(optional, default: service default)
The output buffering.
Applied at millisecond granularity.
inputLossAction?
Type:
Udp
(optional, default: UdpInputLossAction.EMIT_PROGRAM)
Action to take when the input is lost.
outputs?
Type:
Udp[]
(optional, default: no initial outputs)
The outputs for this UDP output group.
timedMetadataId3Frame?
Type:
Udp
(optional, default: UdpTimedMetadataId3Frame.PRIV)
Indicates the ID3 frame that has the timecode.
timedMetadataId3Period?
Type:
Duration
(optional, default: Duration.seconds(10))
The timed metadata interval.

.NET
Go
Java
Python
TypeScript (