{-# 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.FaultStatistics -- 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.FaultStatistics 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 -- | Information about requests that failed with a 5xx Server Error status -- code. -- -- /See:/ 'newFaultStatistics' smart constructor. data FaultStatistics = FaultStatistics' { -- | The number of requests that failed with untracked 5xx Server Error -- status codes. otherCount :: Prelude.Maybe Prelude.Integer, -- | The total number of requests that failed with a 5xx Server Error status -- code. totalCount :: Prelude.Maybe Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'FaultStatistics' 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: -- -- 'otherCount', 'faultStatistics_otherCount' - The number of requests that failed with untracked 5xx Server Error -- status codes. -- -- 'totalCount', 'faultStatistics_totalCount' - The total number of requests that failed with a 5xx Server Error status -- code. newFaultStatistics :: FaultStatistics newFaultStatistics = FaultStatistics' { otherCount = Prelude.Nothing, totalCount = Prelude.Nothing } -- | The number of requests that failed with untracked 5xx Server Error -- status codes. faultStatistics_otherCount :: Lens.Lens' FaultStatistics (Prelude.Maybe Prelude.Integer) faultStatistics_otherCount = Lens.lens (\FaultStatistics' {otherCount} -> otherCount) (\s@FaultStatistics' {} a -> s {otherCount = a} :: FaultStatistics) -- | The total number of requests that failed with a 5xx Server Error status -- code. faultStatistics_totalCount :: Lens.Lens' FaultStatistics (Prelude.Maybe Prelude.Integer) faultStatistics_totalCount = Lens.lens (\FaultStatistics' {totalCount} -> totalCount) (\s@FaultStatistics' {} a -> s {totalCount = a} :: FaultStatistics) instance Data.FromJSON FaultStatistics where parseJSON = Data.withObject "FaultStatistics" ( \x -> FaultStatistics' Prelude.<$> (x Data..:? "OtherCount") Prelude.<*> (x Data..:? "TotalCount") ) instance Prelude.Hashable FaultStatistics where hashWithSalt _salt FaultStatistics' {..} = _salt `Prelude.hashWithSalt` otherCount `Prelude.hashWithSalt` totalCount instance Prelude.NFData FaultStatistics where rnf FaultStatistics' {..} = Prelude.rnf otherCount `Prelude.seq` Prelude.rnf totalCount