{-# 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.ResponseTimeRootCause -- 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.ResponseTimeRootCause 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.ResponseTimeRootCauseService -- | The root cause information for a response time warning. -- -- /See:/ 'newResponseTimeRootCause' smart constructor. data ResponseTimeRootCause = ResponseTimeRootCause' { -- | 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 -- contains a name, account ID, type, and inferred flag. services :: Prelude.Maybe [ResponseTimeRootCauseService] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ResponseTimeRootCause' 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: -- -- 'clientImpacting', 'responseTimeRootCause_clientImpacting' - A flag that denotes that the root cause impacts the trace client. -- -- 'services', 'responseTimeRootCause_services' - A list of corresponding services. A service identifies a segment and -- contains a name, account ID, type, and inferred flag. newResponseTimeRootCause :: ResponseTimeRootCause newResponseTimeRootCause = ResponseTimeRootCause' { clientImpacting = Prelude.Nothing, services = Prelude.Nothing } -- | A flag that denotes that the root cause impacts the trace client. responseTimeRootCause_clientImpacting :: Lens.Lens' ResponseTimeRootCause (Prelude.Maybe Prelude.Bool) responseTimeRootCause_clientImpacting = Lens.lens (\ResponseTimeRootCause' {clientImpacting} -> clientImpacting) (\s@ResponseTimeRootCause' {} a -> s {clientImpacting = a} :: ResponseTimeRootCause) -- | A list of corresponding services. A service identifies a segment and -- contains a name, account ID, type, and inferred flag. responseTimeRootCause_services :: Lens.Lens' ResponseTimeRootCause (Prelude.Maybe [ResponseTimeRootCauseService]) responseTimeRootCause_services = Lens.lens (\ResponseTimeRootCause' {services} -> services) (\s@ResponseTimeRootCause' {} a -> s {services = a} :: ResponseTimeRootCause) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON ResponseTimeRootCause where parseJSON = Data.withObject "ResponseTimeRootCause" ( \x -> ResponseTimeRootCause' Prelude.<$> (x Data..:? "ClientImpacting") Prelude.<*> (x Data..:? "Services" Data..!= Prelude.mempty) ) instance Prelude.Hashable ResponseTimeRootCause where hashWithSalt _salt ResponseTimeRootCause' {..} = _salt `Prelude.hashWithSalt` clientImpacting `Prelude.hashWithSalt` services instance Prelude.NFData ResponseTimeRootCause where rnf ResponseTimeRootCause' {..} = Prelude.rnf clientImpacting `Prelude.seq` Prelude.rnf services