Class: Aws::ElementalInference::Types::AspectRatio
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::AspectRatio
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elementalinference/types.rb
Overview
The width and height of the output video. Used in SubtitlingConfig to determine subtitle layout.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#height ⇒ Integer
The height component of the aspect ratio (for example, 9 in a 16:9 ratio).
-
#width ⇒ Integer
The width component of the aspect ratio (for example, 16 in a 16:9 ratio).
Instance Attribute Details
#height ⇒ Integer
The height component of the aspect ratio (for example, 9 in a 16:9 ratio).
41 42 43 44 45 46 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 41 class AspectRatio < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
The width component of the aspect ratio (for example, 16 in a 16:9 ratio).
41 42 43 44 45 46 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 41 class AspectRatio < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |