Class: Aws::IVSRealTime::Types::CompositionThumbnailConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#storageArray<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`.

Returns:

  • (Array<String>)


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_secondsInteger

The targeted thumbnail-generation interval in seconds. Default: 60.

Returns:

  • (Integer)


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