interface SrtCallerDestinationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtCallerDestinationProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtCallerDestinationProps |
Java | software.amazon.awscdk.services.medialive.alpha.SrtCallerDestinationProps |
Python | aws_cdk.aws_medialive_alpha.SrtCallerDestinationProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtCallerDestinationProps |
SRT caller destination properties.
Example
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
declare const passphrase: secretsmanager.ISecret;
// SRT caller to a remote listener
medialive.OutputGroupConfiguration.srt({
name: 'srt_out',
outputs: [{
encodes: [video, audio],
outputName: 'srt_caller',
destinations: [medialive.SrtDestination.caller({
address: '203.0.113.20',
port: 5000,
encryptionPassphraseSecret: passphrase,
})],
}],
});
// SRT listener โ MediaLive waits for the downstream system to connect
medialive.OutputGroupConfiguration.srt({
name: 'srt_listen',
outputs: [{
encodes: [video, audio],
outputName: 'srt_listener',
destinations: [medialive.SrtDestination.listener({
listenerPort: 5000,
encryptionPassphraseSecret: passphrase,
})],
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The address (IP or host) of the SRT listener to connect to. |
| encryption | ISecret | The Secrets Manager secret containing the encryption passphrase. |
| port | number | The port of the SRT listener to connect to. |
| stream | string | The stream ID for the SRT connection. |
address
Type:
string
The address (IP or host) of the SRT listener to connect to.
encryptionPassphraseSecret
Type:
ISecret
The Secrets Manager secret containing the encryption passphrase.
[disable-awslint:prefer-ref-interface]
port
Type:
number
The port of the SRT listener to connect to.
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID for the SRT connection.

.NET
Go
Java
Python
TypeScript (