Interface CfnChannelPropsMixin.FrameCaptureSettingsProperty

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

@Stability(Stable) public static interface CfnChannelPropsMixin.FrameCaptureSettingsProperty extends software.amazon.jsii.JsiiSerializable
The frame capture settings.

The parent of this entity is VideoCodecSettings.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.medialive.*;
 FrameCaptureSettingsProperty frameCaptureSettingsProperty = FrameCaptureSettingsProperty.builder()
         .captureInterval(123)
         .captureIntervalUnits("captureIntervalUnits")
         .timecodeBurninSettings(TimecodeBurninSettingsProperty.builder()
                 .fontSize("fontSize")
                 .position("position")
                 .prefix("prefix")
                 .build())
         .build();
 

See Also: