Interface RtpFecOutputConfig

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:28.414Z") @Stability(Experimental) public interface RtpFecOutputConfig extends software.amazon.jsii.JsiiSerializable, RtpOutputConfig
(experimental) Configuration options for RTP-FEC 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.*;
 RtpFecOutputConfig rtpFecOutputConfig = RtpFecOutputConfig.builder()
         .destination("destination")
         .port(123)
         // the properties below are optional
         .smoothingLatency(Duration.minutes(30))
         .vpcInterfaceAttachmentName("vpcInterfaceAttachmentName")
         .build();