Interface CfnChannel.MotionGraphicsConfigurationProperty

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

@Stability(Stable) public static interface CfnChannel.MotionGraphicsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Settings to enable and configure the motion graphics overlay feature in the channel.

The parent of this entity is EncoderSettings.

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.*;
 MotionGraphicsConfigurationProperty motionGraphicsConfigurationProperty = MotionGraphicsConfigurationProperty.builder()
         .motionGraphicsInsertion("motionGraphicsInsertion")
         .motionGraphicsSettings(MotionGraphicsSettingsProperty.builder()
                 .htmlMotionGraphicsSettings(HtmlMotionGraphicsSettingsProperty.builder().build())
                 .build())
         .build();