module Stratosphere.QuickSight.Dashboard.ScatterPlotVisualProperty (
        module Exports, ScatterPlotVisualProperty(..),
        mkScatterPlotVisualProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.ColumnHierarchyProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.ScatterPlotConfigurationProperty 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 ScatterPlotVisualProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html>
    ScatterPlotVisualProperty {ScatterPlotVisualProperty -> ()
haddock_workaround_ :: (),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-actions>
                               ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
actions :: (Prelude.Maybe [VisualCustomActionProperty]),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-chartconfiguration>
                               ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
chartConfiguration :: (Prelude.Maybe ScatterPlotConfigurationProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-columnhierarchies>
                               ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
columnHierarchies :: (Prelude.Maybe [ColumnHierarchyProperty]),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-subtitle>
                               ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
subtitle :: (Prelude.Maybe VisualSubtitleLabelOptionsProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-title>
                               ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
title :: (Prelude.Maybe VisualTitleLabelOptionsProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-visualcontentalttext>
                               ScatterPlotVisualProperty -> Maybe (Value Text)
visualContentAltText :: (Prelude.Maybe (Value Prelude.Text)),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotvisual.html#cfn-quicksight-dashboard-scatterplotvisual-visualid>
                               ScatterPlotVisualProperty -> Value Text
visualId :: (Value Prelude.Text)}
  deriving stock (ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool
(ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool)
-> (ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool)
-> Eq ScatterPlotVisualProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool
== :: ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool
$c/= :: ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool
/= :: ScatterPlotVisualProperty -> ScatterPlotVisualProperty -> Bool
Prelude.Eq, Int -> ScatterPlotVisualProperty -> ShowS
[ScatterPlotVisualProperty] -> ShowS
ScatterPlotVisualProperty -> String
(Int -> ScatterPlotVisualProperty -> ShowS)
-> (ScatterPlotVisualProperty -> String)
-> ([ScatterPlotVisualProperty] -> ShowS)
-> Show ScatterPlotVisualProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ScatterPlotVisualProperty -> ShowS
showsPrec :: Int -> ScatterPlotVisualProperty -> ShowS
$cshow :: ScatterPlotVisualProperty -> String
show :: ScatterPlotVisualProperty -> String
$cshowList :: [ScatterPlotVisualProperty] -> ShowS
showList :: [ScatterPlotVisualProperty] -> ShowS
Prelude.Show)
mkScatterPlotVisualProperty ::
  Value Prelude.Text -> ScatterPlotVisualProperty
mkScatterPlotVisualProperty :: Value Text -> ScatterPlotVisualProperty
mkScatterPlotVisualProperty Value Text
visualId
  = ScatterPlotVisualProperty
      {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 ScatterPlotConfigurationProperty
chartConfiguration = Maybe ScatterPlotConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = Maybe [ColumnHierarchyProperty]
forall a. Maybe a
Prelude.Nothing, subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = Maybe VisualSubtitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       title :: Maybe VisualTitleLabelOptionsProperty
title = Maybe VisualTitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing, visualContentAltText :: Maybe (Value Text)
visualContentAltText = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ScatterPlotVisualProperty where
  toResourceProperties :: ScatterPlotVisualProperty -> ResourceProperties
toResourceProperties ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QuickSight::Dashboard.ScatterPlotVisual",
         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 -> ScatterPlotConfigurationProperty -> (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" (ScatterPlotConfigurationProperty -> (Key, Value))
-> Maybe ScatterPlotConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ScatterPlotConfigurationProperty
chartConfiguration,
                               Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
                               Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
                               Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VisualContentAltText"
                                 (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
visualContentAltText]))}
instance JSON.ToJSON ScatterPlotVisualProperty where
  toJSON :: ScatterPlotVisualProperty -> Value
toJSON ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"VisualId" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
visualId]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [VisualCustomActionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Actions" ([VisualCustomActionProperty] -> (Key, Value))
-> Maybe [VisualCustomActionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [VisualCustomActionProperty]
actions,
                  Key -> ScatterPlotConfigurationProperty -> (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" (ScatterPlotConfigurationProperty -> (Key, Value))
-> Maybe ScatterPlotConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ScatterPlotConfigurationProperty
chartConfiguration,
                  Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
                  Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
                  Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VisualContentAltText"
                    (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
visualContentAltText])))
instance Property "Actions" ScatterPlotVisualProperty where
  type PropertyType "Actions" ScatterPlotVisualProperty = [VisualCustomActionProperty]
  set :: PropertyType "Actions" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "Actions" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty {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" ScatterPlotVisualProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ChartConfiguration" ScatterPlotVisualProperty where
  type PropertyType "ChartConfiguration" ScatterPlotVisualProperty = ScatterPlotConfigurationProperty
  set :: PropertyType "ChartConfiguration" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "ChartConfiguration" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty
        {chartConfiguration :: Maybe ScatterPlotConfigurationProperty
chartConfiguration = ScatterPlotConfigurationProperty
-> Maybe ScatterPlotConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChartConfiguration" ScatterPlotVisualProperty
ScatterPlotConfigurationProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ColumnHierarchies" ScatterPlotVisualProperty where
  type PropertyType "ColumnHierarchies" ScatterPlotVisualProperty = [ColumnHierarchyProperty]
  set :: PropertyType "ColumnHierarchies" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "ColumnHierarchies" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty
        {columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = [ColumnHierarchyProperty] -> Maybe [ColumnHierarchyProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ColumnHierarchyProperty]
PropertyType "ColumnHierarchies" ScatterPlotVisualProperty
newValue, Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Subtitle" ScatterPlotVisualProperty where
  type PropertyType "Subtitle" ScatterPlotVisualProperty = VisualSubtitleLabelOptionsProperty
  set :: PropertyType "Subtitle" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "Subtitle" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty {subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = VisualSubtitleLabelOptionsProperty
-> Maybe VisualSubtitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" ScatterPlotVisualProperty
VisualSubtitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Title" ScatterPlotVisualProperty where
  type PropertyType "Title" ScatterPlotVisualProperty = VisualTitleLabelOptionsProperty
  set :: PropertyType "Title" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "Title" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty {title :: Maybe VisualTitleLabelOptionsProperty
title = VisualTitleLabelOptionsProperty
-> Maybe VisualTitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" ScatterPlotVisualProperty
VisualTitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "VisualContentAltText" ScatterPlotVisualProperty where
  type PropertyType "VisualContentAltText" ScatterPlotVisualProperty = Value Prelude.Text
  set :: PropertyType "VisualContentAltText" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "VisualContentAltText" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty
        {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" ScatterPlotVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
..}
instance Property "VisualId" ScatterPlotVisualProperty where
  type PropertyType "VisualId" ScatterPlotVisualProperty = Value Prelude.Text
  set :: PropertyType "VisualId" ScatterPlotVisualProperty
-> ScatterPlotVisualProperty -> ScatterPlotVisualProperty
set PropertyType "VisualId" ScatterPlotVisualProperty
newValue ScatterPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ScatterPlotVisualProperty -> ()
actions :: ScatterPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: ScatterPlotVisualProperty -> Maybe ScatterPlotConfigurationProperty
columnHierarchies :: ScatterPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: ScatterPlotVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: ScatterPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: ScatterPlotVisualProperty -> Maybe (Value Text)
visualId :: ScatterPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ScatterPlotVisualProperty {visualId :: Value Text
visualId = PropertyType "VisualId" ScatterPlotVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe ScatterPlotConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe ScatterPlotConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
..}