interface RistProtocolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RistProtocolProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RistProtocolProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RistProtocolProps |
Python | aws_cdk.aws_mediaconnect_alpha.RistProtocolProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RistProtocolProps |
Properties for RIST protocol configuration.
Example
declare const stack: Stack;
declare const networkInterface: RouterNetworkInterface;
const input = new RouterInput(stack, 'FailoverInput', {
routerInputName: 'failover-input',
maximumBitrate: Bitrate.mbps(10),
routingScope: RoutingScope.REGIONAL,
tier: RouterInputTier.INPUT_50,
configuration: RouterInputConfiguration.failover({
networkInterface: networkInterface,
protocols: [
RouterInputProtocol.rist({
port: 5000,
recoveryLatency: Duration.millis(1000),
}),
RouterInputProtocol.rist({
port: 5002, // Must not be consecutive with primary port
recoveryLatency: Duration.millis(1000),
}),
],
sourcePriority: SourcePriorityConfig.primarySecondary(PrimarySource.FIRST_SOURCE),
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| port | number | Port number for RIST traffic. |
| recovery | Duration | Recovery latency for RIST. |
port
Type:
number
Port number for RIST traffic.
recoveryLatency
Type:
Duration
Recovery latency for RIST.

.NET
Go
Java
Python
TypeScript (