This is the new AWS CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::IVS::Stage ParticipantThumbnailConfiguration
Object specifying a configuration of thumbnails for recorded video from an individual participant.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "RecordingMode" :
String
, "Storage" :[ String, ... ]
, "TargetIntervalSeconds" :Integer
}
YAML
RecordingMode:
String
Storage:- String
TargetIntervalSeconds:Integer
Properties
RecordingMode
-
Thumbnail recording mode. Default:
DISABLED
.Required: No
Type: String
Allowed values:
INTERVAL | DISABLED
Update requires: No interruption
Storage
-
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 bytargetIntervalSeconds
. You can enable bothSEQUENTIAL
andLATEST
. Default:SEQUENTIAL
.Required: No
Type: Array of String
Allowed values:
SEQUENTIAL | LATEST
Minimum:
0
Maximum:
2
Update requires: No interruption
TargetIntervalSeconds
-
The targeted thumbnail-generation interval in seconds. This is configurable only if
recordingMode
isINTERVAL
. Default: 60.Required: No
Type: Integer
Minimum:
1
Maximum:
86400
Update requires: No interruption