{-# 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.Rekognition.Types.Parent
-- 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.Rekognition.Types.Parent 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

-- | A parent label for a label. A label can have 0, 1, or more parents.
--
-- /See:/ 'newParent' smart constructor.
data Parent = Parent'
  { -- | The name of the parent label.
    Parent -> Maybe Text
name :: Prelude.Maybe Prelude.Text
  }
  deriving (Parent -> Parent -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Parent -> Parent -> Bool
$c/= :: Parent -> Parent -> Bool
== :: Parent -> Parent -> Bool
$c== :: Parent -> Parent -> Bool
Prelude.Eq, ReadPrec [Parent]
ReadPrec Parent
Int -> ReadS Parent
ReadS [Parent]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Parent]
$creadListPrec :: ReadPrec [Parent]
readPrec :: ReadPrec Parent
$creadPrec :: ReadPrec Parent
readList :: ReadS [Parent]
$creadList :: ReadS [Parent]
readsPrec :: Int -> ReadS Parent
$creadsPrec :: Int -> ReadS Parent
Prelude.Read, Int -> Parent -> ShowS
[Parent] -> ShowS
Parent -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Parent] -> ShowS
$cshowList :: [Parent] -> ShowS
show :: Parent -> String
$cshow :: Parent -> String
showsPrec :: Int -> Parent -> ShowS
$cshowsPrec :: Int -> Parent -> ShowS
Prelude.Show, forall x. Rep Parent x -> Parent
forall x. Parent -> Rep Parent x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Parent x -> Parent
$cfrom :: forall x. Parent -> Rep Parent x
Prelude.Generic)

-- |
-- Create a value of 'Parent' 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', 'parent_name' - The name of the parent label.
newParent ::
  Parent
newParent :: Parent
newParent = Parent' {$sel:name:Parent' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing}

-- | The name of the parent label.
parent_name :: Lens.Lens' Parent (Prelude.Maybe Prelude.Text)
parent_name :: Lens' Parent (Maybe Text)
parent_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Parent' {Maybe Text
name :: Maybe Text
$sel:name:Parent' :: Parent -> Maybe Text
name} -> Maybe Text
name) (\s :: Parent
s@Parent' {} Maybe Text
a -> Parent
s {$sel:name:Parent' :: Maybe Text
name = Maybe Text
a} :: Parent)

instance Data.FromJSON Parent where
  parseJSON :: Value -> Parser Parent
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"Parent"
      (\Object
x -> Maybe Text -> Parent
Parent' 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
"Name"))

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

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