Interface CfnChannel.H264ColorSpaceSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.H264ColorSpaceSettingsProperty extends software.amazon.jsii.JsiiSerializable
Settings for configuring color space in an H264 video encode.

The parent of this entity is H264Settings.

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.*;
 H264ColorSpaceSettingsProperty h264ColorSpaceSettingsProperty = H264ColorSpaceSettingsProperty.builder()
         .colorSpacePassthroughSettings(ColorSpacePassthroughSettingsProperty.builder().build())
         .rec601Settings(Rec601SettingsProperty.builder().build())
         .rec709Settings(Rec709SettingsProperty.builder().build())
         .build();
 

See Also: