amazonka-mediaconvert-2.0: Amazon Elemental MediaConvert SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MediaConvert.Types.MinTopRenditionSize

Description

 
Synopsis

Documentation

data MinTopRenditionSize Source #

Use Min top rendition size to specify a minimum size for the highest resolution in your ABR stack. * The highest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 1280x720 the highest resolution in your ABR stack will be equal to or greater than 1280x720. * If you specify a value for Max resolution, the value that you specify for Min top rendition size must be less than, or equal to, Max resolution.

See: newMinTopRenditionSize smart constructor.

Constructors

MinTopRenditionSize' 

Fields

  • height :: Maybe Natural

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

  • width :: Maybe Natural

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

Instances

Instances details
FromJSON MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

ToJSON MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

Generic MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

Associated Types

type Rep MinTopRenditionSize :: Type -> Type #

Read MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

Show MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

NFData MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

Methods

rnf :: MinTopRenditionSize -> () #

Eq MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

Hashable MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

type Rep MinTopRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.MinTopRenditionSize

type Rep MinTopRenditionSize = D1 ('MetaData "MinTopRenditionSize" "Amazonka.MediaConvert.Types.MinTopRenditionSize" "amazonka-mediaconvert-2.0-ClG8xHhlx4y6bdaCrZchqH" 'False) (C1 ('MetaCons "MinTopRenditionSize'" 'PrefixI 'True) (S1 ('MetaSel ('Just "height") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "width") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))

newMinTopRenditionSize :: MinTopRenditionSize Source #

Create a value of MinTopRenditionSize with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:height:MinTopRenditionSize', minTopRenditionSize_height - Use Height to define the video resolution height, in pixels, for this rule.

$sel:width:MinTopRenditionSize', minTopRenditionSize_width - Use Width to define the video resolution width, in pixels, for this rule.

minTopRenditionSize_height :: Lens' MinTopRenditionSize (Maybe Natural) Source #

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

minTopRenditionSize_width :: Lens' MinTopRenditionSize (Maybe Natural) Source #

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