Interface CfnRecordingConfiguration.ThumbnailConfigurationProperty

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

@Stability(Stable) public static interface CfnRecordingConfiguration.ThumbnailConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The ThumbnailConfiguration property type describes a configuration of thumbnails for recorded video.

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")
         .resolution("resolution")
         .storage(List.of("storage"))
         .targetIntervalSeconds(123)
         .build();
 

See Also: