Interface RouterInputEndpoint

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RouterInputEndpoint.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.213Z") @Stability(Experimental) public interface RouterInputEndpoint extends software.amazon.jsii.JsiiSerializable
(experimental) A single ingest endpoint where the router input listens for upstream content.

Failover and merge configurations expose two endpoints; standard configurations expose one. Returned by

invalid reference
IRouterInput.endpoints
.

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.*;
 RouterInputEndpoint routerInputEndpoint = RouterInputEndpoint.builder()
         .port(123)
         .url("url")
         .build();
 
  • Method Details

    • getPort

      @Stability(Experimental) @NotNull Number getPort()
      (experimental) The listening port at which the router input accepts upstream content.
    • getUrl

      @Stability(Experimental) @NotNull String getUrl()
      (experimental) The full ingest URL combining protocol scheme, IP, and port.

      For example: srt://203.0.113.10:5000 or rtp://203.0.113.10:5001.

    • builder

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