Interface CfnChannel.H265SettingsProperty

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

@Stability(Stable) public static interface CfnChannel.H265SettingsProperty extends software.amazon.jsii.JsiiSerializable
H265 Settings.

The parent of this entity is VideoCodecSettings.

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.*;
 H265SettingsProperty h265SettingsProperty = H265SettingsProperty.builder()
         .adaptiveQuantization("adaptiveQuantization")
         .afdSignaling("afdSignaling")
         .alternativeTransferFunction("alternativeTransferFunction")
         .bitrate(123)
         .bufSize(123)
         .colorMetadata("colorMetadata")
         .colorSpaceSettings(H265ColorSpaceSettingsProperty.builder()
                 .colorSpacePassthroughSettings(ColorSpacePassthroughSettingsProperty.builder().build())
                 .dolbyVision81Settings(DolbyVision81SettingsProperty.builder().build())
                 .hdr10Settings(Hdr10SettingsProperty.builder()
                         .maxCll(123)
                         .maxFall(123)
                         .build())
                 .rec601Settings(Rec601SettingsProperty.builder().build())
                 .rec709Settings(Rec709SettingsProperty.builder().build())
                 .build())
         .filterSettings(H265FilterSettingsProperty.builder()
                 .temporalFilterSettings(TemporalFilterSettingsProperty.builder()
                         .postFilterSharpening("postFilterSharpening")
                         .strength("strength")
                         .build())
                 .build())
         .fixedAfd("fixedAfd")
         .flickerAq("flickerAq")
         .framerateDenominator(123)
         .framerateNumerator(123)
         .gopClosedCadence(123)
         .gopSize(123)
         .gopSizeUnits("gopSizeUnits")
         .level("level")
         .lookAheadRateControl("lookAheadRateControl")
         .maxBitrate(123)
         .minIInterval(123)
         .parDenominator(123)
         .parNumerator(123)
         .profile("profile")
         .qvbrQualityLevel(123)
         .rateControlMode("rateControlMode")
         .scanType("scanType")
         .sceneChangeDetect("sceneChangeDetect")
         .slices(123)
         .tier("tier")
         .timecodeBurninSettings(TimecodeBurninSettingsProperty.builder()
                 .fontSize("fontSize")
                 .position("position")
                 .prefix("prefix")
                 .build())
         .timecodeInsertion("timecodeInsertion")
         .build();
 

See Also: