interface SrtCallerRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_SrtCallerRouterInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const srtCallerRouterInputConfigurationProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty = {
decryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
minimumLatencyMilliseconds: 123,
sourceAddress: 'sourceAddress',
sourcePort: 123,
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| decryption | IResolvable | Srt | Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters. |
| 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. |
| stream | string | The stream ID 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.
minimumLatencyMilliseconds?
Type:
number
(optional)
The minimum latency in milliseconds for the SRT protocol in caller mode.
sourceAddress?
Type:
string
(optional)
The source IP address for the SRT protocol in caller mode.
sourcePort?
Type:
number
(optional)
The source port number for the SRT protocol in caller mode.
streamId?
Type:
string
(optional)
The stream ID for the SRT protocol in caller mode.

.NET
Go
Java
Python
TypeScript