interface SrtListenerRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.SrtListenerRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_SrtListenerRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.SrtListenerRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.SrtListenerRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » SrtListenerRouterInputConfigurationProperty |
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and decryption key configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const srtListenerRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.SrtListenerRouterInputConfigurationProperty = {
minimumLatencyMilliseconds: 123,
port: 123,
// the properties below are optional
decryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| minimum | number | The minimum latency in milliseconds for the SRT protocol in listener mode. |
| port | number | The port number for the SRT protocol in listener mode. |
| decryption | IResolvable | Srt | Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters. |
minimumLatencyMilliseconds
Type:
number
The minimum latency in milliseconds for the SRT protocol in listener mode.
port
Type:
number
The port number for the SRT protocol in listener mode.
decryptionConfiguration?
Type:
IResolvable | Srt
(optional)
Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters.

.NET
Go
Java
Python
TypeScript