module Stratosphere.QuickSight.Template.BoxPlotVisualProperty (
        module Exports, BoxPlotVisualProperty(..), mkBoxPlotVisualProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Template.BoxPlotChartConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.ColumnHierarchyProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.VisualCustomActionProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.VisualSubtitleLabelOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.VisualTitleLabelOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data BoxPlotVisualProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html>
    BoxPlotVisualProperty {BoxPlotVisualProperty -> ()
haddock_workaround_ :: (),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-actions>
                           BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
actions :: (Prelude.Maybe [VisualCustomActionProperty]),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-chartconfiguration>
                           BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
chartConfiguration :: (Prelude.Maybe BoxPlotChartConfigurationProperty),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-columnhierarchies>
                           BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
columnHierarchies :: (Prelude.Maybe [ColumnHierarchyProperty]),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-subtitle>
                           BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
subtitle :: (Prelude.Maybe VisualSubtitleLabelOptionsProperty),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-title>
                           BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
title :: (Prelude.Maybe VisualTitleLabelOptionsProperty),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-visualcontentalttext>
                           BoxPlotVisualProperty -> Maybe (Value Text)
visualContentAltText :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotvisual.html#cfn-quicksight-template-boxplotvisual-visualid>
                           BoxPlotVisualProperty -> Value Text
visualId :: (Value Prelude.Text)}
  deriving stock (BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool
(BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool)
-> (BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool)
-> Eq BoxPlotVisualProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool
== :: BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool
$c/= :: BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool
/= :: BoxPlotVisualProperty -> BoxPlotVisualProperty -> Bool
Prelude.Eq, Int -> BoxPlotVisualProperty -> ShowS
[BoxPlotVisualProperty] -> ShowS
BoxPlotVisualProperty -> String
(Int -> BoxPlotVisualProperty -> ShowS)
-> (BoxPlotVisualProperty -> String)
-> ([BoxPlotVisualProperty] -> ShowS)
-> Show BoxPlotVisualProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> BoxPlotVisualProperty -> ShowS
showsPrec :: Int -> BoxPlotVisualProperty -> ShowS
$cshow :: BoxPlotVisualProperty -> String
show :: BoxPlotVisualProperty -> String
$cshowList :: [BoxPlotVisualProperty] -> ShowS
showList :: [BoxPlotVisualProperty] -> ShowS
Prelude.Show)
mkBoxPlotVisualProperty ::
  Value Prelude.Text -> BoxPlotVisualProperty
mkBoxPlotVisualProperty :: Value Text -> BoxPlotVisualProperty
mkBoxPlotVisualProperty Value Text
visualId
  = BoxPlotVisualProperty
      {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 BoxPlotChartConfigurationProperty
chartConfiguration = Maybe BoxPlotChartConfigurationProperty
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 BoxPlotVisualProperty where
  toResourceProperties :: BoxPlotVisualProperty -> ResourceProperties
toResourceProperties BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QuickSight::Template.BoxPlotVisual",
         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 -> BoxPlotChartConfigurationProperty -> (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" (BoxPlotChartConfigurationProperty -> (Key, Value))
-> Maybe BoxPlotChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BoxPlotChartConfigurationProperty
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 BoxPlotVisualProperty where
  toJSON :: BoxPlotVisualProperty -> Value
toJSON BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
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 -> BoxPlotChartConfigurationProperty -> (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" (BoxPlotChartConfigurationProperty -> (Key, Value))
-> Maybe BoxPlotChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BoxPlotChartConfigurationProperty
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" BoxPlotVisualProperty where
  type PropertyType "Actions" BoxPlotVisualProperty = [VisualCustomActionProperty]
  set :: PropertyType "Actions" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "Actions" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty {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" BoxPlotVisualProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ChartConfiguration" BoxPlotVisualProperty where
  type PropertyType "ChartConfiguration" BoxPlotVisualProperty = BoxPlotChartConfigurationProperty
  set :: PropertyType "ChartConfiguration" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "ChartConfiguration" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty
        {chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
chartConfiguration = BoxPlotChartConfigurationProperty
-> Maybe BoxPlotChartConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChartConfiguration" BoxPlotVisualProperty
BoxPlotChartConfigurationProperty
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" BoxPlotVisualProperty where
  type PropertyType "ColumnHierarchies" BoxPlotVisualProperty = [ColumnHierarchyProperty]
  set :: PropertyType "ColumnHierarchies" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "ColumnHierarchies" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty
        {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" BoxPlotVisualProperty
newValue, Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Subtitle" BoxPlotVisualProperty where
  type PropertyType "Subtitle" BoxPlotVisualProperty = VisualSubtitleLabelOptionsProperty
  set :: PropertyType "Subtitle" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "Subtitle" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty {subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = VisualSubtitleLabelOptionsProperty
-> Maybe VisualSubtitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" BoxPlotVisualProperty
VisualSubtitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Title" BoxPlotVisualProperty where
  type PropertyType "Title" BoxPlotVisualProperty = VisualTitleLabelOptionsProperty
  set :: PropertyType "Title" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "Title" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty {title :: Maybe VisualTitleLabelOptionsProperty
title = VisualTitleLabelOptionsProperty
-> Maybe VisualTitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" BoxPlotVisualProperty
VisualTitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "VisualContentAltText" BoxPlotVisualProperty where
  type PropertyType "VisualContentAltText" BoxPlotVisualProperty = Value Prelude.Text
  set :: PropertyType "VisualContentAltText" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "VisualContentAltText" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty
        {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" BoxPlotVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
..}
instance Property "VisualId" BoxPlotVisualProperty where
  type PropertyType "VisualId" BoxPlotVisualProperty = Value Prelude.Text
  set :: PropertyType "VisualId" BoxPlotVisualProperty
-> BoxPlotVisualProperty -> BoxPlotVisualProperty
set PropertyType "VisualId" BoxPlotVisualProperty
newValue BoxPlotVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: BoxPlotVisualProperty -> ()
actions :: BoxPlotVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: BoxPlotVisualProperty -> Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: BoxPlotVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: BoxPlotVisualProperty -> Maybe VisualSubtitleLabelOptionsProperty
title :: BoxPlotVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: BoxPlotVisualProperty -> Maybe (Value Text)
visualId :: BoxPlotVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
    = BoxPlotVisualProperty {visualId :: Value Text
visualId = PropertyType "VisualId" BoxPlotVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe BoxPlotChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe BoxPlotChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
..}