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