module Stratosphere.AmazonMQ.Configuration (
        module Exports, Configuration(..), mkConfiguration
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.AmazonMQ.Configuration.TagsEntryProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data Configuration
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html>
    Configuration {Configuration -> ()
haddock_workaround_ :: (),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-authenticationstrategy>
                   Configuration -> Maybe (Value Text)
authenticationStrategy :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data>
                   Configuration -> Maybe (Value Text)
data' :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-description>
                   Configuration -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-enginetype>
                   Configuration -> Value Text
engineType :: (Value Prelude.Text),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-engineversion>
                   Configuration -> Maybe (Value Text)
engineVersion :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-name>
                   Configuration -> Value Text
name :: (Value Prelude.Text),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-tags>
                   Configuration -> Maybe [TagsEntryProperty]
tags :: (Prelude.Maybe [TagsEntryProperty])}
  deriving stock (Configuration -> Configuration -> Bool
(Configuration -> Configuration -> Bool)
-> (Configuration -> Configuration -> Bool) -> Eq Configuration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Configuration -> Configuration -> Bool
== :: Configuration -> Configuration -> Bool
$c/= :: Configuration -> Configuration -> Bool
/= :: Configuration -> Configuration -> Bool
Prelude.Eq, Int -> Configuration -> ShowS
[Configuration] -> ShowS
Configuration -> String
(Int -> Configuration -> ShowS)
-> (Configuration -> String)
-> ([Configuration] -> ShowS)
-> Show Configuration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Configuration -> ShowS
showsPrec :: Int -> Configuration -> ShowS
$cshow :: Configuration -> String
show :: Configuration -> String
$cshowList :: [Configuration] -> ShowS
showList :: [Configuration] -> ShowS
Prelude.Show)
mkConfiguration ::
  Value Prelude.Text -> Value Prelude.Text -> Configuration
mkConfiguration :: Value Text -> Value Text -> Configuration
mkConfiguration Value Text
engineType Value Text
name
  = Configuration
      {haddock_workaround_ :: ()
haddock_workaround_ = (), engineType :: Value Text
engineType = Value Text
engineType, name :: Value Text
name = Value Text
name,
       authenticationStrategy :: Maybe (Value Text)
authenticationStrategy = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, data' :: Maybe (Value Text)
data' = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, engineVersion :: Maybe (Value Text)
engineVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe [TagsEntryProperty]
tags = Maybe [TagsEntryProperty]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Configuration where
  toResourceProperties :: Configuration -> ResourceProperties
toResourceProperties Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::AmazonMQ::Configuration",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"EngineType" 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
engineType, Key
"Name" 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
name]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [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
"AuthenticationStrategy"
                                 (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)
authenticationStrategy,
                               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
"Data" (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)
data',
                               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
"Description" (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)
description,
                               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
"EngineVersion" (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)
engineVersion,
                               Key -> [TagsEntryProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([TagsEntryProperty] -> (Key, Value))
-> Maybe [TagsEntryProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TagsEntryProperty]
tags]))}
instance JSON.ToJSON Configuration where
  toJSON :: Configuration -> Value
toJSON Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = [(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
"EngineType" 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
engineType, Key
"Name" 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
name]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [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
"AuthenticationStrategy"
                    (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)
authenticationStrategy,
                  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
"Data" (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)
data',
                  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
"Description" (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)
description,
                  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
"EngineVersion" (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)
engineVersion,
                  Key -> [TagsEntryProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([TagsEntryProperty] -> (Key, Value))
-> Maybe [TagsEntryProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TagsEntryProperty]
tags])))
instance Property "AuthenticationStrategy" Configuration where
  type PropertyType "AuthenticationStrategy" Configuration = Value Prelude.Text
  set :: PropertyType "AuthenticationStrategy" Configuration
-> Configuration -> Configuration
set PropertyType "AuthenticationStrategy" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration
        {authenticationStrategy :: Maybe (Value Text)
authenticationStrategy = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuthenticationStrategy" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
instance Property "Data" Configuration where
  type PropertyType "Data" Configuration = Value Prelude.Text
  set :: PropertyType "Data" Configuration -> Configuration -> Configuration
set PropertyType "Data" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {data' :: Maybe (Value Text)
data' = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Data" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
instance Property "Description" Configuration where
  type PropertyType "Description" Configuration = Value Prelude.Text
  set :: PropertyType "Description" Configuration
-> Configuration -> Configuration
set PropertyType "Description" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
instance Property "EngineType" Configuration where
  type PropertyType "EngineType" Configuration = Value Prelude.Text
  set :: PropertyType "EngineType" Configuration
-> Configuration -> Configuration
set PropertyType "EngineType" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {engineType :: Value Text
engineType = PropertyType "EngineType" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
instance Property "EngineVersion" Configuration where
  type PropertyType "EngineVersion" Configuration = Value Prelude.Text
  set :: PropertyType "EngineVersion" Configuration
-> Configuration -> Configuration
set PropertyType "EngineVersion" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {engineVersion :: Maybe (Value Text)
engineVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EngineVersion" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
name :: Value Text
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
instance Property "Name" Configuration where
  type PropertyType "Name" Configuration = Value Prelude.Text
  set :: PropertyType "Name" Configuration -> Configuration -> Configuration
set PropertyType "Name" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {name :: Value Text
name = PropertyType "Name" Configuration
Value Text
newValue, Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
tags :: Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
tags :: Maybe [TagsEntryProperty]
..}
instance Property "Tags" Configuration where
  type PropertyType "Tags" Configuration = [TagsEntryProperty]
  set :: PropertyType "Tags" Configuration -> Configuration -> Configuration
set PropertyType "Tags" Configuration
newValue Configuration {Maybe [TagsEntryProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Configuration -> ()
authenticationStrategy :: Configuration -> Maybe (Value Text)
data' :: Configuration -> Maybe (Value Text)
description :: Configuration -> Maybe (Value Text)
engineType :: Configuration -> Value Text
engineVersion :: Configuration -> Maybe (Value Text)
name :: Configuration -> Value Text
tags :: Configuration -> Maybe [TagsEntryProperty]
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [TagsEntryProperty]
..}
    = Configuration {tags :: Maybe [TagsEntryProperty]
tags = [TagsEntryProperty] -> Maybe [TagsEntryProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [TagsEntryProperty]
PropertyType "Tags" Configuration
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
haddock_workaround_ :: ()
authenticationStrategy :: Maybe (Value Text)
data' :: Maybe (Value Text)
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
name :: Value Text
..}