interface SrtCallerOutputConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SrtCallerOutputConfig |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SrtCallerOutputConfig |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SrtCallerOutputConfig |
Python | aws_cdk.aws_mediaconnect_alpha.SrtCallerOutputConfig |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SrtCallerOutputConfig |
Configuration options for SRT Caller outputs.
Example
declare const stack: Stack;
declare const flow: Flow;
declare const role: iam.IRole;
declare const secret: secretsmanager.ISecret;
new FlowOutput(stack, 'SrtOutput', {
flow,
output: OutputConfiguration.srtCaller({
destination: '203.0.113.100',
port: 7000,
encryption: { role, secret },
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The IP address where you want to send the output. |
| port | number | The port to use when content is distributed to this output. |
| encryption? | Srt | SRT password encryption for this output. |
| min | Duration | The minimum latency in milliseconds for SRT-based streams. |
| stream | string | The stream ID that you want to use for this transport. |
| vpc | Vpc | The VPC interface attachment to use for this output. |
destination
Type:
string
The IP address where you want to send the output.
port
Type:
number
The port to use when content is distributed to this output.
encryption?
Type:
Srt
(optional, default: no encryption)
SRT password encryption for this output.
minLatency?
Type:
Duration
(optional, default: no minimum latency)
The minimum latency in milliseconds for SRT-based streams.
The value you set on your MediaConnect output 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 this transport.
vpcInterfaceAttachment?
Type:
Vpc
(optional, default: no VPC interface attachment)
The VPC interface attachment to use for this output.

.NET
Go
Java
Python
TypeScript (