Interface BridgeOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BridgeOutputProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.135Z")
@Stability(Experimental)
public interface BridgeOutputProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for the bridge output.
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.*;
Bridge bridge;
BridgeOutputConfiguration bridgeOutputConfiguration;
BridgeOutputProps bridgeOutputProps = BridgeOutputProps.builder()
.bridge(bridge)
.output(bridgeOutputConfiguration)
// the properties below are optional
.bridgeOutputName("bridgeOutputName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeOutputPropsstatic final classAn implementation forBridgeOutputProps -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeOutputProps.Builderbuilder()(experimental) The bridge that you want to update.default String(experimental) Bridge output name.(experimental) The network output configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridge
(experimental) The bridge that you want to update. -
getOutput
(experimental) The network output configuration. -
getBridgeOutputName
(experimental) Bridge output name.Default: - autogenerated
-
builder
- Returns:
- a
BridgeOutputProps.BuilderofBridgeOutputProps
-