@Stability(value=Stable)
public static interface CfnRecordingConfiguration.ThumbnailConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.ivs.*;
ThumbnailConfigurationProperty thumbnailConfigurationProperty = ThumbnailConfigurationProperty.builder()
.recordingMode("recordingMode")
// the properties below are optional
.targetIntervalSeconds(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRecordingConfiguration.ThumbnailConfigurationProperty.Builder
A builder for
CfnRecordingConfiguration.ThumbnailConfigurationProperty |
static class |
CfnRecordingConfiguration.ThumbnailConfigurationProperty.Jsii$Proxy
An implementation for
CfnRecordingConfiguration.ThumbnailConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRecordingConfiguration.ThumbnailConfigurationProperty.Builder |
builder() |
String |
getRecordingMode()
Thumbnail recording mode.
|
default Number |
getTargetIntervalSeconds()
The targeted thumbnail-generation interval in seconds.
|
@Stability(value=Stable) @NotNull String getRecordingMode()
DISABLED : Use DISABLED to disable the generation of thumbnails for recorded video.INTERVAL : Use INTERVAL to enable the generation of thumbnails for recorded video at a time interval controlled by the TargetIntervalSeconds property.
Default : INTERVAL
@Stability(value=Stable) @Nullable default Number getTargetIntervalSeconds()
Setting a value for
TargetIntervalSecondsdoes not guarantee that thumbnails are generated at the specified interval. For thumbnails to be generated at theTargetIntervalSecondsinterval, theIDR/Keyframevalue for the input video must be less than theTargetIntervalSecondsvalue. See Amazon IVS Streaming Configuration for information on settingIDR/Keyframeto the recommended value in video-encoder settings.
Default : 60
Valid Range : Minumum value of 5. Maximum value of 60.
@Stability(value=Stable) static CfnRecordingConfiguration.ThumbnailConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.