{-# 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.Kafka.Types.ErrorInfo
-- 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.Kafka.Types.ErrorInfo 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

-- | Returns information about an error state of the cluster.
--
-- /See:/ 'newErrorInfo' smart constructor.
data ErrorInfo = ErrorInfo'
  { -- | A number describing the error programmatically.
    ErrorInfo -> Maybe Text
errorCode :: Prelude.Maybe Prelude.Text,
    -- | An optional field to provide more details about the error.
    ErrorInfo -> Maybe Text
errorString :: Prelude.Maybe Prelude.Text
  }
  deriving (ErrorInfo -> ErrorInfo -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ErrorInfo -> ErrorInfo -> Bool
$c/= :: ErrorInfo -> ErrorInfo -> Bool
== :: ErrorInfo -> ErrorInfo -> Bool
$c== :: ErrorInfo -> ErrorInfo -> Bool
Prelude.Eq, ReadPrec [ErrorInfo]
ReadPrec ErrorInfo
Int -> ReadS ErrorInfo
ReadS [ErrorInfo]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ErrorInfo]
$creadListPrec :: ReadPrec [ErrorInfo]
readPrec :: ReadPrec ErrorInfo
$creadPrec :: ReadPrec ErrorInfo
readList :: ReadS [ErrorInfo]
$creadList :: ReadS [ErrorInfo]
readsPrec :: Int -> ReadS ErrorInfo
$creadsPrec :: Int -> ReadS ErrorInfo
Prelude.Read, Int -> ErrorInfo -> ShowS
[ErrorInfo] -> ShowS
ErrorInfo -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ErrorInfo] -> ShowS
$cshowList :: [ErrorInfo] -> ShowS
show :: ErrorInfo -> String
$cshow :: ErrorInfo -> String
showsPrec :: Int -> ErrorInfo -> ShowS
$cshowsPrec :: Int -> ErrorInfo -> ShowS
Prelude.Show, forall x. Rep ErrorInfo x -> ErrorInfo
forall x. ErrorInfo -> Rep ErrorInfo x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ErrorInfo x -> ErrorInfo
$cfrom :: forall x. ErrorInfo -> Rep ErrorInfo x
Prelude.Generic)

-- |
-- Create a value of 'ErrorInfo' 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:
--
-- 'errorCode', 'errorInfo_errorCode' - A number describing the error programmatically.
--
-- 'errorString', 'errorInfo_errorString' - An optional field to provide more details about the error.
newErrorInfo ::
  ErrorInfo
newErrorInfo :: ErrorInfo
newErrorInfo =
  ErrorInfo'
    { $sel:errorCode:ErrorInfo' :: Maybe Text
errorCode = forall a. Maybe a
Prelude.Nothing,
      $sel:errorString:ErrorInfo' :: Maybe Text
errorString = forall a. Maybe a
Prelude.Nothing
    }

-- | A number describing the error programmatically.
errorInfo_errorCode :: Lens.Lens' ErrorInfo (Prelude.Maybe Prelude.Text)
errorInfo_errorCode :: Lens' ErrorInfo (Maybe Text)
errorInfo_errorCode = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ErrorInfo' {Maybe Text
errorCode :: Maybe Text
$sel:errorCode:ErrorInfo' :: ErrorInfo -> Maybe Text
errorCode} -> Maybe Text
errorCode) (\s :: ErrorInfo
s@ErrorInfo' {} Maybe Text
a -> ErrorInfo
s {$sel:errorCode:ErrorInfo' :: Maybe Text
errorCode = Maybe Text
a} :: ErrorInfo)

-- | An optional field to provide more details about the error.
errorInfo_errorString :: Lens.Lens' ErrorInfo (Prelude.Maybe Prelude.Text)
errorInfo_errorString :: Lens' ErrorInfo (Maybe Text)
errorInfo_errorString = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ErrorInfo' {Maybe Text
errorString :: Maybe Text
$sel:errorString:ErrorInfo' :: ErrorInfo -> Maybe Text
errorString} -> Maybe Text
errorString) (\s :: ErrorInfo
s@ErrorInfo' {} Maybe Text
a -> ErrorInfo
s {$sel:errorString:ErrorInfo' :: Maybe Text
errorString = Maybe Text
a} :: ErrorInfo)

instance Data.FromJSON ErrorInfo where
  parseJSON :: Value -> Parser ErrorInfo
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"ErrorInfo"
      ( \Object
x ->
          Maybe Text -> Maybe Text -> ErrorInfo
ErrorInfo'
            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
"errorCode")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"errorString")
      )

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

instance Prelude.NFData ErrorInfo where
  rnf :: ErrorInfo -> ()
rnf ErrorInfo' {Maybe Text
errorString :: Maybe Text
errorCode :: Maybe Text
$sel:errorString:ErrorInfo' :: ErrorInfo -> Maybe Text
$sel:errorCode:ErrorInfo' :: ErrorInfo -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
errorCode
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
errorString