module Stratosphere.QuickSight.Analysis.StringParameterDeclarationProperty (
        module Exports, StringParameterDeclarationProperty(..),
        mkStringParameterDeclarationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.MappedDataSetParameterProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.StringDefaultValuesProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.StringValueWhenUnsetConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data StringParameterDeclarationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html>
    StringParameterDeclarationProperty {StringParameterDeclarationProperty -> ()
haddock_workaround_ :: (),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html#cfn-quicksight-analysis-stringparameterdeclaration-defaultvalues>
                                        StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
defaultValues :: (Prelude.Maybe StringDefaultValuesProperty),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html#cfn-quicksight-analysis-stringparameterdeclaration-mappeddatasetparameters>
                                        StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
mappedDataSetParameters :: (Prelude.Maybe [MappedDataSetParameterProperty]),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html#cfn-quicksight-analysis-stringparameterdeclaration-name>
                                        StringParameterDeclarationProperty -> Value Text
name :: (Value Prelude.Text),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html#cfn-quicksight-analysis-stringparameterdeclaration-parametervaluetype>
                                        StringParameterDeclarationProperty -> Value Text
parameterValueType :: (Value Prelude.Text),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameterdeclaration.html#cfn-quicksight-analysis-stringparameterdeclaration-valuewhenunset>
                                        StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
valueWhenUnset :: (Prelude.Maybe StringValueWhenUnsetConfigurationProperty)}
  deriving stock (StringParameterDeclarationProperty
-> StringParameterDeclarationProperty -> Bool
(StringParameterDeclarationProperty
 -> StringParameterDeclarationProperty -> Bool)
-> (StringParameterDeclarationProperty
    -> StringParameterDeclarationProperty -> Bool)
-> Eq StringParameterDeclarationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: StringParameterDeclarationProperty
-> StringParameterDeclarationProperty -> Bool
== :: StringParameterDeclarationProperty
-> StringParameterDeclarationProperty -> Bool
$c/= :: StringParameterDeclarationProperty
-> StringParameterDeclarationProperty -> Bool
/= :: StringParameterDeclarationProperty
-> StringParameterDeclarationProperty -> Bool
Prelude.Eq, Int -> StringParameterDeclarationProperty -> ShowS
[StringParameterDeclarationProperty] -> ShowS
StringParameterDeclarationProperty -> String
(Int -> StringParameterDeclarationProperty -> ShowS)
-> (StringParameterDeclarationProperty -> String)
-> ([StringParameterDeclarationProperty] -> ShowS)
-> Show StringParameterDeclarationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> StringParameterDeclarationProperty -> ShowS
showsPrec :: Int -> StringParameterDeclarationProperty -> ShowS
$cshow :: StringParameterDeclarationProperty -> String
show :: StringParameterDeclarationProperty -> String
$cshowList :: [StringParameterDeclarationProperty] -> ShowS
showList :: [StringParameterDeclarationProperty] -> ShowS
Prelude.Show)
mkStringParameterDeclarationProperty ::
  Value Prelude.Text
  -> Value Prelude.Text -> StringParameterDeclarationProperty
mkStringParameterDeclarationProperty :: Value Text -> Value Text -> StringParameterDeclarationProperty
mkStringParameterDeclarationProperty Value Text
name Value Text
parameterValueType
  = StringParameterDeclarationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
       parameterValueType :: Value Text
parameterValueType = Value Text
parameterValueType,
       defaultValues :: Maybe StringDefaultValuesProperty
defaultValues = Maybe StringDefaultValuesProperty
forall a. Maybe a
Prelude.Nothing,
       mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
mappedDataSetParameters = Maybe [MappedDataSetParameterProperty]
forall a. Maybe a
Prelude.Nothing,
       valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
valueWhenUnset = Maybe StringValueWhenUnsetConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties StringParameterDeclarationProperty where
  toResourceProperties :: StringParameterDeclarationProperty -> ResourceProperties
toResourceProperties StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.StringParameterDeclaration",
         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
"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
"ParameterValueType" 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
parameterValueType]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> StringDefaultValuesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultValues" (StringDefaultValuesProperty -> (Key, Value))
-> Maybe StringDefaultValuesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StringDefaultValuesProperty
defaultValues,
                               Key -> [MappedDataSetParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MappedDataSetParameters"
                                 ([MappedDataSetParameterProperty] -> (Key, Value))
-> Maybe [MappedDataSetParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MappedDataSetParameterProperty]
mappedDataSetParameters,
                               Key -> StringValueWhenUnsetConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValueWhenUnset" (StringValueWhenUnsetConfigurationProperty -> (Key, Value))
-> Maybe StringValueWhenUnsetConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StringValueWhenUnsetConfigurationProperty
valueWhenUnset]))}
instance JSON.ToJSON StringParameterDeclarationProperty where
  toJSON :: StringParameterDeclarationProperty -> Value
toJSON StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = [(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
"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
"ParameterValueType" 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
parameterValueType]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> StringDefaultValuesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultValues" (StringDefaultValuesProperty -> (Key, Value))
-> Maybe StringDefaultValuesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StringDefaultValuesProperty
defaultValues,
                  Key -> [MappedDataSetParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MappedDataSetParameters"
                    ([MappedDataSetParameterProperty] -> (Key, Value))
-> Maybe [MappedDataSetParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MappedDataSetParameterProperty]
mappedDataSetParameters,
                  Key -> StringValueWhenUnsetConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValueWhenUnset" (StringValueWhenUnsetConfigurationProperty -> (Key, Value))
-> Maybe StringValueWhenUnsetConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StringValueWhenUnsetConfigurationProperty
valueWhenUnset])))
instance Property "DefaultValues" StringParameterDeclarationProperty where
  type PropertyType "DefaultValues" StringParameterDeclarationProperty = StringDefaultValuesProperty
  set :: PropertyType "DefaultValues" StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
set PropertyType "DefaultValues" StringParameterDeclarationProperty
newValue StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = StringParameterDeclarationProperty
        {defaultValues :: Maybe StringDefaultValuesProperty
defaultValues = StringDefaultValuesProperty -> Maybe StringDefaultValuesProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefaultValues" StringParameterDeclarationProperty
StringDefaultValuesProperty
newValue, Maybe [MappedDataSetParameterProperty]
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
instance Property "MappedDataSetParameters" StringParameterDeclarationProperty where
  type PropertyType "MappedDataSetParameters" StringParameterDeclarationProperty = [MappedDataSetParameterProperty]
  set :: PropertyType
  "MappedDataSetParameters" StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
set PropertyType
  "MappedDataSetParameters" StringParameterDeclarationProperty
newValue StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = StringParameterDeclarationProperty
        {mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
mappedDataSetParameters = [MappedDataSetParameterProperty]
-> Maybe [MappedDataSetParameterProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [MappedDataSetParameterProperty]
PropertyType
  "MappedDataSetParameters" StringParameterDeclarationProperty
newValue, Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
instance Property "Name" StringParameterDeclarationProperty where
  type PropertyType "Name" StringParameterDeclarationProperty = Value Prelude.Text
  set :: PropertyType "Name" StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
set PropertyType "Name" StringParameterDeclarationProperty
newValue StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = StringParameterDeclarationProperty {name :: Value Text
name = PropertyType "Name" StringParameterDeclarationProperty
Value Text
newValue, Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
instance Property "ParameterValueType" StringParameterDeclarationProperty where
  type PropertyType "ParameterValueType" StringParameterDeclarationProperty = Value Prelude.Text
  set :: PropertyType
  "ParameterValueType" StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
set PropertyType
  "ParameterValueType" StringParameterDeclarationProperty
newValue StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = StringParameterDeclarationProperty
        {parameterValueType :: Value Text
parameterValueType = PropertyType
  "ParameterValueType" StringParameterDeclarationProperty
Value Text
newValue, Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
instance Property "ValueWhenUnset" StringParameterDeclarationProperty where
  type PropertyType "ValueWhenUnset" StringParameterDeclarationProperty = StringValueWhenUnsetConfigurationProperty
  set :: PropertyType "ValueWhenUnset" StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
-> StringParameterDeclarationProperty
set PropertyType "ValueWhenUnset" StringParameterDeclarationProperty
newValue StringParameterDeclarationProperty {Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
Maybe StringValueWhenUnsetConfigurationProperty
()
Value Text
haddock_workaround_ :: StringParameterDeclarationProperty -> ()
defaultValues :: StringParameterDeclarationProperty
-> Maybe StringDefaultValuesProperty
mappedDataSetParameters :: StringParameterDeclarationProperty
-> Maybe [MappedDataSetParameterProperty]
name :: StringParameterDeclarationProperty -> Value Text
parameterValueType :: StringParameterDeclarationProperty -> Value Text
valueWhenUnset :: StringParameterDeclarationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
..}
    = StringParameterDeclarationProperty
        {valueWhenUnset :: Maybe StringValueWhenUnsetConfigurationProperty
valueWhenUnset = StringValueWhenUnsetConfigurationProperty
-> Maybe StringValueWhenUnsetConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ValueWhenUnset" StringParameterDeclarationProperty
StringValueWhenUnsetConfigurationProperty
newValue, Maybe [MappedDataSetParameterProperty]
Maybe StringDefaultValuesProperty
()
Value Text
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
haddock_workaround_ :: ()
defaultValues :: Maybe StringDefaultValuesProperty
mappedDataSetParameters :: Maybe [MappedDataSetParameterProperty]
name :: Value Text
parameterValueType :: Value Text
..}