Class: Aws::ElementalInference::Types::AspectRatio

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elementalinference/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

Instance Attribute Details

#heightInteger

The height component of the aspect ratio (for example, 9 in a 16:9 ratio).

Returns:

  • (Integer)


41
42
43
44
45
46
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 41

class AspectRatio < Struct.new(
  :width,
  :height)
  SENSITIVE = []
  include Aws::Structure
end

#widthInteger

The width component of the aspect ratio (for example, 16 in a 16:9 ratio).

Returns:

  • (Integer)


41
42
43
44
45
46
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 41

class AspectRatio < Struct.new(
  :width,
  :height)
  SENSITIVE = []
  include Aws::Structure
end