Interface SourceSrtCaller

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, SourceBase
All Known Implementing Classes:
SourceSrtCaller.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.229Z") @Stability(Experimental) public interface SourceSrtCaller extends software.amazon.jsii.JsiiSerializable, SourceBase
(experimental) Configuration for SRT Caller.

Example:

 Stack stack;
 Flow flow = Flow.Builder.create(stack, "MyFlow")
         .source(SourceConfiguration.srtCaller(SourceSrtCaller.builder()
                 .flowSourceName("remote-source")
                 .sourceListenerAddress("203.0.113.50")
                 .sourceListenerPort(5000)
                 .minLatency(Duration.millis(200))
                 .build()))
         .build();
 
  • Method Details

    • getSourceListenerAddress

      @Stability(Experimental) @NotNull String getSourceListenerAddress()
      (experimental) Source IP or domain name for SRT-caller protocol.
    • getSourceListenerPort

      @Stability(Experimental) @NotNull Number getSourceListenerPort()
      (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.

    • getDecryption

      @Stability(Experimental) @Nullable default SrtPasswordEncryption getDecryption()
      (experimental) SRT Decryption options.

      Default: - no decryption

    • getMaxBitrate

      @Stability(Experimental) @Nullable default Bitrate getMaxBitrate()
      (experimental) The maximum bitrate for streams.

      Default: - no maximum bitrate

    • getMaxLatency

      @Stability(Experimental) @Nullable default Duration getMaxLatency()
      (experimental) The maximum latency in milliseconds for SRT-based streams.

      Default: - no maximum latency

    • getMinLatency

      @Stability(Experimental) @Nullable default Duration getMinLatency()
      (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

    • getStreamId

      @Stability(Experimental) @Nullable default String getStreamId()
      (experimental) The stream ID that you want to use for the transport.

      Default: - no stream ID

    • getVpcInterface

      @Stability(Experimental) @Nullable default VpcInterfaceConfig getVpcInterface()
      (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

    • builder

      @Stability(Experimental) static SourceSrtCaller.Builder builder()
      Returns:
      a SourceSrtCaller.Builder of SourceSrtCaller