module Stratosphere.QuickSight.Analysis.WaterfallVisualProperty (
module Exports, WaterfallVisualProperty(..),
mkWaterfallVisualProperty
) 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.VisualCustomActionProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualSubtitleLabelOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualTitleLabelOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.WaterfallChartConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data WaterfallVisualProperty
=
WaterfallVisualProperty {WaterfallVisualProperty -> ()
haddock_workaround_ :: (),
WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
actions :: (Prelude.Maybe [VisualCustomActionProperty]),
WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
chartConfiguration :: (Prelude.Maybe WaterfallChartConfigurationProperty),
WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
columnHierarchies :: (Prelude.Maybe [ColumnHierarchyProperty]),
WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
subtitle :: (Prelude.Maybe VisualSubtitleLabelOptionsProperty),
WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
title :: (Prelude.Maybe VisualTitleLabelOptionsProperty),
WaterfallVisualProperty -> Maybe (Value Text)
visualContentAltText :: (Prelude.Maybe (Value Prelude.Text)),
WaterfallVisualProperty -> Value Text
visualId :: (Value Prelude.Text)}
deriving stock (WaterfallVisualProperty -> WaterfallVisualProperty -> Bool
(WaterfallVisualProperty -> WaterfallVisualProperty -> Bool)
-> (WaterfallVisualProperty -> WaterfallVisualProperty -> Bool)
-> Eq WaterfallVisualProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: WaterfallVisualProperty -> WaterfallVisualProperty -> Bool
== :: WaterfallVisualProperty -> WaterfallVisualProperty -> Bool
$c/= :: WaterfallVisualProperty -> WaterfallVisualProperty -> Bool
/= :: WaterfallVisualProperty -> WaterfallVisualProperty -> Bool
Prelude.Eq, Int -> WaterfallVisualProperty -> ShowS
[WaterfallVisualProperty] -> ShowS
WaterfallVisualProperty -> String
(Int -> WaterfallVisualProperty -> ShowS)
-> (WaterfallVisualProperty -> String)
-> ([WaterfallVisualProperty] -> ShowS)
-> Show WaterfallVisualProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> WaterfallVisualProperty -> ShowS
showsPrec :: Int -> WaterfallVisualProperty -> ShowS
$cshow :: WaterfallVisualProperty -> String
show :: WaterfallVisualProperty -> String
$cshowList :: [WaterfallVisualProperty] -> ShowS
showList :: [WaterfallVisualProperty] -> ShowS
Prelude.Show)
mkWaterfallVisualProperty ::
Value Prelude.Text -> WaterfallVisualProperty
mkWaterfallVisualProperty :: Value Text -> WaterfallVisualProperty
mkWaterfallVisualProperty Value Text
visualId
= WaterfallVisualProperty
{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 WaterfallChartConfigurationProperty
chartConfiguration = Maybe WaterfallChartConfigurationProperty
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 WaterfallVisualProperty where
toResourceProperties :: WaterfallVisualProperty -> ResourceProperties
toResourceProperties WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.WaterfallVisual",
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 -> WaterfallChartConfigurationProperty -> (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" (WaterfallChartConfigurationProperty -> (Key, Value))
-> Maybe WaterfallChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WaterfallChartConfigurationProperty
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 WaterfallVisualProperty where
toJSON :: WaterfallVisualProperty -> Value
toJSON WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
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 -> WaterfallChartConfigurationProperty -> (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" (WaterfallChartConfigurationProperty -> (Key, Value))
-> Maybe WaterfallChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WaterfallChartConfigurationProperty
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" WaterfallVisualProperty where
type PropertyType "Actions" WaterfallVisualProperty = [VisualCustomActionProperty]
set :: PropertyType "Actions" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "Actions" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty {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" WaterfallVisualProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ChartConfiguration" WaterfallVisualProperty where
type PropertyType "ChartConfiguration" WaterfallVisualProperty = WaterfallChartConfigurationProperty
set :: PropertyType "ChartConfiguration" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "ChartConfiguration" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty
{chartConfiguration :: Maybe WaterfallChartConfigurationProperty
chartConfiguration = WaterfallChartConfigurationProperty
-> Maybe WaterfallChartConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChartConfiguration" WaterfallVisualProperty
WaterfallChartConfigurationProperty
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" WaterfallVisualProperty where
type PropertyType "ColumnHierarchies" WaterfallVisualProperty = [ColumnHierarchyProperty]
set :: PropertyType "ColumnHierarchies" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "ColumnHierarchies" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty
{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" WaterfallVisualProperty
newValue, Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Subtitle" WaterfallVisualProperty where
type PropertyType "Subtitle" WaterfallVisualProperty = VisualSubtitleLabelOptionsProperty
set :: PropertyType "Subtitle" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "Subtitle" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty {subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = VisualSubtitleLabelOptionsProperty
-> Maybe VisualSubtitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" WaterfallVisualProperty
VisualSubtitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Title" WaterfallVisualProperty where
type PropertyType "Title" WaterfallVisualProperty = VisualTitleLabelOptionsProperty
set :: PropertyType "Title" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "Title" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty {title :: Maybe VisualTitleLabelOptionsProperty
title = VisualTitleLabelOptionsProperty
-> Maybe VisualTitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" WaterfallVisualProperty
VisualTitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "VisualContentAltText" WaterfallVisualProperty where
type PropertyType "VisualContentAltText" WaterfallVisualProperty = Value Prelude.Text
set :: PropertyType "VisualContentAltText" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "VisualContentAltText" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty
{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" WaterfallVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
..}
instance Property "VisualId" WaterfallVisualProperty where
type PropertyType "VisualId" WaterfallVisualProperty = Value Prelude.Text
set :: PropertyType "VisualId" WaterfallVisualProperty
-> WaterfallVisualProperty -> WaterfallVisualProperty
set PropertyType "VisualId" WaterfallVisualProperty
newValue WaterfallVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
Value Text
haddock_workaround_ :: WaterfallVisualProperty -> ()
actions :: WaterfallVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: WaterfallVisualProperty
-> Maybe WaterfallChartConfigurationProperty
columnHierarchies :: WaterfallVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: WaterfallVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: WaterfallVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: WaterfallVisualProperty -> Maybe (Value Text)
visualId :: WaterfallVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= WaterfallVisualProperty {visualId :: Value Text
visualId = PropertyType "VisualId" WaterfallVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
Maybe WaterfallChartConfigurationProperty
()
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe WaterfallChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
..}