module Stratosphere.CloudWatch.AnomalyDetector.MetricMathAnomalyDetectorProperty ( module Exports, MetricMathAnomalyDetectorProperty(..), mkMetricMathAnomalyDetectorProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.CloudWatch.AnomalyDetector.MetricDataQueryProperty as Exports import Stratosphere.ResourceProperties data MetricMathAnomalyDetectorProperty = -- | See: MetricMathAnomalyDetectorProperty {haddock_workaround_ :: (), -- | See: metricDataQueries :: (Prelude.Maybe [MetricDataQueryProperty])} deriving stock (Prelude.Eq, Prelude.Show) mkMetricMathAnomalyDetectorProperty :: MetricMathAnomalyDetectorProperty mkMetricMathAnomalyDetectorProperty = MetricMathAnomalyDetectorProperty {haddock_workaround_ = (), metricDataQueries = Prelude.Nothing} instance ToResourceProperties MetricMathAnomalyDetectorProperty where toResourceProperties MetricMathAnomalyDetectorProperty {..} = ResourceProperties {awsType = "AWS::CloudWatch::AnomalyDetector.MetricMathAnomalyDetector", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "MetricDataQueries" Prelude.<$> metricDataQueries])} instance JSON.ToJSON MetricMathAnomalyDetectorProperty where toJSON MetricMathAnomalyDetectorProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "MetricDataQueries" Prelude.<$> metricDataQueries])) instance Property "MetricDataQueries" MetricMathAnomalyDetectorProperty where type PropertyType "MetricDataQueries" MetricMathAnomalyDetectorProperty = [MetricDataQueryProperty] set newValue MetricMathAnomalyDetectorProperty {..} = MetricMathAnomalyDetectorProperty {metricDataQueries = Prelude.pure newValue, ..}