interface MergeRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.MergeRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_MergeRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.MergeRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.MergeRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » MergeRouterInputConfigurationProperty |
Configuration settings for a merge router input that combines two input sources.
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 mergeRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.MergeRouterInputConfigurationProperty = {
mergeRecoveryWindowMilliseconds: 123,
networkInterfaceArn: 'networkInterfaceArn',
protocolConfigurations: [{
rist: {
port: 123,
recoveryLatencyMilliseconds: 123,
},
rtp: {
port: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| merge | number | The time window in milliseconds for merging the two input sources. |
| network | string | The ARN of the network interface to use for this merge router input. |
| protocol | IResolvable | (IResolvable | Merge)[] | A list of exactly two protocol configurations for the merge input sources. |
mergeRecoveryWindowMilliseconds
Type:
number
The time window in milliseconds for merging the two input sources.
networkInterfaceArn
Type:
string
The ARN of the network interface to use for this merge router input.
protocolConfigurations
Type:
IResolvable | (IResolvable | Merge)[]
A list of exactly two protocol configurations for the merge input sources.
Both must use the same protocol type.

.NET
Go
Java
Python
TypeScript