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