interface RouterInputEndpoint
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterInputEndpoint |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterInputEndpoint |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterInputEndpoint |
Python | aws_cdk.aws_mediaconnect_alpha.RouterInputEndpoint |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterInputEndpoint |
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 {@link IRouterInput.endpoints}.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const routerInputEndpoint: mediaconnect_alpha.RouterInputEndpoint = {
port: 123,
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| port | number | The listening port at which the router input accepts upstream content. |
| url | string | The full ingest URL combining protocol scheme, IP, and port. |
port
Type:
number
The listening port at which the router input accepts upstream content.
url
Type:
string
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.

.NET
Go
Java
Python
TypeScript (