Interface CfnRouterInputPropsMixin.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.Mixins.Preview.AWS.MediaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnRouterInputPropsMixin.ISrtListenerRouterInputConfigurationProperty
Syntax (vb)
Public Interface CfnRouterInputPropsMixin.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.Mixins.Preview.AWS.MediaConnect.Mixins;
var srtListenerRouterInputConfigurationProperty = new SrtListenerRouterInputConfigurationProperty {
DecryptionConfiguration = new SrtDecryptionConfigurationProperty {
EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
RoleArn = "roleArn",
SecretArn = "secretArn"
}
},
MinimumLatencyMilliseconds = 123,
Port = 123
};
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 CfnRouterInputPropsMixin.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; }