Interface CfnChannel.Mpeg2SettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.Mpeg2SettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.Mpeg2SettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for the MPEG-2 codec in the output.

The parent of this entity is VideoCodecSetting.

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.*;
 Mpeg2SettingsProperty mpeg2SettingsProperty = Mpeg2SettingsProperty.builder()
         .adaptiveQuantization("adaptiveQuantization")
         .afdSignaling("afdSignaling")
         .colorMetadata("colorMetadata")
         .colorSpace("colorSpace")
         .displayAspectRatio("displayAspectRatio")
         .filterSettings(Mpeg2FilterSettingsProperty.builder()
                 .temporalFilterSettings(TemporalFilterSettingsProperty.builder()
                         .postFilterSharpening("postFilterSharpening")
                         .strength("strength")
                         .build())
                 .build())
         .fixedAfd("fixedAfd")
         .framerateDenominator(123)
         .framerateNumerator(123)
         .gopClosedCadence(123)
         .gopNumBFrames(123)
         .gopSize(123)
         .gopSizeUnits("gopSizeUnits")
         .scanType("scanType")
         .subgopLength("subgopLength")
         .timecodeBurninSettings(TimecodeBurninSettingsProperty.builder()
                 .fontSize("fontSize")
                 .position("position")
                 .prefix("prefix")
                 .build())
         .timecodeInsertion("timecodeInsertion")
         .build();
 

See Also: