{-# 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.Amplify.Types.Artifact
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Amplify.Types.Artifact where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | Describes an artifact.
--
-- /See:/ 'newArtifact' smart constructor.
data Artifact = Artifact'
  { -- | The file name for the artifact.
    Artifact -> Text
artifactFileName :: Prelude.Text,
    -- | The unique ID for the artifact.
    Artifact -> Text
artifactId :: Prelude.Text
  }
  deriving (Artifact -> Artifact -> Bool
(Artifact -> Artifact -> Bool)
-> (Artifact -> Artifact -> Bool) -> Eq Artifact
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Artifact -> Artifact -> Bool
$c/= :: Artifact -> Artifact -> Bool
== :: Artifact -> Artifact -> Bool
$c== :: Artifact -> Artifact -> Bool
Prelude.Eq, ReadPrec [Artifact]
ReadPrec Artifact
Int -> ReadS Artifact
ReadS [Artifact]
(Int -> ReadS Artifact)
-> ReadS [Artifact]
-> ReadPrec Artifact
-> ReadPrec [Artifact]
-> Read Artifact
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Artifact]
$creadListPrec :: ReadPrec [Artifact]
readPrec :: ReadPrec Artifact
$creadPrec :: ReadPrec Artifact
readList :: ReadS [Artifact]
$creadList :: ReadS [Artifact]
readsPrec :: Int -> ReadS Artifact
$creadsPrec :: Int -> ReadS Artifact
Prelude.Read, Int -> Artifact -> ShowS
[Artifact] -> ShowS
Artifact -> String
(Int -> Artifact -> ShowS)
-> (Artifact -> String) -> ([Artifact] -> ShowS) -> Show Artifact
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Artifact] -> ShowS
$cshowList :: [Artifact] -> ShowS
show :: Artifact -> String
$cshow :: Artifact -> String
showsPrec :: Int -> Artifact -> ShowS
$cshowsPrec :: Int -> Artifact -> ShowS
Prelude.Show, (forall x. Artifact -> Rep Artifact x)
-> (forall x. Rep Artifact x -> Artifact) -> Generic Artifact
forall x. Rep Artifact x -> Artifact
forall x. Artifact -> Rep Artifact x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Artifact x -> Artifact
$cfrom :: forall x. Artifact -> Rep Artifact x
Prelude.Generic)

-- |
-- Create a value of 'Artifact' 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:
--
-- 'artifactFileName', 'artifact_artifactFileName' - The file name for the artifact.
--
-- 'artifactId', 'artifact_artifactId' - The unique ID for the artifact.
newArtifact ::
  -- | 'artifactFileName'
  Prelude.Text ->
  -- | 'artifactId'
  Prelude.Text ->
  Artifact
newArtifact :: Text -> Text -> Artifact
newArtifact Text
pArtifactFileName_ Text
pArtifactId_ =
  Artifact' :: Text -> Text -> Artifact
Artifact'
    { $sel:artifactFileName:Artifact' :: Text
artifactFileName = Text
pArtifactFileName_,
      $sel:artifactId:Artifact' :: Text
artifactId = Text
pArtifactId_
    }

-- | The file name for the artifact.
artifact_artifactFileName :: Lens.Lens' Artifact Prelude.Text
artifact_artifactFileName :: (Text -> f Text) -> Artifact -> f Artifact
artifact_artifactFileName = (Artifact -> Text)
-> (Artifact -> Text -> Artifact)
-> Lens Artifact Artifact Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Text
artifactFileName :: Text
$sel:artifactFileName:Artifact' :: Artifact -> Text
artifactFileName} -> Text
artifactFileName) (\s :: Artifact
s@Artifact' {} Text
a -> Artifact
s {$sel:artifactFileName:Artifact' :: Text
artifactFileName = Text
a} :: Artifact)

-- | The unique ID for the artifact.
artifact_artifactId :: Lens.Lens' Artifact Prelude.Text
artifact_artifactId :: (Text -> f Text) -> Artifact -> f Artifact
artifact_artifactId = (Artifact -> Text)
-> (Artifact -> Text -> Artifact)
-> Lens Artifact Artifact Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Artifact' {Text
artifactId :: Text
$sel:artifactId:Artifact' :: Artifact -> Text
artifactId} -> Text
artifactId) (\s :: Artifact
s@Artifact' {} Text
a -> Artifact
s {$sel:artifactId:Artifact' :: Text
artifactId = Text
a} :: Artifact)

instance Core.FromJSON Artifact where
  parseJSON :: Value -> Parser Artifact
parseJSON =
    String -> (Object -> Parser Artifact) -> Value -> Parser Artifact
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"Artifact"
      ( \Object
x ->
          Text -> Text -> Artifact
Artifact'
            (Text -> Text -> Artifact)
-> Parser Text -> Parser (Text -> Artifact)
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
"artifactFileName")
            Parser (Text -> Artifact) -> Parser Text -> Parser Artifact
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"artifactId")
      )

instance Prelude.Hashable Artifact

instance Prelude.NFData Artifact