Show / Hide Table of Contents

Class CfnRouterInput.MergeRouterInputProtocolConfigurationProperty

Inheritance
object
CfnRouterInput.MergeRouterInputProtocolConfigurationProperty
Implements
CfnRouterInput.IMergeRouterInputProtocolConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRouterInput.MergeRouterInputProtocolConfigurationProperty : CfnRouterInput.IMergeRouterInputProtocolConfigurationProperty
Syntax (vb)
Public Class CfnRouterInput.MergeRouterInputProtocolConfigurationProperty Implements CfnRouterInput.IMergeRouterInputProtocolConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-mergerouterinputprotocolconfiguration.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 mergeRouterInputProtocolConfigurationProperty = new MergeRouterInputProtocolConfigurationProperty {
                 Rist = new RistRouterInputConfigurationProperty {
                     Port = 123,
                     RecoveryLatencyMilliseconds = 123
                 },
                 Rtp = new RtpRouterInputConfigurationProperty {
                     Port = 123,

                     // the properties below are optional
                     ForwardErrorCorrection = "forwardErrorCorrection"
                 }
             };

Synopsis

Constructors

MergeRouterInputProtocolConfigurationProperty()

Properties

Rist

The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.

Rtp

The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.

Constructors

MergeRouterInputProtocolConfigurationProperty()

public MergeRouterInputProtocolConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routerinput-mergerouterinputprotocolconfiguration.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 mergeRouterInputProtocolConfigurationProperty = new MergeRouterInputProtocolConfigurationProperty {
                 Rist = new RistRouterInputConfigurationProperty {
                     Port = 123,
                     RecoveryLatencyMilliseconds = 123
                 },
                 Rtp = new RtpRouterInputConfigurationProperty {
                     Port = 123,

                     // the properties below are optional
                     ForwardErrorCorrection = "forwardErrorCorrection"
                 }
             };

Properties

Rist

The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.

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

object

Remarks

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

Type union: either IResolvable or CfnRouterInput.IRistRouterInputConfigurationProperty

Rtp

The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.

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

object

Remarks

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

Type union: either IResolvable or CfnRouterInput.IRtpRouterInputConfigurationProperty

Implements

CfnRouterInput.IMergeRouterInputProtocolConfigurationProperty
Back to top Generated by DocFX