Show / Hide Table of Contents

Class CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty

The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.

Inheritance
object
CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty
Implements
CfnRouterInputPropsMixin.ISrtCallerRouterInputConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty : CfnRouterInputPropsMixin.ISrtCallerRouterInputConfigurationProperty
Syntax (vb)
Public Class CfnRouterInputPropsMixin.SrtCallerRouterInputConfigurationProperty Implements CfnRouterInputPropsMixin.ISrtCallerRouterInputConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtcallerrouterinputconfiguration.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 srtCallerRouterInputConfigurationProperty = new SrtCallerRouterInputConfigurationProperty {
                 DecryptionConfiguration = new SrtDecryptionConfigurationProperty {
                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },
                 MinimumLatencyMilliseconds = 123,
                 SourceAddress = "sourceAddress",
                 SourcePort = 123,
                 StreamId = "streamId"
             };

Synopsis

Constructors

SrtCallerRouterInputConfigurationProperty()

The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.

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

SourceAddress

The source IP address for the SRT protocol in caller mode.

SourcePort

The source port number for the SRT protocol in caller mode.

StreamId

The stream ID for the SRT protocol in caller mode.

Constructors

SrtCallerRouterInputConfigurationProperty()

The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.

public SrtCallerRouterInputConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-srtcallerrouterinputconfiguration.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 srtCallerRouterInputConfigurationProperty = new SrtCallerRouterInputConfigurationProperty {
                 DecryptionConfiguration = new SrtDecryptionConfigurationProperty {
                     EncryptionKey = new SecretsManagerEncryptionKeyConfigurationProperty {
                         RoleArn = "roleArn",
                         SecretArn = "secretArn"
                     }
                 },
                 MinimumLatencyMilliseconds = 123,
                 SourceAddress = "sourceAddress",
                 SourcePort = 123,
                 StreamId = "streamId"
             };

Properties

DecryptionConfiguration

Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters.

public object? DecryptionConfiguration { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnRouterInputPropsMixin.ISrtDecryptionConfigurationProperty

MinimumLatencyMilliseconds

The minimum latency in milliseconds for the SRT protocol in caller mode.

public double? MinimumLatencyMilliseconds { get; set; }
Property Value

double?

Remarks

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

SourceAddress

The source IP address for the SRT protocol in caller mode.

public string? SourceAddress { get; set; }
Property Value

string

Remarks

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

SourcePort

The source port number for the SRT protocol in caller mode.

public double? SourcePort { get; set; }
Property Value

double?

Remarks

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

StreamId

The stream ID for the SRT protocol in caller mode.

public string? StreamId { get; set; }
Property Value

string

Remarks

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

Implements

CfnRouterInputPropsMixin.ISrtCallerRouterInputConfigurationProperty
Back to top Generated by DocFX