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