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