Interface CfnChannel.Av1ColorSpaceSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.Av1ColorSpaceSettingsProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 Object colorSpacePassthroughSettings;
 Object rec601Settings;
 Object rec709Settings;
 Av1ColorSpaceSettingsProperty av1ColorSpaceSettingsProperty = Av1ColorSpaceSettingsProperty.builder()
         .colorSpacePassthroughSettings(colorSpacePassthroughSettings)
         .hdr10Settings(Hdr10SettingsProperty.builder()
                 .maxCll(123)
                 .maxFall(123)
                 .build())
         .rec601Settings(rec601Settings)
         .rec709Settings(rec709Settings)
         .build();
 

See Also: