Class: Aws::IVSRealTime::Types::ParticipantThumbnailConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::ParticipantThumbnailConfiguration
- 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
-
#recording_mode ⇒ String
Thumbnail recording mode.
-
#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
#recording_mode ⇒ String
Thumbnail recording mode. Default: ‘DISABLED`.
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 |
#storage ⇒ Array<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`.
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_seconds ⇒ Integer
The targeted thumbnail-generation interval in seconds. This is configurable only if ‘recordingMode` is `INTERVAL`. Default: 60.
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 |