Class: Aws::MediaConvert::Types::AllowedRenditionSize

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb

Overview

Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#heightInteger

Use Height to define the video resolution height, in pixels, for this rule.

Returns:

  • (Integer)


305
306
307
308
309
310
311
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 305

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

#requiredString

Set to ENABLED to force a rendition to be included.

Returns:

  • (String)


305
306
307
308
309
310
311
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 305

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

#widthInteger

Use Width to define the video resolution width, in pixels, for this rule.

Returns:

  • (Integer)


305
306
307
308
309
310
311
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 305

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