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