interface SrtCallerRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputPropsMixin_SrtCallerRouterInputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const srtCallerRouterInputConfigurationProperty: mediaconnect.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