interface SourceSrtCaller
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceSrtCaller |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceSrtCaller |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceSrtCaller |
Python | aws_cdk.aws_mediaconnect_alpha.SourceSrtCaller |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceSrtCaller |
Implements
Source
Configuration for SRT Caller.
Example
declare const stack: Stack;
const flow = new Flow(stack, 'MyFlow', {
source: SourceConfiguration.srtCaller({
flowSourceName: 'remote-source',
sourceListenerAddress: '203.0.113.50',
sourceListenerPort: 5000,
minLatency: Duration.millis(200),
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| source | string | Source IP or domain name for SRT-caller protocol. |
| source | number | Source port for SRT-caller protocol. |
| decryption? | Srt | SRT Decryption options. |
| description? | string | A description of the source. |
| flow | string | The name of the source. |
| max | Bitrate | The maximum bitrate for streams. |
| max | Duration | The maximum latency in milliseconds for SRT-based streams. |
| min | Duration | The minimum latency in milliseconds for SRT-based streams. |
| stream | string | The stream ID that you want to use for the transport. |
| vpc | Vpc | Optional VPC interface for the outbound SRT Caller connection. |
sourceListenerAddress
Type:
string
Source IP or domain name for SRT-caller protocol.
sourceListenerPort
Type:
number
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?
Type:
Srt
(optional, default: no decryption)
SRT Decryption options.
description?
Type:
string
(optional, default: no description)
A description of the source.
This description appears only on the MediaConnect console and will not be seen by the end user.
flowSourceName?
Type:
string
(optional, default: a name is generated automatically)
The name of the source.
maxBitrate?
Type:
Bitrate
(optional, default: no maximum bitrate)
The maximum bitrate for streams.
maxLatency?
Type:
Duration
(optional, default: no maximum latency)
The maximum latency in milliseconds for SRT-based streams.
minLatency?
Type:
Duration
(optional, default: no minimum latency)
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.
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID that you want to use for the transport.
vpcInterface?
Type:
Vpc
(optional, default: outbound connection via the public internet; no VPC interface)
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.

.NET
Go
Java
Python
TypeScript (