interface ThumbnailConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Ivs.CfnStage.ThumbnailConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnStage_ThumbnailConfigurationProperty |
Java | software.amazon.awscdk.services.ivs.CfnStage.ThumbnailConfigurationProperty |
Python | aws_cdk.aws_ivs.CfnStage.ThumbnailConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ivs » CfnStage » ThumbnailConfigurationProperty |
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 { aws_ivs as ivs } from 'aws-cdk-lib';
const thumbnailConfigurationProperty: ivs.CfnStage.ThumbnailConfigurationProperty = {
participantThumbnailConfiguration: {
recordingMode: 'recordingMode',
storage: ['storage'],
targetIntervalSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| participant | IResolvable | Participant | Object specifying a configuration of thumbnails for recorded video from an individual participant. |
participantThumbnailConfiguration?
Type:
IResolvable | Participant
(optional)
Object specifying a configuration of thumbnails for recorded video from an individual participant.

.NET
Go
Java
Python
TypeScript