enum Storage
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Ivs.Alpha.Storage |
![]() | github.com/aws/aws-cdk-go/awscdkivsalpha/v2#Storage |
![]() | software.amazon.awscdk.services.ivs.alpha.Storage |
![]() | aws_cdk.aws_ivs_alpha.Storage |
![]() | @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.