Show / Hide Table of Contents

Class RouterInputEndpoint

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

Inheritance
object
RouterInputEndpoint
Implements
IRouterInputEndpoint
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaConnect.Alpha
Assembly: Amazon.CDK.AWS.MediaConnect.Alpha.dll
Syntax (csharp)
public class RouterInputEndpoint : IRouterInputEndpoint
Syntax (vb)
Public Class RouterInputEndpoint Implements 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

Constructors

RouterInputEndpoint()

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

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.

Constructors

RouterInputEndpoint()

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

public RouterInputEndpoint()
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"
             };

Properties

Port

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

public double Port { get; set; }
Property Value

double

Remarks

Stability: Experimental

Url

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

public string Url { get; set; }
Property Value

string

Remarks

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

Stability: Experimental

Implements

IRouterInputEndpoint
Back to top Generated by DocFX