{-# 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.LookoutMetrics.Types.AnomalyGroupTimeSeries -- 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.LookoutMetrics.Types.AnomalyGroupTimeSeries 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 -- | An anomalous metric in an anomaly group. -- -- /See:/ 'newAnomalyGroupTimeSeries' smart constructor. data AnomalyGroupTimeSeries = AnomalyGroupTimeSeries' { -- | The ID of the metric. timeSeriesId :: Prelude.Maybe Prelude.Text, -- | The ID of the anomaly group. anomalyGroupId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AnomalyGroupTimeSeries' 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: -- -- 'timeSeriesId', 'anomalyGroupTimeSeries_timeSeriesId' - The ID of the metric. -- -- 'anomalyGroupId', 'anomalyGroupTimeSeries_anomalyGroupId' - The ID of the anomaly group. newAnomalyGroupTimeSeries :: -- | 'anomalyGroupId' Prelude.Text -> AnomalyGroupTimeSeries newAnomalyGroupTimeSeries pAnomalyGroupId_ = AnomalyGroupTimeSeries' { timeSeriesId = Prelude.Nothing, anomalyGroupId = pAnomalyGroupId_ } -- | The ID of the metric. anomalyGroupTimeSeries_timeSeriesId :: Lens.Lens' AnomalyGroupTimeSeries (Prelude.Maybe Prelude.Text) anomalyGroupTimeSeries_timeSeriesId = Lens.lens (\AnomalyGroupTimeSeries' {timeSeriesId} -> timeSeriesId) (\s@AnomalyGroupTimeSeries' {} a -> s {timeSeriesId = a} :: AnomalyGroupTimeSeries) -- | The ID of the anomaly group. anomalyGroupTimeSeries_anomalyGroupId :: Lens.Lens' AnomalyGroupTimeSeries Prelude.Text anomalyGroupTimeSeries_anomalyGroupId = Lens.lens (\AnomalyGroupTimeSeries' {anomalyGroupId} -> anomalyGroupId) (\s@AnomalyGroupTimeSeries' {} a -> s {anomalyGroupId = a} :: AnomalyGroupTimeSeries) instance Prelude.Hashable AnomalyGroupTimeSeries where hashWithSalt _salt AnomalyGroupTimeSeries' {..} = _salt `Prelude.hashWithSalt` timeSeriesId `Prelude.hashWithSalt` anomalyGroupId instance Prelude.NFData AnomalyGroupTimeSeries where rnf AnomalyGroupTimeSeries' {..} = Prelude.rnf timeSeriesId `Prelude.seq` Prelude.rnf anomalyGroupId instance Data.ToJSON AnomalyGroupTimeSeries where toJSON AnomalyGroupTimeSeries' {..} = Data.object ( Prelude.catMaybes [ ("TimeSeriesId" Data..=) Prelude.<$> timeSeriesId, Prelude.Just ("AnomalyGroupId" Data..= anomalyGroupId) ] )