module Stratosphere.CodePipeline.CustomActionType.ConfigurationPropertiesProperty (
        ConfigurationPropertiesProperty(..),
        mkConfigurationPropertiesProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ConfigurationPropertiesProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html>
    ConfigurationPropertiesProperty {ConfigurationPropertiesProperty -> ()
haddock_workaround_ :: (),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-description>
                                     ConfigurationPropertiesProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-key>
                                     ConfigurationPropertiesProperty -> Value Bool
key :: (Value Prelude.Bool),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-name>
                                     ConfigurationPropertiesProperty -> Value Text
name :: (Value Prelude.Text),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-queryable>
                                     ConfigurationPropertiesProperty -> Maybe (Value Bool)
queryable :: (Prelude.Maybe (Value Prelude.Bool)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-required>
                                     ConfigurationPropertiesProperty -> Value Bool
required :: (Value Prelude.Bool),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-secret>
                                     ConfigurationPropertiesProperty -> Value Bool
secret :: (Value Prelude.Bool),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-type>
                                     ConfigurationPropertiesProperty -> Maybe (Value Text)
type' :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty -> Bool
(ConfigurationPropertiesProperty
 -> ConfigurationPropertiesProperty -> Bool)
-> (ConfigurationPropertiesProperty
    -> ConfigurationPropertiesProperty -> Bool)
-> Eq ConfigurationPropertiesProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty -> Bool
== :: ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty -> Bool
$c/= :: ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty -> Bool
/= :: ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty -> Bool
Prelude.Eq, Int -> ConfigurationPropertiesProperty -> ShowS
[ConfigurationPropertiesProperty] -> ShowS
ConfigurationPropertiesProperty -> String
(Int -> ConfigurationPropertiesProperty -> ShowS)
-> (ConfigurationPropertiesProperty -> String)
-> ([ConfigurationPropertiesProperty] -> ShowS)
-> Show ConfigurationPropertiesProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ConfigurationPropertiesProperty -> ShowS
showsPrec :: Int -> ConfigurationPropertiesProperty -> ShowS
$cshow :: ConfigurationPropertiesProperty -> String
show :: ConfigurationPropertiesProperty -> String
$cshowList :: [ConfigurationPropertiesProperty] -> ShowS
showList :: [ConfigurationPropertiesProperty] -> ShowS
Prelude.Show)
mkConfigurationPropertiesProperty ::
  Value Prelude.Bool
  -> Value Prelude.Text
     -> Value Prelude.Bool
        -> Value Prelude.Bool -> ConfigurationPropertiesProperty
mkConfigurationPropertiesProperty :: Value Bool
-> Value Text
-> Value Bool
-> Value Bool
-> ConfigurationPropertiesProperty
mkConfigurationPropertiesProperty Value Bool
key Value Text
name Value Bool
required Value Bool
secret
  = ConfigurationPropertiesProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), key :: Value Bool
key = Value Bool
key, name :: Value Text
name = Value Text
name,
       required :: Value Bool
required = Value Bool
required, secret :: Value Bool
secret = Value Bool
secret,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, queryable :: Maybe (Value Bool)
queryable = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       type' :: Maybe (Value Text)
type' = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ConfigurationPropertiesProperty where
  toResourceProperties :: ConfigurationPropertiesProperty -> ResourceProperties
toResourceProperties ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::CodePipeline::CustomActionType.ConfigurationProperties",
         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
"Key" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
key, 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,
                            Key
"Required" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
required, Key
"Secret" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
secret]
                           ([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
"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 Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Queryable" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
queryable,
                               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
"Type" (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)
type']))}
instance JSON.ToJSON ConfigurationPropertiesProperty where
  toJSON :: ConfigurationPropertiesProperty -> Value
toJSON ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (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
"Key" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
key, 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,
               Key
"Required" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
required, Key
"Secret" Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Bool
secret]
              ([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
"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 Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Queryable" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
queryable,
                  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
"Type" (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)
type'])))
instance Property "Description" ConfigurationPropertiesProperty where
  type PropertyType "Description" ConfigurationPropertiesProperty = Value Prelude.Text
  set :: PropertyType "Description" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Description" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty
        {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" ConfigurationPropertiesProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Key" ConfigurationPropertiesProperty where
  type PropertyType "Key" ConfigurationPropertiesProperty = Value Prelude.Bool
  set :: PropertyType "Key" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Key" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty {key :: Value Bool
key = PropertyType "Key" ConfigurationPropertiesProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Name" ConfigurationPropertiesProperty where
  type PropertyType "Name" ConfigurationPropertiesProperty = Value Prelude.Text
  set :: PropertyType "Name" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Name" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty {name :: Value Text
name = PropertyType "Name" ConfigurationPropertiesProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Queryable" ConfigurationPropertiesProperty where
  type PropertyType "Queryable" ConfigurationPropertiesProperty = Value Prelude.Bool
  set :: PropertyType "Queryable" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Queryable" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty
        {queryable :: Maybe (Value Bool)
queryable = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Queryable" ConfigurationPropertiesProperty
Value Bool
newValue, Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Required" ConfigurationPropertiesProperty where
  type PropertyType "Required" ConfigurationPropertiesProperty = Value Prelude.Bool
  set :: PropertyType "Required" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Required" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty {required :: Value Bool
required = PropertyType "Required" ConfigurationPropertiesProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
secret :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
secret :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Secret" ConfigurationPropertiesProperty where
  type PropertyType "Secret" ConfigurationPropertiesProperty = Value Prelude.Bool
  set :: PropertyType "Secret" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Secret" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty {secret :: Value Bool
secret = PropertyType "Secret" ConfigurationPropertiesProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
type' :: Maybe (Value Text)
..}
instance Property "Type" ConfigurationPropertiesProperty where
  type PropertyType "Type" ConfigurationPropertiesProperty = Value Prelude.Text
  set :: PropertyType "Type" ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
-> ConfigurationPropertiesProperty
set PropertyType "Type" ConfigurationPropertiesProperty
newValue ConfigurationPropertiesProperty {Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ConfigurationPropertiesProperty -> ()
description :: ConfigurationPropertiesProperty -> Maybe (Value Text)
key :: ConfigurationPropertiesProperty -> Value Bool
name :: ConfigurationPropertiesProperty -> Value Text
queryable :: ConfigurationPropertiesProperty -> Maybe (Value Bool)
required :: ConfigurationPropertiesProperty -> Value Bool
secret :: ConfigurationPropertiesProperty -> Value Bool
type' :: ConfigurationPropertiesProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
type' :: Maybe (Value Text)
..}
    = ConfigurationPropertiesProperty
        {type' :: Maybe (Value Text)
type' = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Type" ConfigurationPropertiesProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Bool
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
haddock_workaround_ :: ()
description :: Maybe (Value Text)
key :: Value Bool
name :: Value Text
queryable :: Maybe (Value Bool)
required :: Value Bool
secret :: Value Bool
..}