aws-cdk-lib.aws_medialive.CfnChannel.FrameCaptureSettingsProperty

interface FrameCaptureSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.FrameCaptureSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_FrameCaptureSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.FrameCaptureSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.FrameCaptureSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » FrameCaptureSettingsProperty

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const frameCaptureSettingsProperty: medialive.CfnChannel.FrameCaptureSettingsProperty = {
  captureInterval: 123,
  captureIntervalUnits: 'captureIntervalUnits',
  timecodeBurninSettings: {
    fontSize: 'fontSize',
    position: 'position',
    prefix: 'prefix',
  },
};

Properties

NameTypeDescription
captureInterval?numberThe frequency, in seconds, for capturing frames for inclusion in the output.
captureIntervalUnits?stringUnit for the frame capture interval.
timecodeBurninSettings?IResolvable | TimecodeBurninSettingsPropertyCfnChannel.FrameCaptureSettingsProperty.TimecodeBurninSettings.

captureInterval?

Type: number (optional)

The frequency, in seconds, for capturing frames for inclusion in the output.

For example, "10" means capture a frame every 10 seconds.


captureIntervalUnits?

Type: string (optional)

Unit for the frame capture interval.


timecodeBurninSettings?

Type: IResolvable | TimecodeBurninSettingsProperty (optional)

CfnChannel.FrameCaptureSettingsProperty.TimecodeBurninSettings.