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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeNetworkInputstatic final classAn implementation forBridgeNetworkInput -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeNetworkInput.Builderbuilder()getName()(experimental) The name of the network source.(experimental) The network source configuration describing the multicast endpoint the bridge listens to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
(experimental) The name of the network source.Must be unique among sources on the bridge.
-
getSource
(experimental) The network source configuration describing the multicast endpoint the bridge listens to. -
builder
- Returns:
- a
BridgeNetworkInput.BuilderofBridgeNetworkInput
-