module Stratosphere.QuickSight.Dashboard.HeatMapSortConfigurationProperty (
        module Exports, HeatMapSortConfigurationProperty(..),
        mkHeatMapSortConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.FieldSortOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.ItemsLimitConfigurationProperty as Exports
import Stratosphere.ResourceProperties
data HeatMapSortConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-heatmapsortconfiguration.html>
    HeatMapSortConfigurationProperty {HeatMapSortConfigurationProperty -> ()
haddock_workaround_ :: (),
                                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-heatmapsortconfiguration.html#cfn-quicksight-dashboard-heatmapsortconfiguration-heatmapcolumnitemslimitconfiguration>
                                      HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnItemsLimitConfiguration :: (Prelude.Maybe ItemsLimitConfigurationProperty),
                                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-heatmapsortconfiguration.html#cfn-quicksight-dashboard-heatmapsortconfiguration-heatmapcolumnsort>
                                      HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapColumnSort :: (Prelude.Maybe [FieldSortOptionsProperty]),
                                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-heatmapsortconfiguration.html#cfn-quicksight-dashboard-heatmapsortconfiguration-heatmaprowitemslimitconfiguration>
                                      HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration :: (Prelude.Maybe ItemsLimitConfigurationProperty),
                                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-heatmapsortconfiguration.html#cfn-quicksight-dashboard-heatmapsortconfiguration-heatmaprowsort>
                                      HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowSort :: (Prelude.Maybe [FieldSortOptionsProperty])}
  deriving stock (HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty -> Bool
(HeatMapSortConfigurationProperty
 -> HeatMapSortConfigurationProperty -> Bool)
-> (HeatMapSortConfigurationProperty
    -> HeatMapSortConfigurationProperty -> Bool)
-> Eq HeatMapSortConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty -> Bool
== :: HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty -> Bool
$c/= :: HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty -> Bool
/= :: HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty -> Bool
Prelude.Eq, Int -> HeatMapSortConfigurationProperty -> ShowS
[HeatMapSortConfigurationProperty] -> ShowS
HeatMapSortConfigurationProperty -> String
(Int -> HeatMapSortConfigurationProperty -> ShowS)
-> (HeatMapSortConfigurationProperty -> String)
-> ([HeatMapSortConfigurationProperty] -> ShowS)
-> Show HeatMapSortConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> HeatMapSortConfigurationProperty -> ShowS
showsPrec :: Int -> HeatMapSortConfigurationProperty -> ShowS
$cshow :: HeatMapSortConfigurationProperty -> String
show :: HeatMapSortConfigurationProperty -> String
$cshowList :: [HeatMapSortConfigurationProperty] -> ShowS
showList :: [HeatMapSortConfigurationProperty] -> ShowS
Prelude.Show)
mkHeatMapSortConfigurationProperty ::
  HeatMapSortConfigurationProperty
mkHeatMapSortConfigurationProperty :: HeatMapSortConfigurationProperty
mkHeatMapSortConfigurationProperty
  = HeatMapSortConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (),
       heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnItemsLimitConfiguration = Maybe ItemsLimitConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapColumnSort = Maybe [FieldSortOptionsProperty]
forall a. Maybe a
Prelude.Nothing,
       heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration = Maybe ItemsLimitConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       heatMapRowSort :: Maybe [FieldSortOptionsProperty]
heatMapRowSort = Maybe [FieldSortOptionsProperty]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties HeatMapSortConfigurationProperty where
  toResourceProperties :: HeatMapSortConfigurationProperty -> ResourceProperties
toResourceProperties HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QuickSight::Dashboard.HeatMapSortConfiguration",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                           [Key -> ItemsLimitConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapColumnItemsLimitConfiguration"
                              (ItemsLimitConfigurationProperty -> (Key, Value))
-> Maybe ItemsLimitConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ItemsLimitConfigurationProperty
heatMapColumnItemsLimitConfiguration,
                            Key -> [FieldSortOptionsProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapColumnSort" ([FieldSortOptionsProperty] -> (Key, Value))
-> Maybe [FieldSortOptionsProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FieldSortOptionsProperty]
heatMapColumnSort,
                            Key -> ItemsLimitConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapRowItemsLimitConfiguration"
                              (ItemsLimitConfigurationProperty -> (Key, Value))
-> Maybe ItemsLimitConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration,
                            Key -> [FieldSortOptionsProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapRowSort" ([FieldSortOptionsProperty] -> (Key, Value))
-> Maybe [FieldSortOptionsProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FieldSortOptionsProperty]
heatMapRowSort])}
instance JSON.ToJSON HeatMapSortConfigurationProperty where
  toJSON :: HeatMapSortConfigurationProperty -> Value
toJSON HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
              [Key -> ItemsLimitConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapColumnItemsLimitConfiguration"
                 (ItemsLimitConfigurationProperty -> (Key, Value))
-> Maybe ItemsLimitConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ItemsLimitConfigurationProperty
heatMapColumnItemsLimitConfiguration,
               Key -> [FieldSortOptionsProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapColumnSort" ([FieldSortOptionsProperty] -> (Key, Value))
-> Maybe [FieldSortOptionsProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FieldSortOptionsProperty]
heatMapColumnSort,
               Key -> ItemsLimitConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapRowItemsLimitConfiguration"
                 (ItemsLimitConfigurationProperty -> (Key, Value))
-> Maybe ItemsLimitConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration,
               Key -> [FieldSortOptionsProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeatMapRowSort" ([FieldSortOptionsProperty] -> (Key, Value))
-> Maybe [FieldSortOptionsProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FieldSortOptionsProperty]
heatMapRowSort]))
instance Property "HeatMapColumnItemsLimitConfiguration" HeatMapSortConfigurationProperty where
  type PropertyType "HeatMapColumnItemsLimitConfiguration" HeatMapSortConfigurationProperty = ItemsLimitConfigurationProperty
  set :: PropertyType
  "HeatMapColumnItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
set PropertyType
  "HeatMapColumnItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
newValue HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = HeatMapSortConfigurationProperty
        {heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnItemsLimitConfiguration = ItemsLimitConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "HeatMapColumnItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
ItemsLimitConfigurationProperty
newValue, Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: ()
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
instance Property "HeatMapColumnSort" HeatMapSortConfigurationProperty where
  type PropertyType "HeatMapColumnSort" HeatMapSortConfigurationProperty = [FieldSortOptionsProperty]
  set :: PropertyType "HeatMapColumnSort" HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
set PropertyType "HeatMapColumnSort" HeatMapSortConfigurationProperty
newValue HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = HeatMapSortConfigurationProperty
        {heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapColumnSort = [FieldSortOptionsProperty] -> Maybe [FieldSortOptionsProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [FieldSortOptionsProperty]
PropertyType "HeatMapColumnSort" HeatMapSortConfigurationProperty
newValue, Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
instance Property "HeatMapRowItemsLimitConfiguration" HeatMapSortConfigurationProperty where
  type PropertyType "HeatMapRowItemsLimitConfiguration" HeatMapSortConfigurationProperty = ItemsLimitConfigurationProperty
  set :: PropertyType
  "HeatMapRowItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
set PropertyType
  "HeatMapRowItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
newValue HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = HeatMapSortConfigurationProperty
        {heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowItemsLimitConfiguration = ItemsLimitConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "HeatMapRowItemsLimitConfiguration"
  HeatMapSortConfigurationProperty
ItemsLimitConfigurationProperty
newValue, Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
instance Property "HeatMapRowSort" HeatMapSortConfigurationProperty where
  type PropertyType "HeatMapRowSort" HeatMapSortConfigurationProperty = [FieldSortOptionsProperty]
  set :: PropertyType "HeatMapRowSort" HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
-> HeatMapSortConfigurationProperty
set PropertyType "HeatMapRowSort" HeatMapSortConfigurationProperty
newValue HeatMapSortConfigurationProperty {Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: HeatMapSortConfigurationProperty -> ()
heatMapColumnItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: HeatMapSortConfigurationProperty
-> Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: HeatMapSortConfigurationProperty
-> Maybe [FieldSortOptionsProperty]
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapRowSort :: Maybe [FieldSortOptionsProperty]
..}
    = HeatMapSortConfigurationProperty
        {heatMapRowSort :: Maybe [FieldSortOptionsProperty]
heatMapRowSort = [FieldSortOptionsProperty] -> Maybe [FieldSortOptionsProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [FieldSortOptionsProperty]
PropertyType "HeatMapRowSort" HeatMapSortConfigurationProperty
newValue, Maybe [FieldSortOptionsProperty]
Maybe ItemsLimitConfigurationProperty
()
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
haddock_workaround_ :: ()
heatMapColumnItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
heatMapColumnSort :: Maybe [FieldSortOptionsProperty]
heatMapRowItemsLimitConfiguration :: Maybe ItemsLimitConfigurationProperty
..}