Interface CfnRouterInput.MergeRouterInputProtocolConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.MergeRouterInputProtocolConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.MergeRouterInputProtocolConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.mediaconnect.*;
MergeRouterInputProtocolConfigurationProperty mergeRouterInputProtocolConfigurationProperty = MergeRouterInputProtocolConfigurationProperty.builder()
.rist(RistRouterInputConfigurationProperty.builder()
.port(123)
.recoveryLatencyMilliseconds(123)
.build())
.rtp(RtpRouterInputConfigurationProperty.builder()
.port(123)
// the properties below are optional
.forwardErrorCorrection("forwardErrorCorrection")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInput.MergeRouterInputProtocolConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetRist()The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.default ObjectgetRtp()The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRist
The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.Returns union: either
IResolvableorCfnRouterInput.RistRouterInputConfigurationProperty- See Also:
-
getRtp
The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.Returns union: either
IResolvableorCfnRouterInput.RtpRouterInputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInput.MergeRouterInputProtocolConfigurationProperty.Builder builder()
-