Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtlistenerrouterinputconfiguration.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtlistenerrouterinputconfiguration.html#cfn-mediaconnect-routerinput-srtlistenerrouterinputconfiguration-decryptionconfiguration

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

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtlistenerrouterinputconfiguration.html#cfn-mediaconnect-routerinput-srtlistenerrouterinputconfiguration-minimumlatencymilliseconds

Port

The port number for the SRT protocol in listener mode.

double Port { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtlistenerrouterinputconfiguration.html#cfn-mediaconnect-routerinput-srtlistenerrouterinputconfiguration-port

Back to top Generated by DocFX