interface ParticipantThumbnailConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Mixins.CfnStagePropsMixin.ParticipantThumbnailConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/mixins#CfnStagePropsMixin_ParticipantThumbnailConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ivs.mixins.CfnStagePropsMixin.ParticipantThumbnailConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ivs.mixins.CfnStagePropsMixin.ParticipantThumbnailConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ivs » mixins » CfnStagePropsMixin » ParticipantThumbnailConfigurationProperty |
Object specifying a configuration of thumbnails for recorded video from an individual participant.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ivs_mixins } from '@aws-cdk/mixins-preview/aws-ivs';
const participantThumbnailConfigurationProperty: ivs_mixins.CfnStagePropsMixin.ParticipantThumbnailConfigurationProperty = {
recordingMode: 'recordingMode',
storage: ['storage'],
targetIntervalSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| recording | string | Thumbnail recording mode. |
| storage? | string[] | Indicates the format in which thumbnails are recorded. |
| target | number | The targeted thumbnail-generation interval in seconds. |
recordingMode?
Type:
string
(optional, default: "DISABLED")
Thumbnail recording mode.
Default: DISABLED .
storage?
Type:
string[]
(optional)
Indicates the format in which thumbnails are recorded.
SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds . You can enable both SEQUENTIAL and LATEST . Default: SEQUENTIAL .
targetIntervalSeconds?
Type:
number
(optional, default: 60)
The targeted thumbnail-generation interval in seconds.
This is configurable only if recordingMode is INTERVAL . Default: 60.

.NET
Go
Java
Python
TypeScript