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