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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeFlowInputstatic final classAn implementation forBridgeFlowInput -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeFlowInput.Builderbuilder()getName()(experimental) The name of the flow source.(experimental) The flow source configuration describing where the bridge consumes content from.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
(experimental) The name of the flow source.Must be unique among sources on the bridge.
-
getSource
(experimental) The flow source configuration describing where the bridge consumes content from. -
builder
- Returns:
- a
BridgeFlowInput.BuilderofBridgeFlowInput
-