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.AllowedRenditionSize

Description

 
Synopsis

Documentation

data AllowedRenditionSize Source #

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.

See: newAllowedRenditionSize smart constructor.

Constructors

AllowedRenditionSize' 

Fields

Instances

Instances details
FromJSON AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

ToJSON AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

Generic AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

Associated Types

type Rep AllowedRenditionSize :: Type -> Type #

Read AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

Show AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

NFData AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

Methods

rnf :: AllowedRenditionSize -> () #

Eq AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

Hashable AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

type Rep AllowedRenditionSize Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.AllowedRenditionSize

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

newAllowedRenditionSize :: AllowedRenditionSize Source #

Create a value of AllowedRenditionSize 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:AllowedRenditionSize', allowedRenditionSize_height - Use Height to define the video resolution height, in pixels, for this rule.

$sel:required:AllowedRenditionSize', allowedRenditionSize_required - Set to ENABLED to force a rendition to be included.

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

allowedRenditionSize_height :: Lens' AllowedRenditionSize (Maybe Natural) Source #

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

allowedRenditionSize_required :: Lens' AllowedRenditionSize (Maybe RequiredFlag) Source #

Set to ENABLED to force a rendition to be included.

allowedRenditionSize_width :: Lens' AllowedRenditionSize (Maybe Natural) Source #

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