interface MergeRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.MergeRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_MergeRouterInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.MergeRouterInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.MergeRouterInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const mergeRouterInputConfigurationProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.MergeRouterInputConfigurationProperty = {
mergeRecoveryWindowMilliseconds: 123,
networkInterfaceArn: 'networkInterfaceArn',
protocolConfigurations: [{
rist: {
port: 123,
recoveryLatencyMilliseconds: 123,
},
rtp: {
forwardErrorCorrection: 'forwardErrorCorrection',
port: 123,
},
}],
};
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
(optional)
The time window in milliseconds for merging the two input sources.
networkInterfaceArn?
Type:
string
(optional)
The ARN of the network interface to use for this merge router input.
protocolConfigurations?
Type:
IResolvable | (IResolvable | Merge)[]
(optional)
A list of exactly two protocol configurations for the merge input sources.
Both must use the same protocol type.

.NET
Go
Java
Python
TypeScript