java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.mediaconnect.alpha.BridgeProtocol
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.136Z") @Stability(Experimental) public class BridgeProtocol extends software.amazon.jsii.JsiiObject
(experimental) Options for bridge network source and output protocols.

Example:

 Stack stack;
 GatewayNetwork productionNetwork = GatewayNetwork.define(GatewayNetworkDefineProps.builder()
         .cidrBlock("192.168.1.0/24")
         .name("production-network")
         .build());
 Gateway gateway = Gateway.Builder.create(stack, "MyGateway")
         .gatewayName("my-gateway")
         .egressCidrBlocks(List.of("10.0.0.0/16"))
         .networks(List.of(productionNetwork))
         .build();
 Bridge ingressBridge = Bridge.Builder.create(stack, "MyIngressBridge")
         .bridgeName("my-ingress-bridge")
         .config(BridgeConfiguration.ingress(IngressBridgeConfiguration.builder()
                 .maxBitrate(Bitrate.mbps(10))
                 .maxOutputs(2)
                 .networkSources(List.of(BridgeNetworkInput.builder()
                         .name("on-prem-source")
                         .source(BridgeNetworkSource.builder()
                                 .protocol(BridgeProtocol.RTP)
                                 .network(productionNetwork)
                                 .multicastIp("239.1.1.1")
                                 .port(5000)
                                 .build())
                         .build()))
                 .build()))
         .gateway(gateway)
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final BridgeProtocol
    (experimental) Option for RTP.
    static final BridgeProtocol
    (experimental) Option for RTP-FEC.
    static final BridgeProtocol
    (experimental) Option for UDP.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    BridgeProtocol(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    BridgeProtocol(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The bridge protocol string value.
    of(String value)
    (experimental) Use a custom bridge protocol value.
    (experimental) Returns the string value.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • RTP

      @Stability(Experimental) public static final BridgeProtocol RTP
      (experimental) Option for RTP.
    • RTP_FEC

      @Stability(Experimental) public static final BridgeProtocol RTP_FEC
      (experimental) Option for RTP-FEC.
    • UDP

      @Stability(Experimental) public static final BridgeProtocol UDP
      (experimental) Option for UDP.
  • Constructor Details

    • BridgeProtocol

      protected BridgeProtocol(software.amazon.jsii.JsiiObjectRef objRef)
    • BridgeProtocol

      protected BridgeProtocol(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • of

      @Stability(Experimental) @NotNull public static BridgeProtocol of(@NotNull String value)
      (experimental) Use a custom bridge protocol value.

      Parameters:
      value - The bridge protocol string value. This parameter is required.
    • toString

      @Stability(Experimental) @NotNull public String toString()
      (experimental) Returns the string value.
      Overrides:
      toString in class Object
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The bridge protocol string value.