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