{-# 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.CloudWatch.Types.Datapoint -- 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.CloudWatch.Types.Datapoint where import Amazonka.CloudWatch.Types.StandardUnit 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 -- | Encapsulates the statistical data that CloudWatch computes from metric -- data. -- -- /See:/ 'newDatapoint' smart constructor. data Datapoint = Datapoint' { -- | The average of the metric values that correspond to the data point. average :: Prelude.Maybe Prelude.Double, -- | The percentile statistic for the data point. extendedStatistics :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Double), -- | The maximum metric value for the data point. maximum :: Prelude.Maybe Prelude.Double, -- | The minimum metric value for the data point. minimum :: Prelude.Maybe Prelude.Double, -- | The number of metric values that contributed to the aggregate value of -- this data point. sampleCount :: Prelude.Maybe Prelude.Double, -- | The sum of the metric values for the data point. sum :: Prelude.Maybe Prelude.Double, -- | The time stamp used for the data point. timestamp :: Prelude.Maybe Data.ISO8601, -- | The standard unit for the data point. unit :: Prelude.Maybe StandardUnit } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Datapoint' 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: -- -- 'average', 'datapoint_average' - The average of the metric values that correspond to the data point. -- -- 'extendedStatistics', 'datapoint_extendedStatistics' - The percentile statistic for the data point. -- -- 'maximum', 'datapoint_maximum' - The maximum metric value for the data point. -- -- 'minimum', 'datapoint_minimum' - The minimum metric value for the data point. -- -- 'sampleCount', 'datapoint_sampleCount' - The number of metric values that contributed to the aggregate value of -- this data point. -- -- 'sum', 'datapoint_sum' - The sum of the metric values for the data point. -- -- 'timestamp', 'datapoint_timestamp' - The time stamp used for the data point. -- -- 'unit', 'datapoint_unit' - The standard unit for the data point. newDatapoint :: Datapoint newDatapoint = Datapoint' { average = Prelude.Nothing, extendedStatistics = Prelude.Nothing, maximum = Prelude.Nothing, minimum = Prelude.Nothing, sampleCount = Prelude.Nothing, sum = Prelude.Nothing, timestamp = Prelude.Nothing, unit = Prelude.Nothing } -- | The average of the metric values that correspond to the data point. datapoint_average :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.Double) datapoint_average = Lens.lens (\Datapoint' {average} -> average) (\s@Datapoint' {} a -> s {average = a} :: Datapoint) -- | The percentile statistic for the data point. datapoint_extendedStatistics :: Lens.Lens' Datapoint (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Double)) datapoint_extendedStatistics = Lens.lens (\Datapoint' {extendedStatistics} -> extendedStatistics) (\s@Datapoint' {} a -> s {extendedStatistics = a} :: Datapoint) Prelude.. Lens.mapping Lens.coerced -- | The maximum metric value for the data point. datapoint_maximum :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.Double) datapoint_maximum = Lens.lens (\Datapoint' {maximum} -> maximum) (\s@Datapoint' {} a -> s {maximum = a} :: Datapoint) -- | The minimum metric value for the data point. datapoint_minimum :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.Double) datapoint_minimum = Lens.lens (\Datapoint' {minimum} -> minimum) (\s@Datapoint' {} a -> s {minimum = a} :: Datapoint) -- | The number of metric values that contributed to the aggregate value of -- this data point. datapoint_sampleCount :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.Double) datapoint_sampleCount = Lens.lens (\Datapoint' {sampleCount} -> sampleCount) (\s@Datapoint' {} a -> s {sampleCount = a} :: Datapoint) -- | The sum of the metric values for the data point. datapoint_sum :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.Double) datapoint_sum = Lens.lens (\Datapoint' {sum} -> sum) (\s@Datapoint' {} a -> s {sum = a} :: Datapoint) -- | The time stamp used for the data point. datapoint_timestamp :: Lens.Lens' Datapoint (Prelude.Maybe Prelude.UTCTime) datapoint_timestamp = Lens.lens (\Datapoint' {timestamp} -> timestamp) (\s@Datapoint' {} a -> s {timestamp = a} :: Datapoint) Prelude.. Lens.mapping Data._Time -- | The standard unit for the data point. datapoint_unit :: Lens.Lens' Datapoint (Prelude.Maybe StandardUnit) datapoint_unit = Lens.lens (\Datapoint' {unit} -> unit) (\s@Datapoint' {} a -> s {unit = a} :: Datapoint) instance Data.FromXML Datapoint where parseXML x = Datapoint' Prelude.<$> (x Data..@? "Average") Prelude.<*> ( x Data..@? "ExtendedStatistics" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLMap "entry" "key" "value") ) Prelude.<*> (x Data..@? "Maximum") Prelude.<*> (x Data..@? "Minimum") Prelude.<*> (x Data..@? "SampleCount") Prelude.<*> (x Data..@? "Sum") Prelude.<*> (x Data..@? "Timestamp") Prelude.<*> (x Data..@? "Unit") instance Prelude.Hashable Datapoint where hashWithSalt _salt Datapoint' {..} = _salt `Prelude.hashWithSalt` average `Prelude.hashWithSalt` extendedStatistics `Prelude.hashWithSalt` maximum `Prelude.hashWithSalt` minimum `Prelude.hashWithSalt` sampleCount `Prelude.hashWithSalt` sum `Prelude.hashWithSalt` timestamp `Prelude.hashWithSalt` unit instance Prelude.NFData Datapoint where rnf Datapoint' {..} = Prelude.rnf average `Prelude.seq` Prelude.rnf extendedStatistics `Prelude.seq` Prelude.rnf maximum `Prelude.seq` Prelude.rnf minimum `Prelude.seq` Prelude.rnf sampleCount `Prelude.seq` Prelude.rnf sum `Prelude.seq` Prelude.rnf timestamp `Prelude.seq` Prelude.rnf unit