Interface EgressBridgeConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EgressBridgeConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.138Z")
@Stability(Experimental)
public interface EgressBridgeConfiguration
extends software.amazon.jsii.JsiiSerializable
(experimental) Egress bridge configuration.
Example:
Stack stack;
Gateway gateway;
Flow flow;
VpcInterfaceConfig vpcInterface;
GatewayNetwork productionNetwork;
Bridge egressBridge = Bridge.Builder.create(stack, "MyEgressBridge")
.bridgeName("my-egress-bridge")
.config(BridgeConfiguration.egress(EgressBridgeConfiguration.builder()
.maxBitrate(Bitrate.mbps(10))
.flowSources(List.of(BridgeFlowInput.builder()
.name("cloud-source")
.source(BridgeFlowSource.builder()
.flow(flow)
.vpcInterface(vpcInterface)
.build())
.build()))
.networkOutputs(List.of(BridgeNetworkOutput.builder()
.name("on-prem-output")
.output(BridgeOutputConfiguration.network(BridgeNetworkOutputProps.builder()
.ipAddress("192.168.1.200")
.port(5001)
.network(productionNetwork)
.protocol(BridgeProtocol.RTP)
.ttl(50)
.build()))
.build()))
.build()))
.gateway(gateway)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEgressBridgeConfigurationstatic final classAn implementation forEgressBridgeConfiguration -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The flow sources for the egress bridge.(experimental) The maximum expected bitrate (in bps) of the bridge.(experimental) The network outputs for the egress bridge.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowSources
(experimental) The flow sources for the egress bridge. -
getMaxBitrate
(experimental) The maximum expected bitrate (in bps) of the bridge. -
getNetworkOutputs
(experimental) The network outputs for the egress bridge. -
builder
- Returns:
- a
EgressBridgeConfiguration.BuilderofEgressBridgeConfiguration
-