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