Interface GatewayBridgeSource
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GatewayBridgeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.170Z")
@Stability(Experimental)
public interface GatewayBridgeSource
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for Gateway Bridge Source.
Example:
Stack stack;
Bridge bridge;
IRole role;
ISecurityGroup securityGroup;
ISubnet subnet;
VpcInterfaceConfig vpcInterface = VpcInterface.define(VpcInterfaceDefineProps.builder()
.vpcInterfaceName("bridge-interface")
.role(role)
.securityGroups(List.of(securityGroup))
.subnet(subnet)
.build());
Flow flow = Flow.Builder.create(stack, "MyFlow")
.source(SourceConfiguration.gatewayBridge(GatewayBridgeSource.builder()
.bridge(bridge)
.vpcInterface(vpcInterface)
.build()))
.vpcInterfaces(List.of(vpcInterface))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGatewayBridgeSourcestatic final classAn implementation forGatewayBridgeSource -
Method Summary
Modifier and TypeMethodDescriptionstatic GatewayBridgeSource.Builderbuilder()(experimental) The bridge feeding this flow.default VpcInterfaceConfig(experimental) The VPC interface attachment to use for this bridge source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridge
(experimental) The bridge feeding this flow. -
getVpcInterface
(experimental) The VPC interface attachment to use for this bridge source.Default: - no VPC interface
-
builder
- Returns:
- a
GatewayBridgeSource.BuilderofGatewayBridgeSource
-