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