{-# 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.AncillarySourceSettings where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data AncillarySourceSettings = AncillarySourceSettings'
{
AncillarySourceSettings -> Maybe Natural
sourceAncillaryChannelNumber :: Prelude.Maybe Prelude.Natural
}
deriving (AncillarySourceSettings -> AncillarySourceSettings -> Bool
(AncillarySourceSettings -> AncillarySourceSettings -> Bool)
-> (AncillarySourceSettings -> AncillarySourceSettings -> Bool)
-> Eq AncillarySourceSettings
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AncillarySourceSettings -> AncillarySourceSettings -> Bool
$c/= :: AncillarySourceSettings -> AncillarySourceSettings -> Bool
== :: AncillarySourceSettings -> AncillarySourceSettings -> Bool
$c== :: AncillarySourceSettings -> AncillarySourceSettings -> Bool
Prelude.Eq, ReadPrec [AncillarySourceSettings]
ReadPrec AncillarySourceSettings
Int -> ReadS AncillarySourceSettings
ReadS [AncillarySourceSettings]
(Int -> ReadS AncillarySourceSettings)
-> ReadS [AncillarySourceSettings]
-> ReadPrec AncillarySourceSettings
-> ReadPrec [AncillarySourceSettings]
-> Read AncillarySourceSettings
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AncillarySourceSettings]
$creadListPrec :: ReadPrec [AncillarySourceSettings]
readPrec :: ReadPrec AncillarySourceSettings
$creadPrec :: ReadPrec AncillarySourceSettings
readList :: ReadS [AncillarySourceSettings]
$creadList :: ReadS [AncillarySourceSettings]
readsPrec :: Int -> ReadS AncillarySourceSettings
$creadsPrec :: Int -> ReadS AncillarySourceSettings
Prelude.Read, Int -> AncillarySourceSettings -> ShowS
[AncillarySourceSettings] -> ShowS
AncillarySourceSettings -> String
(Int -> AncillarySourceSettings -> ShowS)
-> (AncillarySourceSettings -> String)
-> ([AncillarySourceSettings] -> ShowS)
-> Show AncillarySourceSettings
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AncillarySourceSettings] -> ShowS
$cshowList :: [AncillarySourceSettings] -> ShowS
show :: AncillarySourceSettings -> String
$cshow :: AncillarySourceSettings -> String
showsPrec :: Int -> AncillarySourceSettings -> ShowS
$cshowsPrec :: Int -> AncillarySourceSettings -> ShowS
Prelude.Show, (forall x.
AncillarySourceSettings -> Rep AncillarySourceSettings x)
-> (forall x.
Rep AncillarySourceSettings x -> AncillarySourceSettings)
-> Generic AncillarySourceSettings
forall x. Rep AncillarySourceSettings x -> AncillarySourceSettings
forall x. AncillarySourceSettings -> Rep AncillarySourceSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AncillarySourceSettings x -> AncillarySourceSettings
$cfrom :: forall x. AncillarySourceSettings -> Rep AncillarySourceSettings x
Prelude.Generic)
newAncillarySourceSettings ::
AncillarySourceSettings
newAncillarySourceSettings :: AncillarySourceSettings
newAncillarySourceSettings =
AncillarySourceSettings' :: Maybe Natural -> AncillarySourceSettings
AncillarySourceSettings'
{ $sel:sourceAncillaryChannelNumber:AncillarySourceSettings' :: Maybe Natural
sourceAncillaryChannelNumber =
Maybe Natural
forall a. Maybe a
Prelude.Nothing
}
ancillarySourceSettings_sourceAncillaryChannelNumber :: Lens.Lens' AncillarySourceSettings (Prelude.Maybe Prelude.Natural)
ancillarySourceSettings_sourceAncillaryChannelNumber :: (Maybe Natural -> f (Maybe Natural))
-> AncillarySourceSettings -> f AncillarySourceSettings
ancillarySourceSettings_sourceAncillaryChannelNumber = (AncillarySourceSettings -> Maybe Natural)
-> (AncillarySourceSettings
-> Maybe Natural -> AncillarySourceSettings)
-> Lens
AncillarySourceSettings
AncillarySourceSettings
(Maybe Natural)
(Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AncillarySourceSettings' {Maybe Natural
sourceAncillaryChannelNumber :: Maybe Natural
$sel:sourceAncillaryChannelNumber:AncillarySourceSettings' :: AncillarySourceSettings -> Maybe Natural
sourceAncillaryChannelNumber} -> Maybe Natural
sourceAncillaryChannelNumber) (\s :: AncillarySourceSettings
s@AncillarySourceSettings' {} Maybe Natural
a -> AncillarySourceSettings
s {$sel:sourceAncillaryChannelNumber:AncillarySourceSettings' :: Maybe Natural
sourceAncillaryChannelNumber = Maybe Natural
a} :: AncillarySourceSettings)
instance Core.FromJSON AncillarySourceSettings where
parseJSON :: Value -> Parser AncillarySourceSettings
parseJSON =
String
-> (Object -> Parser AncillarySourceSettings)
-> Value
-> Parser AncillarySourceSettings
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"AncillarySourceSettings"
( \Object
x ->
Maybe Natural -> AncillarySourceSettings
AncillarySourceSettings'
(Maybe Natural -> AncillarySourceSettings)
-> Parser (Maybe Natural) -> Parser AncillarySourceSettings
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Natural)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"sourceAncillaryChannelNumber")
)
instance Prelude.Hashable AncillarySourceSettings
instance Prelude.NFData AncillarySourceSettings
instance Core.ToJSON AncillarySourceSettings where
toJSON :: AncillarySourceSettings -> Value
toJSON AncillarySourceSettings' {Maybe Natural
sourceAncillaryChannelNumber :: Maybe Natural
$sel:sourceAncillaryChannelNumber:AncillarySourceSettings' :: AncillarySourceSettings -> Maybe Natural
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"sourceAncillaryChannelNumber" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
sourceAncillaryChannelNumber
]
)