interface RtpRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_RtpRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » RtpRouterOutputConfigurationProperty |
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const rtpRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty = {
destinationAddress: 'destinationAddress',
destinationPort: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination IP address for the RTP protocol in the router output configuration. |
| destination | number | The destination port number for the RTP protocol in the router output configuration. |
| forward | string |
destinationAddress
Type:
string
The destination IP address for the RTP protocol in the router output configuration.
destinationPort
Type:
number
The destination port number for the RTP protocol in the router output configuration.
forwardErrorCorrection?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript