interface SrtListenerRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_SrtListenerRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » SrtListenerRouterOutputConfigurationProperty |
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption 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 srtListenerRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty = {
minimumLatencyMilliseconds: 123,
port: 123,
// the properties below are optional
encryptionConfiguration: {
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. |
| encryption | IResolvable | Srt | Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption 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.
encryptionConfiguration?
Type:
IResolvable | Srt
(optional)
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.

.NET
Go
Java
Python
TypeScript