interface SrtListenerInputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtListenerInputProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtListenerInputProps |
Java | software.amazon.awscdk.services.medialive.alpha.SrtListenerInputProps |
Python | aws_cdk.aws_medialive_alpha.SrtListenerInputProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtListenerInputProps |
Properties for an SRT listener input.
Example
declare const stack: Stack;
declare const passphrase: secretsmanager.ISecret;
const sg = new medialive.InputSecurityGroup(stack, 'SrtSg', {
allowlistRules: ['203.0.113.0/24'],
});
new medialive.Input(stack, 'SrtListenerInput', {
inputName: 'srt-listener',
input: medialive.InputConfiguration.srtListener({
inputSecurityGroups: [sg],
minimumLatency: Duration.millis(500),
streamId: 'my-stream-id',
decryption: {
algorithm: medialive.SrtDecryptionAlgorithm.AES256,
passphraseSecret: passphrase,
},
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| input | IInput[] | The input security groups. |
| decryption? | Srt | Decryption settings for the SRT connection. |
| input | Channel | Whether this is a STANDARD (two-pipeline) or SINGLE_PIPELINE input. |
| minimum | Duration | The minimum latency. |
| stream | string | The stream ID that the upstream system uses when connecting to this listener. |
inputSecurityGroups
Type:
IInput[]
The input security groups.
Required for SRT listener inputs.
decryption?
Type:
Srt
(optional, default: no decryption)
Decryption settings for the SRT connection.
inputClass?
Type:
Channel
(optional, default: ChannelClass.SINGLE_PIPELINE)
Whether this is a STANDARD (two-pipeline) or SINGLE_PIPELINE input.
A STANDARD input creates two listener endpoints for pipeline redundancy.
minimumLatency?
Type:
Duration
(optional, default: service default)
The minimum latency.
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID that the upstream system uses when connecting to this listener.

.NET
Go
Java
Python
TypeScript (