interface TransportOutputDestinationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.TransportOutputDestinationProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#TransportOutputDestinationProps |
Java | software.amazon.awscdk.services.medialive.alpha.TransportOutputDestinationProps |
Python | aws_cdk.aws_medialive_alpha.TransportOutputDestinationProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป TransportOutputDestinationProps |
A destination address (IP or host) and port for a transport-stream output.
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 |
|---|---|---|
| address | string | The destination address โ a unicast or multicast IP, or a hostname. |
| port | number | The destination port. |
address
Type:
string
The destination address โ a unicast or multicast IP, or a hostname.
port
Type:
number
The destination port.

.NET
Go
Java
Python
TypeScript (