interface RistRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.RistRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_RistRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » RistRouterOutputConfigurationProperty |
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
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 ristRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty = {
destinationAddress: 'destinationAddress',
destinationPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination IP address for the RIST protocol in the router output configuration. |
| destination | number | The destination port number for the RIST protocol in the router output configuration. |
destinationAddress
Type:
string
The destination IP address for the RIST protocol in the router output configuration.
destinationPort
Type:
number
The destination port number for the RIST protocol in the router output configuration.

.NET
Go
Java
Python
TypeScript