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