Interface CfnChannel.H264FilterSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.H264FilterSettingsProperty extends software.amazon.jsii.JsiiSerializable
Settings to configure video filters that apply to the H264 codec.

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.*;
 H264FilterSettingsProperty h264FilterSettingsProperty = H264FilterSettingsProperty.builder()
         .temporalFilterSettings(TemporalFilterSettingsProperty.builder()
                 .postFilterSharpening("postFilterSharpening")
                 .strength("strength")
                 .build())
         .build();
 

See Also: