Show / Hide Table of Contents

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

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.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

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 CfnRouterInputPropsMixin.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