Class: Aws::MediaConvert::Types::Rectangle
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::Rectangle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Use Rectangle to identify a specific area of the video frame.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#height ⇒ Integer
Height of rectangle in pixels.
-
#width ⇒ Integer
Width of rectangle in pixels.
-
#x ⇒ Integer
The distance, in pixels, between the rectangle and the left edge of the video frame.
-
#y ⇒ Integer
The distance, in pixels, between the rectangle and the top edge of the video frame.
Instance Attribute Details
#height ⇒ Integer
Height of rectangle in pixels. Specify only even numbers.
11634 11635 11636 11637 11638 11639 11640 11641 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11634 class Rectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Width of rectangle in pixels. Specify only even numbers.
11634 11635 11636 11637 11638 11639 11640 11641 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11634 class Rectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#x ⇒ Integer
The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.
11634 11635 11636 11637 11638 11639 11640 11641 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11634 class Rectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#y ⇒ Integer
The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.
11634 11635 11636 11637 11638 11639 11640 11641 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11634 class Rectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |