{-# 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.MediaLive.Types.TtmlDestinationSettings
-- 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.MediaLive.Types.TtmlDestinationSettings where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.MediaLive.Types.TtmlDestinationStyleControl
import qualified Amazonka.Prelude as Prelude

-- | Ttml Destination Settings
--
-- /See:/ 'newTtmlDestinationSettings' smart constructor.
data TtmlDestinationSettings = TtmlDestinationSettings'
  { -- | When set to passthrough, passes through style and position information
    -- from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT
    -- output or TTML output.
    TtmlDestinationSettings -> Maybe TtmlDestinationStyleControl
styleControl :: Prelude.Maybe TtmlDestinationStyleControl
  }
  deriving (TtmlDestinationSettings -> TtmlDestinationSettings -> Bool
(TtmlDestinationSettings -> TtmlDestinationSettings -> Bool)
-> (TtmlDestinationSettings -> TtmlDestinationSettings -> Bool)
-> Eq TtmlDestinationSettings
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: TtmlDestinationSettings -> TtmlDestinationSettings -> Bool
$c/= :: TtmlDestinationSettings -> TtmlDestinationSettings -> Bool
== :: TtmlDestinationSettings -> TtmlDestinationSettings -> Bool
$c== :: TtmlDestinationSettings -> TtmlDestinationSettings -> Bool
Prelude.Eq, ReadPrec [TtmlDestinationSettings]
ReadPrec TtmlDestinationSettings
Int -> ReadS TtmlDestinationSettings
ReadS [TtmlDestinationSettings]
(Int -> ReadS TtmlDestinationSettings)
-> ReadS [TtmlDestinationSettings]
-> ReadPrec TtmlDestinationSettings
-> ReadPrec [TtmlDestinationSettings]
-> Read TtmlDestinationSettings
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [TtmlDestinationSettings]
$creadListPrec :: ReadPrec [TtmlDestinationSettings]
readPrec :: ReadPrec TtmlDestinationSettings
$creadPrec :: ReadPrec TtmlDestinationSettings
readList :: ReadS [TtmlDestinationSettings]
$creadList :: ReadS [TtmlDestinationSettings]
readsPrec :: Int -> ReadS TtmlDestinationSettings
$creadsPrec :: Int -> ReadS TtmlDestinationSettings
Prelude.Read, Int -> TtmlDestinationSettings -> ShowS
[TtmlDestinationSettings] -> ShowS
TtmlDestinationSettings -> String
(Int -> TtmlDestinationSettings -> ShowS)
-> (TtmlDestinationSettings -> String)
-> ([TtmlDestinationSettings] -> ShowS)
-> Show TtmlDestinationSettings
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [TtmlDestinationSettings] -> ShowS
$cshowList :: [TtmlDestinationSettings] -> ShowS
show :: TtmlDestinationSettings -> String
$cshow :: TtmlDestinationSettings -> String
showsPrec :: Int -> TtmlDestinationSettings -> ShowS
$cshowsPrec :: Int -> TtmlDestinationSettings -> ShowS
Prelude.Show, (forall x.
 TtmlDestinationSettings -> Rep TtmlDestinationSettings x)
-> (forall x.
    Rep TtmlDestinationSettings x -> TtmlDestinationSettings)
-> Generic TtmlDestinationSettings
forall x. Rep TtmlDestinationSettings x -> TtmlDestinationSettings
forall x. TtmlDestinationSettings -> Rep TtmlDestinationSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep TtmlDestinationSettings x -> TtmlDestinationSettings
$cfrom :: forall x. TtmlDestinationSettings -> Rep TtmlDestinationSettings x
Prelude.Generic)

-- |
-- Create a value of 'TtmlDestinationSettings' 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:
--
-- 'styleControl', 'ttmlDestinationSettings_styleControl' - When set to passthrough, passes through style and position information
-- from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT
-- output or TTML output.
newTtmlDestinationSettings ::
  TtmlDestinationSettings
newTtmlDestinationSettings :: TtmlDestinationSettings
newTtmlDestinationSettings =
  TtmlDestinationSettings' :: Maybe TtmlDestinationStyleControl -> TtmlDestinationSettings
TtmlDestinationSettings'
    { $sel:styleControl:TtmlDestinationSettings' :: Maybe TtmlDestinationStyleControl
styleControl =
        Maybe TtmlDestinationStyleControl
forall a. Maybe a
Prelude.Nothing
    }

-- | When set to passthrough, passes through style and position information
-- from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT
-- output or TTML output.
ttmlDestinationSettings_styleControl :: Lens.Lens' TtmlDestinationSettings (Prelude.Maybe TtmlDestinationStyleControl)
ttmlDestinationSettings_styleControl :: (Maybe TtmlDestinationStyleControl
 -> f (Maybe TtmlDestinationStyleControl))
-> TtmlDestinationSettings -> f TtmlDestinationSettings
ttmlDestinationSettings_styleControl = (TtmlDestinationSettings -> Maybe TtmlDestinationStyleControl)
-> (TtmlDestinationSettings
    -> Maybe TtmlDestinationStyleControl -> TtmlDestinationSettings)
-> Lens
     TtmlDestinationSettings
     TtmlDestinationSettings
     (Maybe TtmlDestinationStyleControl)
     (Maybe TtmlDestinationStyleControl)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\TtmlDestinationSettings' {Maybe TtmlDestinationStyleControl
styleControl :: Maybe TtmlDestinationStyleControl
$sel:styleControl:TtmlDestinationSettings' :: TtmlDestinationSettings -> Maybe TtmlDestinationStyleControl
styleControl} -> Maybe TtmlDestinationStyleControl
styleControl) (\s :: TtmlDestinationSettings
s@TtmlDestinationSettings' {} Maybe TtmlDestinationStyleControl
a -> TtmlDestinationSettings
s {$sel:styleControl:TtmlDestinationSettings' :: Maybe TtmlDestinationStyleControl
styleControl = Maybe TtmlDestinationStyleControl
a} :: TtmlDestinationSettings)

instance Core.FromJSON TtmlDestinationSettings where
  parseJSON :: Value -> Parser TtmlDestinationSettings
parseJSON =
    String
-> (Object -> Parser TtmlDestinationSettings)
-> Value
-> Parser TtmlDestinationSettings
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"TtmlDestinationSettings"
      ( \Object
x ->
          Maybe TtmlDestinationStyleControl -> TtmlDestinationSettings
TtmlDestinationSettings'
            (Maybe TtmlDestinationStyleControl -> TtmlDestinationSettings)
-> Parser (Maybe TtmlDestinationStyleControl)
-> Parser TtmlDestinationSettings
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe TtmlDestinationStyleControl)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"styleControl")
      )

instance Prelude.Hashable TtmlDestinationSettings

instance Prelude.NFData TtmlDestinationSettings

instance Core.ToJSON TtmlDestinationSettings where
  toJSON :: TtmlDestinationSettings -> Value
toJSON TtmlDestinationSettings' {Maybe TtmlDestinationStyleControl
styleControl :: Maybe TtmlDestinationStyleControl
$sel:styleControl:TtmlDestinationSettings' :: TtmlDestinationSettings -> Maybe TtmlDestinationStyleControl
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [(Text
"styleControl" Text -> TtmlDestinationStyleControl -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (TtmlDestinationStyleControl -> Pair)
-> Maybe TtmlDestinationStyleControl -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe TtmlDestinationStyleControl
styleControl]
      )