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

.NET
Go
Java
Python
TypeScript