enum Storage
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Ivs.Alpha.Storage |
Go | github.com/aws/aws-cdk-go/awscdkivsalpha/v2#Storage |
Java | software.amazon.awscdk.services.ivs.alpha.Storage |
Python | aws_cdk.aws_ivs_alpha.Storage |
TypeScript (source) | @aws-cdk/aws-ivs-alpha ยป Storage |
The format in which thumbnails are recorded for a stream.
Example
declare const recordingBucket: s3.Bucket;
const recordingConfiguration = new ivs.RecordingConfiguration(this, 'RecordingConfiguration', {
bucket: recordingBucket,
// set thumbnail settings
thumbnailConfiguration: ivs.ThumbnailConfiguration.interval(ivs.Resolution.HD, [ivs.Storage.LATEST, ivs.Storage.SEQUENTIAL], Duration.seconds(30)),
});
Members
| Name | Description |
|---|---|
| SEQUENTIAL | SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails directory. |
| LATEST | LATEST saves the latest thumbnail in media/thumbnails/latest/thumb.jpg and overwrites it at the interval specified by thumbnailTargetInterval. |
SEQUENTIAL
SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails directory.
LATEST
LATEST saves the latest thumbnail in media/thumbnails/latest/thumb.jpg and overwrites it at the interval specified by thumbnailTargetInterval.

.NET
Go
Java
Python
TypeScript (