{-# 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.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data RawSettings = RawSettings'
{
}
deriving (RawSettings -> RawSettings -> Bool
(RawSettings -> RawSettings -> Bool)
-> (RawSettings -> RawSettings -> Bool) -> Eq RawSettings
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]
(Int -> ReadS RawSettings)
-> ReadS [RawSettings]
-> ReadPrec RawSettings
-> ReadPrec [RawSettings]
-> Read 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
(Int -> RawSettings -> ShowS)
-> (RawSettings -> String)
-> ([RawSettings] -> ShowS)
-> Show RawSettings
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. RawSettings -> Rep RawSettings x)
-> (forall x. Rep RawSettings x -> RawSettings)
-> Generic RawSettings
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 Core.FromJSON RawSettings where
parseJSON :: Value -> Parser RawSettings
parseJSON =
String
-> (Object -> Parser RawSettings) -> Value -> Parser RawSettings
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"RawSettings"
(\Object
x -> RawSettings -> Parser RawSettings
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure RawSettings
RawSettings')
instance Prelude.Hashable RawSettings
instance Prelude.NFData RawSettings
instance Core.ToJSON RawSettings where
toJSON :: RawSettings -> Value
toJSON = Value -> RawSettings -> Value
forall a b. a -> b -> a
Prelude.const (Object -> Value
Core.Object Object
forall a. Monoid a => a
Prelude.mempty)