Class: Aws::IVSRealTime::Types::CompositionThumbnailConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::CompositionThumbnailConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivsrealtime/types.rb
Overview
An object representing a configuration of thumbnails for recorded video for a Composition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#storage ⇒ Array<String>
Indicates the format in which thumbnails are recorded.
-
#target_interval_seconds ⇒ Integer
The targeted thumbnail-generation interval in seconds.
Instance Attribute Details
#storage ⇒ Array<String>
Indicates the format in which thumbnails are recorded. ‘SEQUENTIAL` records all generated thumbnails in a serial manner, to the media/thumbnails/(width)x(height) directory, where (width) and (height) are the width and height of the thumbnail. `LATEST` saves the latest thumbnail in media/latest_thumbnail/(width)x(height)/thumb.jpg and overwrites it at the interval specified by `targetIntervalSeconds`. You can enable both `SEQUENTIAL` and `LATEST`. Default: `SEQUENTIAL`.
214 215 216 217 218 219 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 214 class CompositionThumbnailConfiguration < Struct.new( :target_interval_seconds, :storage) SENSITIVE = [] include Aws::Structure end |
#target_interval_seconds ⇒ Integer
The targeted thumbnail-generation interval in seconds. Default: 60.
214 215 216 217 218 219 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 214 class CompositionThumbnailConfiguration < Struct.new( :target_interval_seconds, :storage) SENSITIVE = [] include Aws::Structure end |