{-# 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 #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.CodePipeline.Types.InputArtifact
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.CodePipeline.Types.InputArtifact 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

-- | Represents information about an artifact to be worked on, such as a test
-- or build artifact.
--
-- /See:/ 'newInputArtifact' smart constructor.
data InputArtifact = InputArtifact'
  { -- | The name of the artifact to be worked on (for example, \"My App\").
    --
    -- The input artifact of an action must exactly match the output artifact
    -- declared in a preceding action, but the input artifact does not have to
    -- be the next action in strict sequence from the action that provided the
    -- output artifact. Actions in parallel can declare different output
    -- artifacts, which are in turn consumed by different following actions.
    InputArtifact -> Text
name :: Prelude.Text
  }
  deriving (InputArtifact -> InputArtifact -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: InputArtifact -> InputArtifact -> Bool
$c/= :: InputArtifact -> InputArtifact -> Bool
== :: InputArtifact -> InputArtifact -> Bool
$c== :: InputArtifact -> InputArtifact -> Bool
Prelude.Eq, ReadPrec [InputArtifact]
ReadPrec InputArtifact
Int -> ReadS InputArtifact
ReadS [InputArtifact]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [InputArtifact]
$creadListPrec :: ReadPrec [InputArtifact]
readPrec :: ReadPrec InputArtifact
$creadPrec :: ReadPrec InputArtifact
readList :: ReadS [InputArtifact]
$creadList :: ReadS [InputArtifact]
readsPrec :: Int -> ReadS InputArtifact
$creadsPrec :: Int -> ReadS InputArtifact
Prelude.Read, Int -> InputArtifact -> ShowS
[InputArtifact] -> ShowS
InputArtifact -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [InputArtifact] -> ShowS
$cshowList :: [InputArtifact] -> ShowS
show :: InputArtifact -> String
$cshow :: InputArtifact -> String
showsPrec :: Int -> InputArtifact -> ShowS
$cshowsPrec :: Int -> InputArtifact -> ShowS
Prelude.Show, forall x. Rep InputArtifact x -> InputArtifact
forall x. InputArtifact -> Rep InputArtifact x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep InputArtifact x -> InputArtifact
$cfrom :: forall x. InputArtifact -> Rep InputArtifact x
Prelude.Generic)

-- |
-- Create a value of 'InputArtifact' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'name', 'inputArtifact_name' - The name of the artifact to be worked on (for example, \"My App\").
--
-- The input artifact of an action must exactly match the output artifact
-- declared in a preceding action, but the input artifact does not have to
-- be the next action in strict sequence from the action that provided the
-- output artifact. Actions in parallel can declare different output
-- artifacts, which are in turn consumed by different following actions.
newInputArtifact ::
  -- | 'name'
  Prelude.Text ->
  InputArtifact
newInputArtifact :: Text -> InputArtifact
newInputArtifact Text
pName_ =
  InputArtifact' {$sel:name:InputArtifact' :: Text
name = Text
pName_}

-- | The name of the artifact to be worked on (for example, \"My App\").
--
-- The input artifact of an action must exactly match the output artifact
-- declared in a preceding action, but the input artifact does not have to
-- be the next action in strict sequence from the action that provided the
-- output artifact. Actions in parallel can declare different output
-- artifacts, which are in turn consumed by different following actions.
inputArtifact_name :: Lens.Lens' InputArtifact Prelude.Text
inputArtifact_name :: Lens' InputArtifact Text
inputArtifact_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\InputArtifact' {Text
name :: Text
$sel:name:InputArtifact' :: InputArtifact -> Text
name} -> Text
name) (\s :: InputArtifact
s@InputArtifact' {} Text
a -> InputArtifact
s {$sel:name:InputArtifact' :: Text
name = Text
a} :: InputArtifact)

instance Data.FromJSON InputArtifact where
  parseJSON :: Value -> Parser InputArtifact
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"InputArtifact"
      ( \Object
x ->
          Text -> InputArtifact
InputArtifact' forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"name")
      )

instance Prelude.Hashable InputArtifact where
  hashWithSalt :: Int -> InputArtifact -> Int
hashWithSalt Int
_salt InputArtifact' {Text
name :: Text
$sel:name:InputArtifact' :: InputArtifact -> Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
name

instance Prelude.NFData InputArtifact where
  rnf :: InputArtifact -> ()
rnf InputArtifact' {Text
name :: Text
$sel:name:InputArtifact' :: InputArtifact -> Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Text
name

instance Data.ToJSON InputArtifact where
  toJSON :: InputArtifact -> Value
toJSON InputArtifact' {Text
name :: Text
$sel:name:InputArtifact' :: InputArtifact -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [forall a. a -> Maybe a
Prelude.Just (Key
"name" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
name)]
      )