Class: Aws::MediaLive::Types::VideoPositionRectangle

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#heightInteger

Height in pixels. Must be an even number.

Returns:

  • (Integer)


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

#widthInteger

Width in pixels. Must be an even number.

Returns:

  • (Integer)


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

#xInteger

Left offset in pixels. Must be an even number.

Returns:

  • (Integer)


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

#yInteger

Top offset in pixels. Must be an even number.

Returns:

  • (Integer)


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