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