Interface RtpOutputConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
RistOutputConfig, RtpFecOutputConfig
All Known Implementing Classes:
RistOutputConfig.Jsii$Proxy, RtpFecOutputConfig.Jsii$Proxy, RtpOutputConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:28.414Z") @Stability(Experimental) public interface RtpOutputConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration options for RTP outputs.

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.alpha.*;
 import software.amazon.awscdk.*;
 RtpOutputConfig rtpOutputConfig = RtpOutputConfig.builder()
         .destination("destination")
         .port(123)
         // the properties below are optional
         .smoothingLatency(Duration.minutes(30))
         .vpcInterfaceAttachmentName("vpcInterfaceAttachmentName")
         .build();
 
  • Method Details

    • getDestination

      @Stability(Experimental) @NotNull String getDestination()
      (experimental) The IP address where you want to send the output.
    • getPort

      @Stability(Experimental) @NotNull Number getPort()
      (experimental) The port to use when content is distributed to this output.
    • getSmoothingLatency

      @Stability(Experimental) @Nullable default Duration getSmoothingLatency()
      (experimental) The smoothing latency for RIST, RTP, and RTP-FEC streams.

      Default: - no smoothing latency

    • getVpcInterfaceAttachmentName

      @Stability(Experimental) @Nullable default String getVpcInterfaceAttachmentName()
      (experimental) The name of the VPC interface attachment to use for this output.

      Default: - no VPC interface attachment

    • builder

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