Interface CfnChannel.H265ColorSpaceSettingsProperty

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

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

The parent of this entity is H265Settings.

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.*;
 H265ColorSpaceSettingsProperty h265ColorSpaceSettingsProperty = 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();
 

See Also: