Interface CfnChannel.FrameCaptureSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.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.services.medialive.*;
 FrameCaptureSettingsProperty frameCaptureSettingsProperty = FrameCaptureSettingsProperty.builder()
         .captureInterval(123)
         .captureIntervalUnits("captureIntervalUnits")
         .timecodeBurninSettings(TimecodeBurninSettingsProperty.builder()
                 .fontSize("fontSize")
                 .position("position")
                 .prefix("prefix")
                 .build())
         .build();
 

See Also: