{-# 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.VoiceId.Types.FailureDetails -- 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.VoiceId.Types.FailureDetails 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 -- | Contains error details for a failed batch job. -- -- /See:/ 'newFailureDetails' smart constructor. data FailureDetails = FailureDetails' { -- | A description of the error that caused the batch job failure. message :: Prelude.Maybe Prelude.Text, -- | An HTTP status code representing the nature of the error. statusCode :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'FailureDetails' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'message', 'failureDetails_message' - A description of the error that caused the batch job failure. -- -- 'statusCode', 'failureDetails_statusCode' - An HTTP status code representing the nature of the error. newFailureDetails :: FailureDetails newFailureDetails = FailureDetails' { message = Prelude.Nothing, statusCode = Prelude.Nothing } -- | A description of the error that caused the batch job failure. failureDetails_message :: Lens.Lens' FailureDetails (Prelude.Maybe Prelude.Text) failureDetails_message = Lens.lens (\FailureDetails' {message} -> message) (\s@FailureDetails' {} a -> s {message = a} :: FailureDetails) -- | An HTTP status code representing the nature of the error. failureDetails_statusCode :: Lens.Lens' FailureDetails (Prelude.Maybe Prelude.Int) failureDetails_statusCode = Lens.lens (\FailureDetails' {statusCode} -> statusCode) (\s@FailureDetails' {} a -> s {statusCode = a} :: FailureDetails) instance Data.FromJSON FailureDetails where parseJSON = Data.withObject "FailureDetails" ( \x -> FailureDetails' Prelude.<$> (x Data..:? "Message") Prelude.<*> (x Data..:? "StatusCode") ) instance Prelude.Hashable FailureDetails where hashWithSalt _salt FailureDetails' {..} = _salt `Prelude.hashWithSalt` message `Prelude.hashWithSalt` statusCode instance Prelude.NFData FailureDetails where rnf FailureDetails' {..} = Prelude.rnf message `Prelude.seq` Prelude.rnf statusCode