@Stability(value=Stable)
public static interface CfnChannel.FecOutputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is UdpOutputSettings.
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.medialive.*;
FecOutputSettingsProperty fecOutputSettingsProperty = FecOutputSettingsProperty.builder()
.columnDepth(123)
.includeFec("includeFec")
.rowLength(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.FecOutputSettingsProperty.Builder
A builder for
CfnChannel.FecOutputSettingsProperty |
static class |
CfnChannel.FecOutputSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.FecOutputSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.FecOutputSettingsProperty.Builder |
builder() |
default Number |
getColumnDepth()
The parameter D from SMPTE 2022-1.
|
default String |
getIncludeFec()
Enables column only or column and row-based FEC.
|
default Number |
getRowLength()
The parameter L from SMPTE 2022-1.
|
@Stability(value=Stable) @Nullable default Number getColumnDepth()
The height of the FEC protection matrix. The number of transport stream packets per column error correction packet. The number must be between 4 and 20, inclusive.
@Stability(value=Stable) @Nullable default String getIncludeFec()
@Stability(value=Stable) @Nullable default Number getRowLength()
The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.
@Stability(value=Stable) static CfnChannel.FecOutputSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.