Interface CfnStage.ThumbnailConfigurationProperty

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

@Stability(Stable) public static interface CfnStage.ThumbnailConfigurationProperty extends software.amazon.jsii.JsiiSerializable
An object representing 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()
         .participantThumbnailConfiguration(ParticipantThumbnailConfigurationProperty.builder()
                 .recordingMode("recordingMode")
                 .storage(List.of("storage"))
                 .targetIntervalSeconds(123)
                 .build())
         .build();
 

See Also: