Interface BridgeSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BridgeSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.137Z")
@Stability(Experimental)
public interface BridgeSourceProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for the bridge source.
Example:
Stack stack;
Bridge bridge;
Flow flow;
// Add a flow source to an egress bridge (requires failover to be enabled)
BridgeSource additionalSource = BridgeSource.Builder.create(stack, "AdditionalSource")
.bridgeSourceName("backup-source")
.bridge(bridge)
.source(BridgeSourceConfiguration.flow(BridgeFlowSource.builder()
.flow(flow)
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeSourcePropsstatic final classAn implementation forBridgeSourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeSourceProps.Builderbuilder()(experimental) The bridge to add this source to.default String(experimental) Name of the bridge source.(experimental) Configuration for Bridge Source Input.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridge
(experimental) The bridge to add this source to. -
getSource
(experimental) Configuration for Bridge Source Input. -
getBridgeSourceName
(experimental) Name of the bridge source.Default: - autogenerated
-
builder
- Returns:
- a
BridgeSourceProps.BuilderofBridgeSourceProps
-