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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSourceSrtCallerstatic final classAn implementation forSourceSrtCaller -
Method Summary
Modifier and TypeMethodDescriptionstatic SourceSrtCaller.Builderbuilder()default SrtPasswordEncryption(experimental) SRT Decryption options.default Bitrate(experimental) The maximum bitrate for streams.default Duration(experimental) The maximum latency in milliseconds for SRT-based streams.default Duration(experimental) The minimum latency in milliseconds for SRT-based streams.(experimental) Source IP or domain name for SRT-caller protocol.(experimental) Source port for SRT-caller protocol.default String(experimental) The stream ID that you want to use for the transport.default VpcInterfaceConfig(experimental) Optional VPC interface for the outbound SRT Caller connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.mediaconnect.alpha.SourceBase
getDescription, getFlowSourceName
-
Method Details
-
getSourceListenerAddress
(experimental) Source IP or domain name for SRT-caller protocol. -
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
(experimental) SRT Decryption options.Default: - no decryption
-
getMaxBitrate
(experimental) The maximum bitrate for streams.Default: - no maximum bitrate
-
getMaxLatency
(experimental) The maximum latency in milliseconds for SRT-based streams.Default: - no maximum latency
-
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
(experimental) The stream ID that you want to use for the transport.Default: - no stream ID
-
getVpcInterface
(experimental) Optional VPC interface for the outbound SRT Caller connection.SRT Caller initiates the connection to the configured
sourceListenerAddressandsourceListenerPort, so no CIDR allow list is needed.Default: - outbound connection via the public internet; no VPC interface
-
builder
- Returns:
- a
SourceSrtCaller.BuilderofSourceSrtCaller
-