interface MergeConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MergeConfigurationProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MergeConfigurationProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MergeConfigurationProps |
Python | aws_cdk.aws_mediaconnect_alpha.MergeConfigurationProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MergeConfigurationProps |
Properties for merge Router Input configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import * as cdk from 'aws-cdk-lib';
declare const routerInputProtocol: mediaconnect_alpha.RouterInputProtocol;
declare const routerNetworkInterface: mediaconnect_alpha.RouterNetworkInterface;
const mergeConfigurationProps: mediaconnect_alpha.MergeConfigurationProps = {
mergeRecoveryWindow: cdk.Duration.minutes(30),
networkInterface: routerNetworkInterface,
protocols: [routerInputProtocol],
};
Properties
| Name | Type | Description |
|---|---|---|
| merge | Duration | Recovery window for merge operation. |
| network | IRouter | Network interface for the Router Input. |
| protocols | Router[] | Array of exactly 2 protocol configurations for merge (must be same non-SRT protocol type). |
mergeRecoveryWindow
Type:
Duration
Recovery window for merge operation.
networkInterface
Type:
IRouter
Network interface for the Router Input.
protocols
Type:
Router[]
Array of exactly 2 protocol configurations for merge (must be same non-SRT protocol type).

.NET
Go
Java
Python
TypeScript (