{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

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

-- |
-- Module      : Amazonka.MediaConvert.Types.DvbSubSourceSettings
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.MediaConvert.Types.DvbSubSourceSettings where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

-- | DVB Sub Source Settings
--
-- /See:/ 'newDvbSubSourceSettings' smart constructor.
data DvbSubSourceSettings = DvbSubSourceSettings'
  { -- | When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source
    -- content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed
    -- through, regardless of selectors.
    DvbSubSourceSettings -> Maybe Natural
pid :: Prelude.Maybe Prelude.Natural
  }
  deriving (DvbSubSourceSettings -> DvbSubSourceSettings -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DvbSubSourceSettings -> DvbSubSourceSettings -> Bool
$c/= :: DvbSubSourceSettings -> DvbSubSourceSettings -> Bool
== :: DvbSubSourceSettings -> DvbSubSourceSettings -> Bool
$c== :: DvbSubSourceSettings -> DvbSubSourceSettings -> Bool
Prelude.Eq, ReadPrec [DvbSubSourceSettings]
ReadPrec DvbSubSourceSettings
Int -> ReadS DvbSubSourceSettings
ReadS [DvbSubSourceSettings]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DvbSubSourceSettings]
$creadListPrec :: ReadPrec [DvbSubSourceSettings]
readPrec :: ReadPrec DvbSubSourceSettings
$creadPrec :: ReadPrec DvbSubSourceSettings
readList :: ReadS [DvbSubSourceSettings]
$creadList :: ReadS [DvbSubSourceSettings]
readsPrec :: Int -> ReadS DvbSubSourceSettings
$creadsPrec :: Int -> ReadS DvbSubSourceSettings
Prelude.Read, Int -> DvbSubSourceSettings -> ShowS
[DvbSubSourceSettings] -> ShowS
DvbSubSourceSettings -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DvbSubSourceSettings] -> ShowS
$cshowList :: [DvbSubSourceSettings] -> ShowS
show :: DvbSubSourceSettings -> String
$cshow :: DvbSubSourceSettings -> String
showsPrec :: Int -> DvbSubSourceSettings -> ShowS
$cshowsPrec :: Int -> DvbSubSourceSettings -> ShowS
Prelude.Show, forall x. Rep DvbSubSourceSettings x -> DvbSubSourceSettings
forall x. DvbSubSourceSettings -> Rep DvbSubSourceSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DvbSubSourceSettings x -> DvbSubSourceSettings
$cfrom :: forall x. DvbSubSourceSettings -> Rep DvbSubSourceSettings x
Prelude.Generic)

-- |
-- Create a value of 'DvbSubSourceSettings' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'pid', 'dvbSubSourceSettings_pid' - When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source
-- content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed
-- through, regardless of selectors.
newDvbSubSourceSettings ::
  DvbSubSourceSettings
newDvbSubSourceSettings :: DvbSubSourceSettings
newDvbSubSourceSettings =
  DvbSubSourceSettings' {$sel:pid:DvbSubSourceSettings' :: Maybe Natural
pid = forall a. Maybe a
Prelude.Nothing}

-- | When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source
-- content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed
-- through, regardless of selectors.
dvbSubSourceSettings_pid :: Lens.Lens' DvbSubSourceSettings (Prelude.Maybe Prelude.Natural)
dvbSubSourceSettings_pid :: Lens' DvbSubSourceSettings (Maybe Natural)
dvbSubSourceSettings_pid = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DvbSubSourceSettings' {Maybe Natural
pid :: Maybe Natural
$sel:pid:DvbSubSourceSettings' :: DvbSubSourceSettings -> Maybe Natural
pid} -> Maybe Natural
pid) (\s :: DvbSubSourceSettings
s@DvbSubSourceSettings' {} Maybe Natural
a -> DvbSubSourceSettings
s {$sel:pid:DvbSubSourceSettings' :: Maybe Natural
pid = Maybe Natural
a} :: DvbSubSourceSettings)

instance Data.FromJSON DvbSubSourceSettings where
  parseJSON :: Value -> Parser DvbSubSourceSettings
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"DvbSubSourceSettings"
      ( \Object
x ->
          Maybe Natural -> DvbSubSourceSettings
DvbSubSourceSettings' forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"pid")
      )

instance Prelude.Hashable DvbSubSourceSettings where
  hashWithSalt :: Int -> DvbSubSourceSettings -> Int
hashWithSalt Int
_salt DvbSubSourceSettings' {Maybe Natural
pid :: Maybe Natural
$sel:pid:DvbSubSourceSettings' :: DvbSubSourceSettings -> Maybe Natural
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
pid

instance Prelude.NFData DvbSubSourceSettings where
  rnf :: DvbSubSourceSettings -> ()
rnf DvbSubSourceSettings' {Maybe Natural
pid :: Maybe Natural
$sel:pid:DvbSubSourceSettings' :: DvbSubSourceSettings -> Maybe Natural
..} = forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
pid

instance Data.ToJSON DvbSubSourceSettings where
  toJSON :: DvbSubSourceSettings -> Value
toJSON DvbSubSourceSettings' {Maybe Natural
pid :: Maybe Natural
$sel:pid:DvbSubSourceSettings' :: DvbSubSourceSettings -> Maybe Natural
..} =
    [Pair] -> Value
Data.object
      (forall a. [Maybe a] -> [a]
Prelude.catMaybes [(Key
"pid" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
pid])