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