amazonka-xray-2.0: gen/Amazonka/XRay/Types/FaultRootCause.hs
{-# 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.FaultRootCause
-- 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.FaultRootCause 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
import Amazonka.XRay.Types.FaultRootCauseService
-- | The root cause information for a trace summary fault.
--
-- /See:/ 'newFaultRootCause' smart constructor.
data FaultRootCause = FaultRootCause'
{ -- | A flag that denotes that the root cause impacts the trace client.
clientImpacting :: Prelude.Maybe Prelude.Bool,
-- | A list of corresponding services. A service identifies a segment and it
-- contains a name, account ID, type, and inferred flag.
services :: Prelude.Maybe [FaultRootCauseService]
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'FaultRootCause' 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:
--
-- 'clientImpacting', 'faultRootCause_clientImpacting' - A flag that denotes that the root cause impacts the trace client.
--
-- 'services', 'faultRootCause_services' - A list of corresponding services. A service identifies a segment and it
-- contains a name, account ID, type, and inferred flag.
newFaultRootCause ::
FaultRootCause
newFaultRootCause =
FaultRootCause'
{ clientImpacting = Prelude.Nothing,
services = Prelude.Nothing
}
-- | A flag that denotes that the root cause impacts the trace client.
faultRootCause_clientImpacting :: Lens.Lens' FaultRootCause (Prelude.Maybe Prelude.Bool)
faultRootCause_clientImpacting = Lens.lens (\FaultRootCause' {clientImpacting} -> clientImpacting) (\s@FaultRootCause' {} a -> s {clientImpacting = a} :: FaultRootCause)
-- | A list of corresponding services. A service identifies a segment and it
-- contains a name, account ID, type, and inferred flag.
faultRootCause_services :: Lens.Lens' FaultRootCause (Prelude.Maybe [FaultRootCauseService])
faultRootCause_services = Lens.lens (\FaultRootCause' {services} -> services) (\s@FaultRootCause' {} a -> s {services = a} :: FaultRootCause) Prelude.. Lens.mapping Lens.coerced
instance Data.FromJSON FaultRootCause where
parseJSON =
Data.withObject
"FaultRootCause"
( \x ->
FaultRootCause'
Prelude.<$> (x Data..:? "ClientImpacting")
Prelude.<*> (x Data..:? "Services" Data..!= Prelude.mempty)
)
instance Prelude.Hashable FaultRootCause where
hashWithSalt _salt FaultRootCause' {..} =
_salt
`Prelude.hashWithSalt` clientImpacting
`Prelude.hashWithSalt` services
instance Prelude.NFData FaultRootCause where
rnf FaultRootCause' {..} =
Prelude.rnf clientImpacting
`Prelude.seq` Prelude.rnf services