interface RtpRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterOutputPropsMixin.RtpRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterOutputPropsMixin_RtpRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterOutputPropsMixin.RtpRouterOutputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterOutputPropsMixin.RtpRouterOutputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterOutputPropsMixin » 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/cfn-property-mixins';
const rtpRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutputPropsMixin.RtpRouterOutputConfigurationProperty = {
destinationAddress: 'destinationAddress',
destinationPort: 123,
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
(optional)
The destination IP address for the RTP protocol in the router output configuration.
destinationPort?
Type:
number
(optional)
The destination port number for the RTP protocol in the router output configuration.
forwardErrorCorrection?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript