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.
Inherited Members
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
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
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
Remarks
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
Remarks
SourceAddress
The source IP address for the SRT protocol in caller mode.
public string? SourceAddress { get; set; }
Property Value
Remarks
SourcePort
The source port number for the SRT protocol in caller mode.
public double? SourcePort { get; set; }
Property Value
Remarks
StreamId
The stream ID for the SRT protocol in caller mode.
public string? StreamId { get; set; }