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();
 
  • Method Details

    • getBridge

      @Stability(Experimental) @NotNull IBridge getBridge()
      (experimental) The bridge to add this source to.
    • getSource

      @Stability(Experimental) @NotNull BridgeSourceConfiguration getSource()
      (experimental) Configuration for Bridge Source Input.
    • getBridgeSourceName

      @Stability(Experimental) @Nullable default String getBridgeSourceName()
      (experimental) Name of the bridge source.

      Default: - autogenerated

    • builder

      @Stability(Experimental) static BridgeSourceProps.Builder builder()
      Returns:
      a BridgeSourceProps.Builder of BridgeSourceProps