Interface FrameCaptureSettingsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FrameCaptureSettingsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.058Z")
@Stability(Experimental)
public interface FrameCaptureSettingsProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for frame capture codec settings.
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.alpha.*;
import software.amazon.awscdk.*;
TimecodeBurninFontSize timecodeBurninFontSize;
TimecodeBurninPosition timecodeBurninPosition;
FrameCaptureSettingsProps frameCaptureSettingsProps = FrameCaptureSettingsProps.builder()
.captureInterval(Duration.minutes(30))
.timecodeBurnin(TimecodeBurninSettings.builder()
.fontSize(timecodeBurninFontSize)
.position(timecodeBurninPosition)
.prefix("prefix")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFrameCaptureSettingsPropsstatic final classAn implementation forFrameCaptureSettingsProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Duration(experimental) The interval between frame captures.default TimecodeBurninSettings(experimental) Timecode burn-in settings to overlay timecode on the video.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCaptureInterval
(experimental) The interval between frame captures.Default: - service default
-
getTimecodeBurnin
(experimental) Timecode burn-in settings to overlay timecode on the video.Default: - no timecode burn-in
-
builder
- Returns:
- a
FrameCaptureSettingsProps.BuilderofFrameCaptureSettingsProps
-