interface ParticipantThumbnailConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Ivs.CfnStage.ParticipantThumbnailConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnStage_ParticipantThumbnailConfigurationProperty |
![]() | software.amazon.awscdk.services.ivs.CfnStage.ParticipantThumbnailConfigurationProperty |
![]() | aws_cdk.aws_ivs.CfnStage.ParticipantThumbnailConfigurationProperty |
![]() | aws-cdk-lib » aws_ivs » CfnStage » ParticipantThumbnailConfigurationProperty |
An object representing 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 { aws_ivs as ivs } from 'aws-cdk-lib';
const participantThumbnailConfigurationProperty: ivs.CfnStage.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: "INTERVAL")
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.