{-# 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 #-}
module Amazonka.MediaLive.Types.SmpteTtDestinationSettings 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
data SmpteTtDestinationSettings = SmpteTtDestinationSettings'
{
}
deriving (SmpteTtDestinationSettings -> SmpteTtDestinationSettings -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SmpteTtDestinationSettings -> SmpteTtDestinationSettings -> Bool
$c/= :: SmpteTtDestinationSettings -> SmpteTtDestinationSettings -> Bool
== :: SmpteTtDestinationSettings -> SmpteTtDestinationSettings -> Bool
$c== :: SmpteTtDestinationSettings -> SmpteTtDestinationSettings -> Bool
Prelude.Eq, ReadPrec [SmpteTtDestinationSettings]
ReadPrec SmpteTtDestinationSettings
Int -> ReadS SmpteTtDestinationSettings
ReadS [SmpteTtDestinationSettings]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SmpteTtDestinationSettings]
$creadListPrec :: ReadPrec [SmpteTtDestinationSettings]
readPrec :: ReadPrec SmpteTtDestinationSettings
$creadPrec :: ReadPrec SmpteTtDestinationSettings
readList :: ReadS [SmpteTtDestinationSettings]
$creadList :: ReadS [SmpteTtDestinationSettings]
readsPrec :: Int -> ReadS SmpteTtDestinationSettings
$creadsPrec :: Int -> ReadS SmpteTtDestinationSettings
Prelude.Read, Int -> SmpteTtDestinationSettings -> ShowS
[SmpteTtDestinationSettings] -> ShowS
SmpteTtDestinationSettings -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SmpteTtDestinationSettings] -> ShowS
$cshowList :: [SmpteTtDestinationSettings] -> ShowS
show :: SmpteTtDestinationSettings -> String
$cshow :: SmpteTtDestinationSettings -> String
showsPrec :: Int -> SmpteTtDestinationSettings -> ShowS
$cshowsPrec :: Int -> SmpteTtDestinationSettings -> ShowS
Prelude.Show, forall x.
Rep SmpteTtDestinationSettings x -> SmpteTtDestinationSettings
forall x.
SmpteTtDestinationSettings -> Rep SmpteTtDestinationSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep SmpteTtDestinationSettings x -> SmpteTtDestinationSettings
$cfrom :: forall x.
SmpteTtDestinationSettings -> Rep SmpteTtDestinationSettings x
Prelude.Generic)
newSmpteTtDestinationSettings ::
SmpteTtDestinationSettings
newSmpteTtDestinationSettings :: SmpteTtDestinationSettings
newSmpteTtDestinationSettings =
SmpteTtDestinationSettings
SmpteTtDestinationSettings'
instance Data.FromJSON SmpteTtDestinationSettings where
parseJSON :: Value -> Parser SmpteTtDestinationSettings
parseJSON =
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
String
"SmpteTtDestinationSettings"
(\Object
x -> forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure SmpteTtDestinationSettings
SmpteTtDestinationSettings')
instance Prelude.Hashable SmpteTtDestinationSettings where
hashWithSalt :: Int -> SmpteTtDestinationSettings -> Int
hashWithSalt Int
_salt SmpteTtDestinationSettings
_ =
Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ()
instance Prelude.NFData SmpteTtDestinationSettings where
rnf :: SmpteTtDestinationSettings -> ()
rnf SmpteTtDestinationSettings
_ = ()
instance Data.ToJSON SmpteTtDestinationSettings where
toJSON :: SmpteTtDestinationSettings -> Value
toJSON = forall a b. a -> b -> a
Prelude.const (Object -> Value
Data.Object forall a. Monoid a => a
Prelude.mempty)