Class: Aws::MediaConvert::Types::MinTopRenditionSize
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::MinTopRenditionSize
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Use Min top rendition size to specify a minimum size for the highest resolution in your ABR stack. * The highest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 1280x720 the highest resolution in your ABR stack will be equal to or greater than 1280x720. * If you specify a value for Max resolution, the value that you specify for Min top rendition size must be less than, or equal to, Max resolution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#height ⇒ Integer
Use Height to define the video resolution height, in pixels, for this rule.
-
#width ⇒ Integer
Use Width to define the video resolution width, in pixels, for this rule.
Instance Attribute Details
#height ⇒ Integer
Use Height to define the video resolution height, in pixels, for this rule.
9605 9606 9607 9608 9609 9610 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9605 class MinTopRenditionSize < Struct.new( :height, :width) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Use Width to define the video resolution width, in pixels, for this rule.
9605 9606 9607 9608 9609 9610 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9605 class MinTopRenditionSize < Struct.new( :height, :width) SENSITIVE = [] include Aws::Structure end |