{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.MediaConvert.Types.Mpeg2CodecProfile
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.MediaConvert.Types.Mpeg2CodecProfile
  ( Mpeg2CodecProfile
      ( ..,
        Mpeg2CodecProfile_MAIN,
        Mpeg2CodecProfile_PROFILE_422
      ),
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Prelude as Prelude

-- | Use Profile (Mpeg2CodecProfile) to set the MPEG-2 profile for the video
-- output.
newtype Mpeg2CodecProfile = Mpeg2CodecProfile'
  { Mpeg2CodecProfile -> Text
fromMpeg2CodecProfile ::
      Core.Text
  }
  deriving stock
    ( Int -> Mpeg2CodecProfile -> ShowS
[Mpeg2CodecProfile] -> ShowS
Mpeg2CodecProfile -> String
(Int -> Mpeg2CodecProfile -> ShowS)
-> (Mpeg2CodecProfile -> String)
-> ([Mpeg2CodecProfile] -> ShowS)
-> Show Mpeg2CodecProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Mpeg2CodecProfile] -> ShowS
$cshowList :: [Mpeg2CodecProfile] -> ShowS
show :: Mpeg2CodecProfile -> String
$cshow :: Mpeg2CodecProfile -> String
showsPrec :: Int -> Mpeg2CodecProfile -> ShowS
$cshowsPrec :: Int -> Mpeg2CodecProfile -> ShowS
Prelude.Show,
      ReadPrec [Mpeg2CodecProfile]
ReadPrec Mpeg2CodecProfile
Int -> ReadS Mpeg2CodecProfile
ReadS [Mpeg2CodecProfile]
(Int -> ReadS Mpeg2CodecProfile)
-> ReadS [Mpeg2CodecProfile]
-> ReadPrec Mpeg2CodecProfile
-> ReadPrec [Mpeg2CodecProfile]
-> Read Mpeg2CodecProfile
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Mpeg2CodecProfile]
$creadListPrec :: ReadPrec [Mpeg2CodecProfile]
readPrec :: ReadPrec Mpeg2CodecProfile
$creadPrec :: ReadPrec Mpeg2CodecProfile
readList :: ReadS [Mpeg2CodecProfile]
$creadList :: ReadS [Mpeg2CodecProfile]
readsPrec :: Int -> ReadS Mpeg2CodecProfile
$creadsPrec :: Int -> ReadS Mpeg2CodecProfile
Prelude.Read,
      Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
(Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> Eq Mpeg2CodecProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c/= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
== :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c== :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
Prelude.Eq,
      Eq Mpeg2CodecProfile
Eq Mpeg2CodecProfile
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Ordering)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile)
-> (Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile)
-> Ord Mpeg2CodecProfile
Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
Mpeg2CodecProfile -> Mpeg2CodecProfile -> Ordering
Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile
$cmin :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile
max :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile
$cmax :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Mpeg2CodecProfile
>= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c>= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
> :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c> :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
<= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c<= :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
< :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
$c< :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Bool
compare :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Ordering
$ccompare :: Mpeg2CodecProfile -> Mpeg2CodecProfile -> Ordering
$cp1Ord :: Eq Mpeg2CodecProfile
Prelude.Ord,
      (forall x. Mpeg2CodecProfile -> Rep Mpeg2CodecProfile x)
-> (forall x. Rep Mpeg2CodecProfile x -> Mpeg2CodecProfile)
-> Generic Mpeg2CodecProfile
forall x. Rep Mpeg2CodecProfile x -> Mpeg2CodecProfile
forall x. Mpeg2CodecProfile -> Rep Mpeg2CodecProfile x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Mpeg2CodecProfile x -> Mpeg2CodecProfile
$cfrom :: forall x. Mpeg2CodecProfile -> Rep Mpeg2CodecProfile x
Prelude.Generic
    )
  deriving newtype
    ( Int -> Mpeg2CodecProfile -> Int
Mpeg2CodecProfile -> Int
(Int -> Mpeg2CodecProfile -> Int)
-> (Mpeg2CodecProfile -> Int) -> Hashable Mpeg2CodecProfile
forall a. (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: Mpeg2CodecProfile -> Int
$chash :: Mpeg2CodecProfile -> Int
hashWithSalt :: Int -> Mpeg2CodecProfile -> Int
$chashWithSalt :: Int -> Mpeg2CodecProfile -> Int
Prelude.Hashable,
      Mpeg2CodecProfile -> ()
(Mpeg2CodecProfile -> ()) -> NFData Mpeg2CodecProfile
forall a. (a -> ()) -> NFData a
rnf :: Mpeg2CodecProfile -> ()
$crnf :: Mpeg2CodecProfile -> ()
Prelude.NFData,
      Text -> Either String Mpeg2CodecProfile
(Text -> Either String Mpeg2CodecProfile)
-> FromText Mpeg2CodecProfile
forall a. (Text -> Either String a) -> FromText a
fromText :: Text -> Either String Mpeg2CodecProfile
$cfromText :: Text -> Either String Mpeg2CodecProfile
Core.FromText,
      Mpeg2CodecProfile -> Text
(Mpeg2CodecProfile -> Text) -> ToText Mpeg2CodecProfile
forall a. (a -> Text) -> ToText a
toText :: Mpeg2CodecProfile -> Text
$ctoText :: Mpeg2CodecProfile -> Text
Core.ToText,
      Mpeg2CodecProfile -> ByteString
(Mpeg2CodecProfile -> ByteString) -> ToByteString Mpeg2CodecProfile
forall a. (a -> ByteString) -> ToByteString a
toBS :: Mpeg2CodecProfile -> ByteString
$ctoBS :: Mpeg2CodecProfile -> ByteString
Core.ToByteString,
      Mpeg2CodecProfile -> ByteStringBuilder
(Mpeg2CodecProfile -> ByteStringBuilder) -> ToLog Mpeg2CodecProfile
forall a. (a -> ByteStringBuilder) -> ToLog a
build :: Mpeg2CodecProfile -> ByteStringBuilder
$cbuild :: Mpeg2CodecProfile -> ByteStringBuilder
Core.ToLog,
      HeaderName -> Mpeg2CodecProfile -> [Header]
(HeaderName -> Mpeg2CodecProfile -> [Header])
-> ToHeader Mpeg2CodecProfile
forall a. (HeaderName -> a -> [Header]) -> ToHeader a
toHeader :: HeaderName -> Mpeg2CodecProfile -> [Header]
$ctoHeader :: HeaderName -> Mpeg2CodecProfile -> [Header]
Core.ToHeader,
      Mpeg2CodecProfile -> QueryString
(Mpeg2CodecProfile -> QueryString) -> ToQuery Mpeg2CodecProfile
forall a. (a -> QueryString) -> ToQuery a
toQuery :: Mpeg2CodecProfile -> QueryString
$ctoQuery :: Mpeg2CodecProfile -> QueryString
Core.ToQuery,
      Value -> Parser [Mpeg2CodecProfile]
Value -> Parser Mpeg2CodecProfile
(Value -> Parser Mpeg2CodecProfile)
-> (Value -> Parser [Mpeg2CodecProfile])
-> FromJSON Mpeg2CodecProfile
forall a.
(Value -> Parser a) -> (Value -> Parser [a]) -> FromJSON a
parseJSONList :: Value -> Parser [Mpeg2CodecProfile]
$cparseJSONList :: Value -> Parser [Mpeg2CodecProfile]
parseJSON :: Value -> Parser Mpeg2CodecProfile
$cparseJSON :: Value -> Parser Mpeg2CodecProfile
Core.FromJSON,
      FromJSONKeyFunction [Mpeg2CodecProfile]
FromJSONKeyFunction Mpeg2CodecProfile
FromJSONKeyFunction Mpeg2CodecProfile
-> FromJSONKeyFunction [Mpeg2CodecProfile]
-> FromJSONKey Mpeg2CodecProfile
forall a.
FromJSONKeyFunction a -> FromJSONKeyFunction [a] -> FromJSONKey a
fromJSONKeyList :: FromJSONKeyFunction [Mpeg2CodecProfile]
$cfromJSONKeyList :: FromJSONKeyFunction [Mpeg2CodecProfile]
fromJSONKey :: FromJSONKeyFunction Mpeg2CodecProfile
$cfromJSONKey :: FromJSONKeyFunction Mpeg2CodecProfile
Core.FromJSONKey,
      [Mpeg2CodecProfile] -> Encoding
[Mpeg2CodecProfile] -> Value
Mpeg2CodecProfile -> Encoding
Mpeg2CodecProfile -> Value
(Mpeg2CodecProfile -> Value)
-> (Mpeg2CodecProfile -> Encoding)
-> ([Mpeg2CodecProfile] -> Value)
-> ([Mpeg2CodecProfile] -> Encoding)
-> ToJSON Mpeg2CodecProfile
forall a.
(a -> Value)
-> (a -> Encoding)
-> ([a] -> Value)
-> ([a] -> Encoding)
-> ToJSON a
toEncodingList :: [Mpeg2CodecProfile] -> Encoding
$ctoEncodingList :: [Mpeg2CodecProfile] -> Encoding
toJSONList :: [Mpeg2CodecProfile] -> Value
$ctoJSONList :: [Mpeg2CodecProfile] -> Value
toEncoding :: Mpeg2CodecProfile -> Encoding
$ctoEncoding :: Mpeg2CodecProfile -> Encoding
toJSON :: Mpeg2CodecProfile -> Value
$ctoJSON :: Mpeg2CodecProfile -> Value
Core.ToJSON,
      ToJSONKeyFunction [Mpeg2CodecProfile]
ToJSONKeyFunction Mpeg2CodecProfile
ToJSONKeyFunction Mpeg2CodecProfile
-> ToJSONKeyFunction [Mpeg2CodecProfile]
-> ToJSONKey Mpeg2CodecProfile
forall a.
ToJSONKeyFunction a -> ToJSONKeyFunction [a] -> ToJSONKey a
toJSONKeyList :: ToJSONKeyFunction [Mpeg2CodecProfile]
$ctoJSONKeyList :: ToJSONKeyFunction [Mpeg2CodecProfile]
toJSONKey :: ToJSONKeyFunction Mpeg2CodecProfile
$ctoJSONKey :: ToJSONKeyFunction Mpeg2CodecProfile
Core.ToJSONKey,
      [Node] -> Either String Mpeg2CodecProfile
([Node] -> Either String Mpeg2CodecProfile)
-> FromXML Mpeg2CodecProfile
forall a. ([Node] -> Either String a) -> FromXML a
parseXML :: [Node] -> Either String Mpeg2CodecProfile
$cparseXML :: [Node] -> Either String Mpeg2CodecProfile
Core.FromXML,
      Mpeg2CodecProfile -> XML
(Mpeg2CodecProfile -> XML) -> ToXML Mpeg2CodecProfile
forall a. (a -> XML) -> ToXML a
toXML :: Mpeg2CodecProfile -> XML
$ctoXML :: Mpeg2CodecProfile -> XML
Core.ToXML
    )

pattern Mpeg2CodecProfile_MAIN :: Mpeg2CodecProfile
pattern $bMpeg2CodecProfile_MAIN :: Mpeg2CodecProfile
$mMpeg2CodecProfile_MAIN :: forall r. Mpeg2CodecProfile -> (Void# -> r) -> (Void# -> r) -> r
Mpeg2CodecProfile_MAIN = Mpeg2CodecProfile' "MAIN"

pattern Mpeg2CodecProfile_PROFILE_422 :: Mpeg2CodecProfile
pattern $bMpeg2CodecProfile_PROFILE_422 :: Mpeg2CodecProfile
$mMpeg2CodecProfile_PROFILE_422 :: forall r. Mpeg2CodecProfile -> (Void# -> r) -> (Void# -> r) -> r
Mpeg2CodecProfile_PROFILE_422 = Mpeg2CodecProfile' "PROFILE_422"

{-# COMPLETE
  Mpeg2CodecProfile_MAIN,
  Mpeg2CodecProfile_PROFILE_422,
  Mpeg2CodecProfile'
  #-}