module Stratosphere.QuickSight.Dashboard.HeatMapFieldWellsProperty ( module Exports, HeatMapFieldWellsProperty(..), mkHeatMapFieldWellsProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.HeatMapAggregatedFieldWellsProperty as Exports import Stratosphere.ResourceProperties data HeatMapFieldWellsProperty = -- | See: HeatMapFieldWellsProperty {haddock_workaround_ :: (), -- | See: heatMapAggregatedFieldWells :: (Prelude.Maybe HeatMapAggregatedFieldWellsProperty)} deriving stock (Prelude.Eq, Prelude.Show) mkHeatMapFieldWellsProperty :: HeatMapFieldWellsProperty mkHeatMapFieldWellsProperty = HeatMapFieldWellsProperty {haddock_workaround_ = (), heatMapAggregatedFieldWells = Prelude.Nothing} instance ToResourceProperties HeatMapFieldWellsProperty where toResourceProperties HeatMapFieldWellsProperty {..} = ResourceProperties {awsType = "AWS::QuickSight::Dashboard.HeatMapFieldWells", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "HeatMapAggregatedFieldWells" Prelude.<$> heatMapAggregatedFieldWells])} instance JSON.ToJSON HeatMapFieldWellsProperty where toJSON HeatMapFieldWellsProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "HeatMapAggregatedFieldWells" Prelude.<$> heatMapAggregatedFieldWells])) instance Property "HeatMapAggregatedFieldWells" HeatMapFieldWellsProperty where type PropertyType "HeatMapAggregatedFieldWells" HeatMapFieldWellsProperty = HeatMapAggregatedFieldWellsProperty set newValue HeatMapFieldWellsProperty {..} = HeatMapFieldWellsProperty {heatMapAggregatedFieldWells = Prelude.pure newValue, ..}