module Stratosphere.QuickSight.Analysis.HeatMapVisualProperty (
module Exports, HeatMapVisualProperty(..), mkHeatMapVisualProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.ColumnHierarchyProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.HeatMapConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualCustomActionProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualSubtitleLabelOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualTitleLabelOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data HeatMapVisualProperty
=
HeatMapVisualProperty {HeatMapVisualProperty -> ()
haddock_workaround_ :: (),
HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
actions :: (Prelude.Maybe [VisualCustomActionProperty]),
HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
chartConfiguration :: (Prelude.Maybe HeatMapConfigurationProperty),
HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
columnHierarchies :: (Prelude.Maybe [ColumnHierarchyProperty]),
HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
subtitle :: (Prelude.Maybe VisualSubtitleLabelOptionsProperty),
HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
title :: (Prelude.Maybe VisualTitleLabelOptionsProperty),
HeatMapVisualProperty -> Maybe (Value Text)
visualContentAltText :: (Prelude.Maybe (Value Prelude.Text)),
HeatMapVisualProperty -> Value Text
visualId :: (Value Prelude.Text)}
deriving stock (HeatMapVisualProperty -> HeatMapVisualProperty -> Bool
(HeatMapVisualProperty -> HeatMapVisualProperty -> Bool)
-> (HeatMapVisualProperty -> HeatMapVisualProperty -> Bool)
-> Eq HeatMapVisualProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: HeatMapVisualProperty -> HeatMapVisualProperty -> Bool
== :: HeatMapVisualProperty -> HeatMapVisualProperty -> Bool
$c/= :: HeatMapVisualProperty -> HeatMapVisualProperty -> Bool
/= :: HeatMapVisualProperty -> HeatMapVisualProperty -> Bool
Prelude.Eq, Int -> HeatMapVisualProperty -> ShowS
[HeatMapVisualProperty] -> ShowS
HeatMapVisualProperty -> String
(Int -> HeatMapVisualProperty -> ShowS)
-> (HeatMapVisualProperty -> String)
-> ([HeatMapVisualProperty] -> ShowS)
-> Show HeatMapVisualProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> HeatMapVisualProperty -> ShowS
showsPrec :: Int -> HeatMapVisualProperty -> ShowS
$cshow :: HeatMapVisualProperty -> String
show :: HeatMapVisualProperty -> String
$cshowList :: [HeatMapVisualProperty] -> ShowS
showList :: [HeatMapVisualProperty] -> ShowS
Prelude.Show)
mkHeatMapVisualProperty ::
Value Prelude.Text -> HeatMapVisualProperty
mkHeatMapVisualProperty :: Value Text -> HeatMapVisualProperty
mkHeatMapVisualProperty Value Text
visualId
= HeatMapVisualProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), visualId :: Value Text
visualId = Value Text
visualId,
actions :: Maybe [VisualCustomActionProperty]
actions = Maybe [VisualCustomActionProperty]
forall a. Maybe a
Prelude.Nothing, chartConfiguration :: Maybe HeatMapConfigurationProperty
chartConfiguration = Maybe HeatMapConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = Maybe [ColumnHierarchyProperty]
forall a. Maybe a
Prelude.Nothing, subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = Maybe VisualSubtitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing,
title :: Maybe VisualTitleLabelOptionsProperty
title = Maybe VisualTitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing, visualContentAltText :: Maybe (Value Text)
visualContentAltText = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties HeatMapVisualProperty where
toResourceProperties :: HeatMapVisualProperty -> ResourceProperties
toResourceProperties HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.HeatMapVisual",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"VisualId" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
visualId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [VisualCustomActionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Actions" ([VisualCustomActionProperty] -> (Key, Value))
-> Maybe [VisualCustomActionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [VisualCustomActionProperty]
actions,
Key -> HeatMapConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChartConfiguration" (HeatMapConfigurationProperty -> (Key, Value))
-> Maybe HeatMapConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HeatMapConfigurationProperty
chartConfiguration,
Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VisualContentAltText"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
visualContentAltText]))}
instance JSON.ToJSON HeatMapVisualProperty where
toJSON :: HeatMapVisualProperty -> Value
toJSON HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"VisualId" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
visualId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [VisualCustomActionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Actions" ([VisualCustomActionProperty] -> (Key, Value))
-> Maybe [VisualCustomActionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [VisualCustomActionProperty]
actions,
Key -> HeatMapConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChartConfiguration" (HeatMapConfigurationProperty -> (Key, Value))
-> Maybe HeatMapConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HeatMapConfigurationProperty
chartConfiguration,
Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VisualContentAltText"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
visualContentAltText])))
instance Property "Actions" HeatMapVisualProperty where
type PropertyType "Actions" HeatMapVisualProperty = [VisualCustomActionProperty]
set :: PropertyType "Actions" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "Actions" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty {actions :: Maybe [VisualCustomActionProperty]
actions = [VisualCustomActionProperty] -> Maybe [VisualCustomActionProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [VisualCustomActionProperty]
PropertyType "Actions" HeatMapVisualProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ChartConfiguration" HeatMapVisualProperty where
type PropertyType "ChartConfiguration" HeatMapVisualProperty = HeatMapConfigurationProperty
set :: PropertyType "ChartConfiguration" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "ChartConfiguration" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty
{chartConfiguration :: Maybe HeatMapConfigurationProperty
chartConfiguration = HeatMapConfigurationProperty -> Maybe HeatMapConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChartConfiguration" HeatMapVisualProperty
HeatMapConfigurationProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ColumnHierarchies" HeatMapVisualProperty where
type PropertyType "ColumnHierarchies" HeatMapVisualProperty = [ColumnHierarchyProperty]
set :: PropertyType "ColumnHierarchies" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "ColumnHierarchies" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty
{columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = [ColumnHierarchyProperty] -> Maybe [ColumnHierarchyProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ColumnHierarchyProperty]
PropertyType "ColumnHierarchies" HeatMapVisualProperty
newValue, Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Subtitle" HeatMapVisualProperty where
type PropertyType "Subtitle" HeatMapVisualProperty = VisualSubtitleLabelOptionsProperty
set :: PropertyType "Subtitle" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "Subtitle" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty {subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = VisualSubtitleLabelOptionsProperty
-> Maybe VisualSubtitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" HeatMapVisualProperty
VisualSubtitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Title" HeatMapVisualProperty where
type PropertyType "Title" HeatMapVisualProperty = VisualTitleLabelOptionsProperty
set :: PropertyType "Title" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "Title" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty {title :: Maybe VisualTitleLabelOptionsProperty
title = VisualTitleLabelOptionsProperty
-> Maybe VisualTitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" HeatMapVisualProperty
VisualTitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "VisualContentAltText" HeatMapVisualProperty where
type PropertyType "VisualContentAltText" HeatMapVisualProperty = Value Prelude.Text
set :: PropertyType "VisualContentAltText" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "VisualContentAltText" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty
{visualContentAltText :: Maybe (Value Text)
visualContentAltText = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VisualContentAltText" HeatMapVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
..}
instance Property "VisualId" HeatMapVisualProperty where
type PropertyType "VisualId" HeatMapVisualProperty = Value Prelude.Text
set :: PropertyType "VisualId" HeatMapVisualProperty
-> HeatMapVisualProperty -> HeatMapVisualProperty
set PropertyType "VisualId" HeatMapVisualProperty
newValue HeatMapVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: HeatMapVisualProperty -> ()
actions :: HeatMapVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: HeatMapVisualProperty -> Maybe HeatMapConfigurationProperty
columnHierarchies :: HeatMapVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: HeatMapVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: HeatMapVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: HeatMapVisualProperty -> Maybe (Value Text)
visualId :: HeatMapVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= HeatMapVisualProperty {visualId :: Value Text
visualId = PropertyType "VisualId" HeatMapVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe HeatMapConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe HeatMapConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
..}