Interface CfnRouterInput.ISrtListenerRouterInputConfigurationProperty
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and decryption key configuration.
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRouterInput.ISrtListenerRouterInputConfigurationProperty
Syntax (vb)
Public Interface CfnRouterInput.ISrtListenerRouterInputConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;
var srtListenerRouterInputConfigurationProperty = new SrtListenerRouterInputConfigurationProperty {
MinimumLatencyMilliseconds = 123,
Port = 123,
// the properties below are optional
DecryptionConfiguration = new SrtDecryptionConfigurationProperty {
EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
RoleArn = "roleArn",
SecretArn = "secretArn"
}
}
};
Synopsis
Properties
| DecryptionConfiguration | Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters. |
| MinimumLatencyMilliseconds | The minimum latency in milliseconds for the SRT protocol in listener mode. |
| Port | The port number for the SRT protocol in listener mode. |
Properties
DecryptionConfiguration
Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters.
object? DecryptionConfiguration { get; }
Property Value
Remarks
Type union: either IResolvable or CfnRouterInput.ISrtDecryptionConfigurationProperty
MinimumLatencyMilliseconds
The minimum latency in milliseconds for the SRT protocol in listener mode.
double MinimumLatencyMilliseconds { get; }
Property Value
Remarks
Port
The port number for the SRT protocol in listener mode.
double Port { get; }