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