{-# 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.InterMetricImpactDetails -- 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.InterMetricImpactDetails where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.LookoutMetrics.Types.RelationshipType import qualified Amazonka.Prelude as Prelude -- | Aggregated details about the measures contributing to the anomaly group, -- and the measures potentially impacted by the anomaly group. -- -- /See:/ 'newInterMetricImpactDetails' smart constructor. data InterMetricImpactDetails = InterMetricImpactDetails' { -- | The ID of the anomaly group. anomalyGroupId :: Prelude.Maybe Prelude.Text, -- | For potential causes (@CAUSE_OF_INPUT_ANOMALY_GROUP@), the percentage -- contribution the measure has in causing the anomalies. contributionPercentage :: Prelude.Maybe Prelude.Double, -- | The name of the measure. metricName :: Prelude.Maybe Prelude.Text, -- | Whether a measure is a potential cause of the anomaly group -- (@CAUSE_OF_INPUT_ANOMALY_GROUP@), or whether the measure is impacted by -- the anomaly group (@EFFECT_OF_INPUT_ANOMALY_GROUP@). relationshipType :: Prelude.Maybe RelationshipType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'InterMetricImpactDetails' 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: -- -- 'anomalyGroupId', 'interMetricImpactDetails_anomalyGroupId' - The ID of the anomaly group. -- -- 'contributionPercentage', 'interMetricImpactDetails_contributionPercentage' - For potential causes (@CAUSE_OF_INPUT_ANOMALY_GROUP@), the percentage -- contribution the measure has in causing the anomalies. -- -- 'metricName', 'interMetricImpactDetails_metricName' - The name of the measure. -- -- 'relationshipType', 'interMetricImpactDetails_relationshipType' - Whether a measure is a potential cause of the anomaly group -- (@CAUSE_OF_INPUT_ANOMALY_GROUP@), or whether the measure is impacted by -- the anomaly group (@EFFECT_OF_INPUT_ANOMALY_GROUP@). newInterMetricImpactDetails :: InterMetricImpactDetails newInterMetricImpactDetails = InterMetricImpactDetails' { anomalyGroupId = Prelude.Nothing, contributionPercentage = Prelude.Nothing, metricName = Prelude.Nothing, relationshipType = Prelude.Nothing } -- | The ID of the anomaly group. interMetricImpactDetails_anomalyGroupId :: Lens.Lens' InterMetricImpactDetails (Prelude.Maybe Prelude.Text) interMetricImpactDetails_anomalyGroupId = Lens.lens (\InterMetricImpactDetails' {anomalyGroupId} -> anomalyGroupId) (\s@InterMetricImpactDetails' {} a -> s {anomalyGroupId = a} :: InterMetricImpactDetails) -- | For potential causes (@CAUSE_OF_INPUT_ANOMALY_GROUP@), the percentage -- contribution the measure has in causing the anomalies. interMetricImpactDetails_contributionPercentage :: Lens.Lens' InterMetricImpactDetails (Prelude.Maybe Prelude.Double) interMetricImpactDetails_contributionPercentage = Lens.lens (\InterMetricImpactDetails' {contributionPercentage} -> contributionPercentage) (\s@InterMetricImpactDetails' {} a -> s {contributionPercentage = a} :: InterMetricImpactDetails) -- | The name of the measure. interMetricImpactDetails_metricName :: Lens.Lens' InterMetricImpactDetails (Prelude.Maybe Prelude.Text) interMetricImpactDetails_metricName = Lens.lens (\InterMetricImpactDetails' {metricName} -> metricName) (\s@InterMetricImpactDetails' {} a -> s {metricName = a} :: InterMetricImpactDetails) -- | Whether a measure is a potential cause of the anomaly group -- (@CAUSE_OF_INPUT_ANOMALY_GROUP@), or whether the measure is impacted by -- the anomaly group (@EFFECT_OF_INPUT_ANOMALY_GROUP@). interMetricImpactDetails_relationshipType :: Lens.Lens' InterMetricImpactDetails (Prelude.Maybe RelationshipType) interMetricImpactDetails_relationshipType = Lens.lens (\InterMetricImpactDetails' {relationshipType} -> relationshipType) (\s@InterMetricImpactDetails' {} a -> s {relationshipType = a} :: InterMetricImpactDetails) instance Data.FromJSON InterMetricImpactDetails where parseJSON = Data.withObject "InterMetricImpactDetails" ( \x -> InterMetricImpactDetails' Prelude.<$> (x Data..:? "AnomalyGroupId") Prelude.<*> (x Data..:? "ContributionPercentage") Prelude.<*> (x Data..:? "MetricName") Prelude.<*> (x Data..:? "RelationshipType") ) instance Prelude.Hashable InterMetricImpactDetails where hashWithSalt _salt InterMetricImpactDetails' {..} = _salt `Prelude.hashWithSalt` anomalyGroupId `Prelude.hashWithSalt` contributionPercentage `Prelude.hashWithSalt` metricName `Prelude.hashWithSalt` relationshipType instance Prelude.NFData InterMetricImpactDetails where rnf InterMetricImpactDetails' {..} = Prelude.rnf anomalyGroupId `Prelude.seq` Prelude.rnf contributionPercentage `Prelude.seq` Prelude.rnf metricName `Prelude.seq` Prelude.rnf relationshipType