Interface BridgeFlowInput

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BridgeFlowInput.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.132Z") @Stability(Experimental) public interface BridgeFlowInput extends software.amazon.jsii.JsiiSerializable
(experimental) A named flow source for an egress 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.*;
 import software.amazon.awscdk.services.ec2.*;
 import software.amazon.awscdk.services.iam.*;
 Flow flow;
 NetworkInterface networkInterface;
 Role role;
 SecurityGroup securityGroup;
 Subnet subnet;
 BridgeFlowInput bridgeFlowInput = BridgeFlowInput.builder()
         .name("name")
         .source(BridgeFlowSource.builder()
                 .flow(flow)
                 // the properties below are optional
                 .vpcInterface(VpcInterfaceConfig.builder()
                         .name("name")
                         .role(role)
                         .securityGroups(List.of(securityGroup))
                         .subnet(subnet)
                         // the properties below are optional
                         .networkInterfaceIds(List.of("networkInterfaceIds"))
                         .networkInterfaceType(networkInterface)
                         .build())
                 .build())
         .build();
 
  • Method Details

    • getName

      @Stability(Experimental) @NotNull String getName()
      (experimental) The name of the flow source.

      Must be unique among sources on the bridge.

    • getSource

      @Stability(Experimental) @NotNull BridgeFlowSource getSource()
      (experimental) The flow source configuration describing where the bridge consumes content from.
    • builder

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