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