Class: Aws::IVSRealTime::Types::ParticipantThumbnailConfiguration

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 from an individual participant.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#recording_modeString

Thumbnail recording mode. Default: ‘DISABLED`.

Returns:

  • (String)


1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 1973

class ParticipantThumbnailConfiguration < Struct.new(
  :target_interval_seconds,
  :storage,
  :recording_mode)
  SENSITIVE = []
  include Aws::Structure
end

#storageArray<String>

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

Returns:

  • (Array<String>)


1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 1973

class ParticipantThumbnailConfiguration < Struct.new(
  :target_interval_seconds,
  :storage,
  :recording_mode)
  SENSITIVE = []
  include Aws::Structure
end

#target_interval_secondsInteger

The targeted thumbnail-generation interval in seconds. This is configurable only if ‘recordingMode` is `INTERVAL`. Default: 60.

Returns:

  • (Integer)


1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 1973

class ParticipantThumbnailConfiguration < Struct.new(
  :target_interval_seconds,
  :storage,
  :recording_mode)
  SENSITIVE = []
  include Aws::Structure
end