RouterInputEndpoint

class aws_cdk.aws_mediaconnect_alpha.RouterInputEndpoint(*, port, url)

Bases: object

(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 {@link IRouterInput.endpoints}.

Parameters:
  • port (Union[int, float]) – (experimental) The listening port at which the router input accepts upstream content.

  • url (str) – (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.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_mediaconnect_alpha as mediaconnect_alpha

router_input_endpoint = mediaconnect_alpha.RouterInputEndpoint(
    port=123,
    url="url"
)

Attributes

port

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

Stability:

experimental

url

(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.

Stability:

experimental