SourceSrtCaller

class aws_cdk.aws_mediaconnect_alpha.SourceSrtCaller(*, description=None, flow_source_name=None, source_listener_address, source_listener_port, decryption=None, max_bitrate=None, max_latency=None, min_latency=None, stream_id=None, vpc_interface=None)

Bases: SourceBase

(experimental) Configuration for SRT Caller.

Parameters:
  • description (Optional[str]) – (experimental) A description of the source. This description appears only on the MediaConnect console and will not be seen by the end user. Default: - no description

  • flow_source_name (Optional[str]) – (experimental) The name of the source. Default: - a name is generated automatically

  • source_listener_address (str) – (experimental) Source IP or domain name for SRT-caller protocol.

  • source_listener_port (Union[int, float]) – (experimental) Source port for SRT-caller protocol. Valid range: 1024–65535. Ports 2077 and 2088 are reserved by MediaConnect for Zixi traffic and cannot be used for SRT Caller.

  • decryption (Union[SrtPasswordEncryption, Dict[str, Any], None]) – (experimental) SRT Decryption options. Default: - no decryption

  • max_bitrate (Optional[Bitrate]) – (experimental) The maximum bitrate for streams. Default: - no maximum bitrate

  • max_latency (Optional[Duration]) – (experimental) The maximum latency in milliseconds for SRT-based streams. Default: - no maximum latency

  • min_latency (Optional[Duration]) – (experimental) The minimum latency in milliseconds for SRT-based streams. The value you set on your MediaConnect source represents the minimal potential latency of that connection. The latency of the stream is set to the higher of the sender’s minimum latency and the receiver’s minimum latency. Default: - no minimum latency

  • stream_id (Optional[str]) – (experimental) The stream ID that you want to use for the transport. Default: - no stream ID

  • vpc_interface (Union[VpcInterfaceConfig, Dict[str, Any], None]) – (experimental) Optional VPC interface for the outbound SRT Caller connection. SRT Caller initiates the connection to the configured sourceListenerAddress and sourceListenerPort, so no CIDR allow list is needed. Default: - outbound connection via the public internet; no VPC interface

Stability:

experimental

ExampleMetadata:

infused

Example:

# stack: Stack


flow = Flow(stack, "MyFlow",
    source=SourceConfiguration.srt_caller(
        flow_source_name="remote-source",
        source_listener_address="203.0.113.50",
        source_listener_port=5000,
        min_latency=Duration.millis(200)
    )
)

Attributes

decryption

(experimental) SRT Decryption options.

Default:
  • no decryption

Stability:

experimental

description

(experimental) A description of the source.

This description appears only on the MediaConnect console and will not be seen by the end user.

Default:
  • no description

Stability:

experimental

flow_source_name

(experimental) The name of the source.

Default:
  • a name is generated automatically

Stability:

experimental

max_bitrate

(experimental) The maximum bitrate for streams.

Default:
  • no maximum bitrate

Stability:

experimental

max_latency

(experimental) The maximum latency in milliseconds for SRT-based streams.

Default:
  • no maximum latency

Stability:

experimental

min_latency

(experimental) The minimum latency in milliseconds for SRT-based streams.

The value you set on your MediaConnect source represents the minimal potential latency of that connection. The latency of the stream is set to the higher of the sender’s minimum latency and the receiver’s minimum latency.

Default:
  • no minimum latency

Stability:

experimental

source_listener_address

(experimental) Source IP or domain name for SRT-caller protocol.

Stability:

experimental

source_listener_port

(experimental) Source port for SRT-caller protocol.

Valid range: 1024–65535. Ports 2077 and 2088 are reserved by MediaConnect for Zixi traffic and cannot be used for SRT Caller.

Stability:

experimental

stream_id

(experimental) The stream ID that you want to use for the transport.

Default:
  • no stream ID

Stability:

experimental

vpc_interface

(experimental) Optional VPC interface for the outbound SRT Caller connection.

SRT Caller initiates the connection to the configured sourceListenerAddress and sourceListenerPort, so no CIDR allow list is needed.

Default:
  • outbound connection via the public internet; no VPC interface

Stability:

experimental