{-# 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.XRay.Types.RootCauseException -- 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.XRay.Types.RootCauseException 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 -- | The exception associated with a root cause. -- -- /See:/ 'newRootCauseException' smart constructor. data RootCauseException = RootCauseException' { -- | The message of the exception. message :: Prelude.Maybe Prelude.Text, -- | The name of the exception. name :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RootCauseException' 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', 'rootCauseException_message' - The message of the exception. -- -- 'name', 'rootCauseException_name' - The name of the exception. newRootCauseException :: RootCauseException newRootCauseException = RootCauseException' { message = Prelude.Nothing, name = Prelude.Nothing } -- | The message of the exception. rootCauseException_message :: Lens.Lens' RootCauseException (Prelude.Maybe Prelude.Text) rootCauseException_message = Lens.lens (\RootCauseException' {message} -> message) (\s@RootCauseException' {} a -> s {message = a} :: RootCauseException) -- | The name of the exception. rootCauseException_name :: Lens.Lens' RootCauseException (Prelude.Maybe Prelude.Text) rootCauseException_name = Lens.lens (\RootCauseException' {name} -> name) (\s@RootCauseException' {} a -> s {name = a} :: RootCauseException) instance Data.FromJSON RootCauseException where parseJSON = Data.withObject "RootCauseException" ( \x -> RootCauseException' Prelude.<$> (x Data..:? "Message") Prelude.<*> (x Data..:? "Name") ) instance Prelude.Hashable RootCauseException where hashWithSalt _salt RootCauseException' {..} = _salt `Prelude.hashWithSalt` message `Prelude.hashWithSalt` name instance Prelude.NFData RootCauseException where rnf RootCauseException' {..} = Prelude.rnf message `Prelude.seq` Prelude.rnf name