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