Class: Aws::MediaLive::Types::VideoPositionRectangle
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::VideoPositionRectangle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
A rectangle defined by position (x, y) and dimensions (width, height) in pixels. Used for output positioning and input cropping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#height ⇒ Integer
Height in pixels.
-
#width ⇒ Integer
Width in pixels.
-
#x ⇒ Integer
Left offset in pixels.
-
#y ⇒ Integer
Top offset in pixels.
Instance Attribute Details
#height ⇒ Integer
Height in pixels. Must be an even number.
23408 23409 23410 23411 23412 23413 23414 23415 |
# File 'lib/aws-sdk-medialive/types.rb', line 23408 class VideoPositionRectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Width in pixels. Must be an even number.
23408 23409 23410 23411 23412 23413 23414 23415 |
# File 'lib/aws-sdk-medialive/types.rb', line 23408 class VideoPositionRectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#x ⇒ Integer
Left offset in pixels. Must be an even number.
23408 23409 23410 23411 23412 23413 23414 23415 |
# File 'lib/aws-sdk-medialive/types.rb', line 23408 class VideoPositionRectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |
#y ⇒ Integer
Top offset in pixels. Must be an even number.
23408 23409 23410 23411 23412 23413 23414 23415 |
# File 'lib/aws-sdk-medialive/types.rb', line 23408 class VideoPositionRectangle < Struct.new( :height, :width, :x, :y) SENSITIVE = [] include Aws::Structure end |