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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRouterInputEndpointstatic final classAn implementation forRouterInputEndpoint -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPort
(experimental) The listening port at which the router input accepts upstream content. -
getUrl
(experimental) The full ingest URL combining protocol scheme, IP, and port.For example:
srt://203.0.113.10:5000orrtp://203.0.113.10:5001. -
builder
- Returns:
- a
RouterInputEndpoint.BuilderofRouterInputEndpoint
-