Class: Aws::IVS::Types::RenditionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::RenditionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivs/types.rb
Overview
Object that describes which renditions should be recorded for a stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rendition_selection ⇒ String
Indicates which set of renditions are recorded for a stream.
-
#renditions ⇒ Array<String>
Indicates which renditions are recorded for a stream, if ‘renditionSelection` is `CUSTOM`; otherwise, this field is irrelevant.
Instance Attribute Details
#rendition_selection ⇒ String
Indicates which set of renditions are recorded for a stream. For ‘BASIC` channels, the `CUSTOM` value has no effect. If `CUSTOM` is specified, a set of renditions must be specified in the `renditions` field. Default: `ALL`.
1814 1815 1816 1817 1818 1819 |
# File 'lib/aws-sdk-ivs/types.rb', line 1814 class RenditionConfiguration < Struct.new( :rendition_selection, :renditions) SENSITIVE = [] include Aws::Structure end |
#renditions ⇒ Array<String>
Indicates which renditions are recorded for a stream, if ‘renditionSelection` is `CUSTOM`; otherwise, this field is irrelevant. The selected renditions are recorded if they are available during the stream. If a selected rendition is unavailable, the best available rendition is recorded. For details on the resolution dimensions of each rendition, see [Auto-Record to Amazon S3].
[1]: docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
1814 1815 1816 1817 1818 1819 |
# File 'lib/aws-sdk-ivs/types.rb', line 1814 class RenditionConfiguration < Struct.new( :rendition_selection, :renditions) SENSITIVE = [] include Aws::Structure end |