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-07-31T10:49:55.223Z") @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.*;
 import software.amazon.awscdk.services.ec2.*;
 import software.amazon.awscdk.services.iam.*;
 NetworkInterface networkInterface;
 Role role;
 SecurityGroup securityGroup;
 Subnet subnet;
 RtpFecOutputConfig rtpFecOutputConfig = RtpFecOutputConfig.builder()
         .destination("destination")
         .port(123)
         // the properties below are optional
         .smoothingLatency(Duration.minutes(30))
         .vpcInterfaceAttachment(VpcInterfaceConfig.builder()
                 .name("name")
                 .role(role)
                 .securityGroups(List.of(securityGroup))
                 .subnet(subnet)
                 // the properties below are optional
                 .networkInterfaceIds(List.of("networkInterfaceIds"))
                 .networkInterfaceType(networkInterface)
                 .build())
         .build();