interface RistRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.RistRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_RistRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.RistRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.RistRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » RistRouterInputConfigurationProperty |
The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.
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 ristRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.RistRouterInputConfigurationProperty = {
port: 123,
recoveryLatencyMilliseconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| port | number | The port number used for the RIST protocol in the router input configuration. |
| recovery | number | The recovery latency in milliseconds for the RIST protocol in the router input configuration. |
port
Type:
number
The port number used for the RIST protocol in the router input configuration.
recoveryLatencyMilliseconds
Type:
number
The recovery latency in milliseconds for the RIST protocol in the router input configuration.

.NET
Go
Java
Python
TypeScript