interface RistRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.RistRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_RistRouterInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.RistRouterInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.RistRouterInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const ristRouterInputConfigurationProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.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
(optional)
The port number used for the RIST protocol in the router input configuration.
recoveryLatencyMilliseconds?
Type:
number
(optional)
The recovery latency in milliseconds for the RIST protocol in the router input configuration.

.NET
Go
Java
Python
TypeScript