Class: Aws::MediaConvert::Types::MinBottomRenditionSize
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::MinBottomRenditionSize
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Use Min bottom rendition size to specify a minimum size for the lowest resolution in your ABR stack. * The lowest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 640x360 the lowest resolution in your ABR stack will be equal to or greater than to 640x360. * If you specify a Min top rendition size rule, the value that you specify for Min bottom rendition size must be less than, or equal to, Min top rendition size.
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.
9578 9579 9580 9581 9582 9583 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9578 class MinBottomRenditionSize < Struct.new( :height, :width) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Use Width to define the video resolution width, in pixels, for this rule.
9578 9579 9580 9581 9582 9583 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9578 class MinBottomRenditionSize < Struct.new( :height, :width) SENSITIVE = [] include Aws::Structure end |