aws-cdk-lib.aws_medialive.CfnChannel.FecOutputSettingsProperty

interface FecOutputSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.FecOutputSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_FecOutputSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.FecOutputSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.FecOutputSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » FecOutputSettingsProperty

The settings for FEC.

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const fecOutputSettingsProperty: medialive.CfnChannel.FecOutputSettingsProperty = {
  columnDepth: 123,
  includeFec: 'includeFec',
  rowLength: 123,
};

Properties

NameTypeDescription
columnDepth?numberThe parameter D from SMPTE 2022-1.
includeFec?stringEnables column only or column and row-based FEC.
rowLength?numberThe parameter L from SMPTE 2022-1.

columnDepth?

Type: number (optional)

The parameter D from SMPTE 2022-1.

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.


includeFec?

Type: string (optional)

Enables column only or column and row-based FEC.


rowLength?

Type: number (optional)

The parameter L from SMPTE 2022-1.

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.