module Stratosphere.QuickSight.Dashboard.LegendOptionsProperty (
module Exports, LegendOptionsProperty(..), mkLegendOptionsProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.FontConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.LabelOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data LegendOptionsProperty
=
LegendOptionsProperty {LegendOptionsProperty -> ()
haddock_workaround_ :: (),
LegendOptionsProperty -> Maybe (Value Text)
height :: (Prelude.Maybe (Value Prelude.Text)),
LegendOptionsProperty -> Maybe (Value Text)
position :: (Prelude.Maybe (Value Prelude.Text)),
LegendOptionsProperty -> Maybe LabelOptionsProperty
title :: (Prelude.Maybe LabelOptionsProperty),
LegendOptionsProperty -> Maybe FontConfigurationProperty
valueFontConfiguration :: (Prelude.Maybe FontConfigurationProperty),
LegendOptionsProperty -> Maybe (Value Text)
visibility :: (Prelude.Maybe (Value Prelude.Text)),
LegendOptionsProperty -> Maybe (Value Text)
width :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (LegendOptionsProperty -> LegendOptionsProperty -> Bool
(LegendOptionsProperty -> LegendOptionsProperty -> Bool)
-> (LegendOptionsProperty -> LegendOptionsProperty -> Bool)
-> Eq LegendOptionsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: LegendOptionsProperty -> LegendOptionsProperty -> Bool
== :: LegendOptionsProperty -> LegendOptionsProperty -> Bool
$c/= :: LegendOptionsProperty -> LegendOptionsProperty -> Bool
/= :: LegendOptionsProperty -> LegendOptionsProperty -> Bool
Prelude.Eq, Int -> LegendOptionsProperty -> ShowS
[LegendOptionsProperty] -> ShowS
LegendOptionsProperty -> String
(Int -> LegendOptionsProperty -> ShowS)
-> (LegendOptionsProperty -> String)
-> ([LegendOptionsProperty] -> ShowS)
-> Show LegendOptionsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> LegendOptionsProperty -> ShowS
showsPrec :: Int -> LegendOptionsProperty -> ShowS
$cshow :: LegendOptionsProperty -> String
show :: LegendOptionsProperty -> String
$cshowList :: [LegendOptionsProperty] -> ShowS
showList :: [LegendOptionsProperty] -> ShowS
Prelude.Show)
mkLegendOptionsProperty :: LegendOptionsProperty
mkLegendOptionsProperty :: LegendOptionsProperty
mkLegendOptionsProperty
= LegendOptionsProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), height :: Maybe (Value Text)
height = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
position :: Maybe (Value Text)
position = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, title :: Maybe LabelOptionsProperty
title = Maybe LabelOptionsProperty
forall a. Maybe a
Prelude.Nothing,
valueFontConfiguration :: Maybe FontConfigurationProperty
valueFontConfiguration = Maybe FontConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
visibility :: Maybe (Value Text)
visibility = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, width :: Maybe (Value Text)
width = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties LegendOptionsProperty where
toResourceProperties :: LegendOptionsProperty -> ResourceProperties
toResourceProperties LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Dashboard.LegendOptions",
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 -> 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
"Height" (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)
height,
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
"Position" (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)
position,
Key -> LabelOptionsProperty -> (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" (LabelOptionsProperty -> (Key, Value))
-> Maybe LabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LabelOptionsProperty
title,
Key -> FontConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValueFontConfiguration"
(FontConfigurationProperty -> (Key, Value))
-> Maybe FontConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontConfigurationProperty
valueFontConfiguration,
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
"Visibility" (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)
visibility,
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
"Width" (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)
width])}
instance JSON.ToJSON LegendOptionsProperty where
toJSON :: LegendOptionsProperty -> Value
toJSON LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= [(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 -> 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
"Height" (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)
height,
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
"Position" (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)
position,
Key -> LabelOptionsProperty -> (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" (LabelOptionsProperty -> (Key, Value))
-> Maybe LabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LabelOptionsProperty
title,
Key -> FontConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValueFontConfiguration"
(FontConfigurationProperty -> (Key, Value))
-> Maybe FontConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontConfigurationProperty
valueFontConfiguration,
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
"Visibility" (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)
visibility,
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
"Width" (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)
width]))
instance Property "Height" LegendOptionsProperty where
type PropertyType "Height" LegendOptionsProperty = Value Prelude.Text
set :: PropertyType "Height" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "Height" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty {height :: Maybe (Value Text)
height = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Height" LegendOptionsProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: ()
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
haddock_workaround_ :: ()
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
instance Property "Position" LegendOptionsProperty where
type PropertyType "Position" LegendOptionsProperty = Value Prelude.Text
set :: PropertyType "Position" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "Position" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty {position :: Maybe (Value Text)
position = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Position" LegendOptionsProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: ()
height :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
instance Property "Title" LegendOptionsProperty where
type PropertyType "Title" LegendOptionsProperty = LabelOptionsProperty
set :: PropertyType "Title" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "Title" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty {title :: Maybe LabelOptionsProperty
title = LabelOptionsProperty -> Maybe LabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" LegendOptionsProperty
LabelOptionsProperty
newValue, Maybe (Value Text)
Maybe FontConfigurationProperty
()
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
instance Property "ValueFontConfiguration" LegendOptionsProperty where
type PropertyType "ValueFontConfiguration" LegendOptionsProperty = FontConfigurationProperty
set :: PropertyType "ValueFontConfiguration" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "ValueFontConfiguration" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty
{valueFontConfiguration :: Maybe FontConfigurationProperty
valueFontConfiguration = FontConfigurationProperty -> Maybe FontConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ValueFontConfiguration" LegendOptionsProperty
FontConfigurationProperty
newValue, Maybe (Value Text)
Maybe LabelOptionsProperty
()
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
instance Property "Visibility" LegendOptionsProperty where
type PropertyType "Visibility" LegendOptionsProperty = Value Prelude.Text
set :: PropertyType "Visibility" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "Visibility" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty {visibility :: Maybe (Value Text)
visibility = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Visibility" LegendOptionsProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
width :: Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
width :: Maybe (Value Text)
..}
instance Property "Width" LegendOptionsProperty where
type PropertyType "Width" LegendOptionsProperty = Value Prelude.Text
set :: PropertyType "Width" LegendOptionsProperty
-> LegendOptionsProperty -> LegendOptionsProperty
set PropertyType "Width" LegendOptionsProperty
newValue LegendOptionsProperty {Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: LegendOptionsProperty -> ()
height :: LegendOptionsProperty -> Maybe (Value Text)
position :: LegendOptionsProperty -> Maybe (Value Text)
title :: LegendOptionsProperty -> Maybe LabelOptionsProperty
valueFontConfiguration :: LegendOptionsProperty -> Maybe FontConfigurationProperty
visibility :: LegendOptionsProperty -> Maybe (Value Text)
width :: LegendOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
width :: Maybe (Value Text)
..}
= LegendOptionsProperty {width :: Maybe (Value Text)
width = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Width" LegendOptionsProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontConfigurationProperty
Maybe LabelOptionsProperty
()
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
haddock_workaround_ :: ()
height :: Maybe (Value Text)
position :: Maybe (Value Text)
title :: Maybe LabelOptionsProperty
valueFontConfiguration :: Maybe FontConfigurationProperty
visibility :: Maybe (Value Text)
..}