Interface BridgeNetworkInput

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.133Z") @Stability(Experimental) public interface BridgeNetworkInput extends software.amazon.jsii.JsiiSerializable
(experimental) A named network source for an ingress bridge.

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.*;
 BridgeProtocol bridgeProtocol;
 GatewayNetwork gatewayNetwork;
 BridgeNetworkInput bridgeNetworkInput = BridgeNetworkInput.builder()
         .name("name")
         .source(BridgeNetworkSource.builder()
                 .multicastIp("multicastIp")
                 .network(gatewayNetwork)
                 .port(123)
                 .protocol(bridgeProtocol)
                 // the properties below are optional
                 .multicastSourceIp("multicastSourceIp")
                 .build())
         .build();
 
  • Method Details