Show / Hide Table of Contents

Interface IRouterInputEndpoint

(experimental) A single ingest endpoint where the router input listens for upstream content.

Namespace: Amazon.CDK.AWS.MediaConnect.Alpha
Assembly: Amazon.CDK.AWS.MediaConnect.Alpha.dll
Syntax (csharp)
public interface IRouterInputEndpoint
Syntax (vb)
Public Interface IRouterInputEndpoint
Remarks

Failover and merge configurations expose two endpoints; standard configurations expose one. Returned by {@link IRouterInput.endpoints}.

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaConnect.Alpha;

             var routerInputEndpoint = new RouterInputEndpoint {
                 Port = 123,
                 Url = "url"
             };

Synopsis

Properties

Port

(experimental) The listening port at which the router input accepts upstream content.

Url

(experimental) The full ingest URL combining protocol scheme, IP, and port.

Properties

Port

(experimental) The listening port at which the router input accepts upstream content.

double Port { get; }
Property Value

double

Remarks

Stability: Experimental

Url

(experimental) The full ingest URL combining protocol scheme, IP, and port.

string Url { get; }
Property Value

string

Remarks

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

Stability: Experimental

Back to top Generated by DocFX