interface SrtCallerRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_SrtCallerRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » SrtCallerRouterOutputConfigurationProperty |
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, 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 srtCallerRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty = {
destinationAddress: 'destinationAddress',
destinationPort: 123,
minimumLatencyMilliseconds: 123,
// the properties below are optional
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination IP address for the SRT protocol in caller mode. |
| destination | number | The destination port number for the SRT protocol in caller mode. |
| minimum | number | The minimum latency in milliseconds for the SRT protocol in caller mode. |
| encryption | IResolvable | Srt | Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters. |
| stream | string | The stream ID for the SRT protocol in caller mode. |
destinationAddress
Type:
string
The destination IP address for the SRT protocol in caller mode.
destinationPort
Type:
number
The destination port number for the SRT protocol in caller mode.
minimumLatencyMilliseconds
Type:
number
The minimum latency in milliseconds for the SRT protocol in caller mode.
encryptionConfiguration?
Type:
IResolvable | Srt
(optional)
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
streamId?
Type:
string
(optional)
The stream ID for the SRT protocol in caller mode.

.NET
Go
Java
Python
TypeScript