Interface CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterOutputPropsMixin
@Stability(Stable)
public static interface CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty
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.*;
RouterOutputProtocolConfigurationProperty routerOutputProtocolConfigurationProperty = RouterOutputProtocolConfigurationProperty.builder()
.rist(RistRouterOutputConfigurationProperty.builder()
.destinationAddress("destinationAddress")
.destinationPort(123)
.build())
.rtp(RtpRouterOutputConfigurationProperty.builder()
.destinationAddress("destinationAddress")
.destinationPort(123)
.forwardErrorCorrection("forwardErrorCorrection")
.build())
.srtCaller(SrtCallerRouterOutputConfigurationProperty.builder()
.destinationAddress("destinationAddress")
.destinationPort(123)
.encryptionConfiguration(SrtEncryptionConfigurationProperty.builder()
.encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
.minimumLatencyMilliseconds(123)
.streamId("streamId")
.build())
.srtListener(SrtListenerRouterOutputConfigurationProperty.builder()
.encryptionConfiguration(SrtEncryptionConfigurationProperty.builder()
.encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
.minimumLatencyMilliseconds(123)
.port(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetRist()The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.default ObjectgetRtp()The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.default ObjectThe configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.default ObjectThe configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRist
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.RistRouterOutputConfigurationProperty- See Also:
-
getRtp
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.RtpRouterOutputConfigurationProperty- See Also:
-
getSrtCaller
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.SrtCallerRouterOutputConfigurationProperty- See Also:
-
getSrtListener
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.SrtListenerRouterOutputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty.Builder builder()
-