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();
 
  • Method Details

    • getBridge

      @Stability(Experimental) @NotNull IBridge getBridge()
      (experimental) The bridge that you want to update.
    • getOutput

      @Stability(Experimental) @NotNull BridgeOutputConfiguration getOutput()
      (experimental) The network output configuration.
    • getBridgeOutputName

      @Stability(Experimental) @Nullable default String getBridgeOutputName()
      (experimental) Bridge output name.

      Default: - autogenerated

    • builder

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