Interface RtpOutputProtocolProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RtpOutputProtocolProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.224Z") @Stability(Experimental) public interface RtpOutputProtocolProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for RTP protocol configuration for outputs.

Example:

 RouterNetworkInterface networkInterface;
 RouterOutputConfiguration.standard(StandardOutputConfigurationProps.builder()
         .networkInterface(networkInterface)
         .protocol(RouterOutputProtocol.rtp(RtpOutputProtocolProps.builder()
                 .destinationAddress("10.0.0.1")
                 .port(5000)
                 .build()))
         .build());
 
  • Method Details

    • getDestinationAddress

      @Stability(Experimental) @NotNull String getDestinationAddress()
      (experimental) Destination IP address for RTP traffic.
    • getPort

      @Stability(Experimental) @NotNull Number getPort()
      (experimental) Port number for RTP traffic.
    • getForwardErrorCorrection

      @Stability(Experimental) @Nullable default ForwardErrorCorrection getForwardErrorCorrection()
      (experimental) Forward Error Correction setting.

      Default: - undefined; when omitted, MediaConnect applies ForwardErrorCorrection.DISABLED at deploy time

    • builder

      @Stability(Experimental) static RtpOutputProtocolProps.Builder builder()
      Returns:
      a RtpOutputProtocolProps.Builder of RtpOutputProtocolProps