Interface CfnRouterInputPropsMixin.MergeRouterInputProtocolConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInputPropsMixin.MergeRouterInputProtocolConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInputPropsMixin
@Stability(Stable)
public static interface CfnRouterInputPropsMixin.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.cfnpropertymixins.services.mediaconnect.*;
MergeRouterInputProtocolConfigurationProperty mergeRouterInputProtocolConfigurationProperty = MergeRouterInputProtocolConfigurationProperty.builder()
.rist(RistRouterInputConfigurationProperty.builder()
.port(123)
.recoveryLatencyMilliseconds(123)
.build())
.rtp(RtpRouterInputConfigurationProperty.builder()
.forwardErrorCorrection("forwardErrorCorrection")
.port(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInputPropsMixin.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
IResolvableorCfnRouterInputPropsMixin.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
IResolvableorCfnRouterInputPropsMixin.RtpRouterInputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInputPropsMixin.MergeRouterInputProtocolConfigurationProperty.Builder builder()
-