Interface MergeConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MergeConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.188Z") @Stability(Experimental) public interface MergeConfigurationProps extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.mediaconnect.alpha.*;
 import software.amazon.awscdk.*;
 RouterInputProtocol routerInputProtocol;
 RouterNetworkInterface routerNetworkInterface;
 MergeConfigurationProps mergeConfigurationProps = MergeConfigurationProps.builder()
         .mergeRecoveryWindow(Duration.minutes(30))
         .networkInterface(routerNetworkInterface)
         .protocols(List.of(routerInputProtocol))
         .build();