java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.medialive.alpha.FecMode
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.051Z") @Stability(Experimental) public class FecMode extends software.amazon.jsii.JsiiObject
(experimental) Enables column-only or column-and-row FEC for a UDP output.

Example:

 EncodeConfiguration video;
 OutputGroupConfiguration.udp(UdpOutputGroupProps.builder()
         .name("udp")
         .destinations(List.of(UdpOutputDestination.rtp(TransportOutputDestinationProps.builder().address("203.0.113.5").port(5000).build())))
         .outputs(List.of(UdpOutputDefinition.builder()
                 .encodes(List.of(video))
                 .outputName("ts")
                 .fec(FecOutputSettings.builder().mode(FecMode.COLUMN_AND_ROW).columnDepth(10).rowLength(10).build())
                 .build()))
         .build());
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final FecMode
    (experimental) Column-only FEC.
    static final FecMode
    (experimental) Column-and-row FEC (more robust).
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    FecMode(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    FecMode(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The underlying string value passed to CloudFormation.
    static FecMode
    of(String value)
    (experimental) A value not yet modelled by AWS CDK.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • COLUMN

      @Stability(Experimental) public static final FecMode COLUMN
      (experimental) Column-only FEC.
    • COLUMN_AND_ROW

      @Stability(Experimental) public static final FecMode COLUMN_AND_ROW
      (experimental) Column-and-row FEC (more robust).
  • Constructor Details

    • FecMode

      protected FecMode(software.amazon.jsii.JsiiObjectRef objRef)
    • FecMode

      protected FecMode(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • of

      @Stability(Experimental) @NotNull public static FecMode of(@NotNull String value)
      (experimental) A value not yet modelled by AWS CDK.

      Parameters:
      value - This parameter is required.
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The underlying string value passed to CloudFormation.