Interface BridgeNetworkOutput
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BridgeNetworkOutput.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.133Z")
@Stability(Experimental)
public interface BridgeNetworkOutput
extends software.amazon.jsii.JsiiSerializable
(experimental) A named network output 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.*;
BridgeOutputConfiguration bridgeOutputConfiguration;
BridgeNetworkOutput bridgeNetworkOutput = BridgeNetworkOutput.builder()
.name("name")
.output(bridgeOutputConfiguration)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeNetworkOutputstatic final classAn implementation forBridgeNetworkOutput -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeNetworkOutput.Builderbuilder()getName()(experimental) The name of the network output.(experimental) The network configuration describing where this output sends content.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
(experimental) The name of the network output. Must be unique among outputs on the bridge.Used as the physical name of the underlying CFN resource.
-
getOutput
(experimental) The network configuration describing where this output sends content. -
builder
- Returns:
- a
BridgeNetworkOutput.BuilderofBridgeNetworkOutput
-