module Stratosphere.DataZone.Project (
        module Exports, Project(..), mkProject
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.DataZone.Project.EnvironmentConfigurationUserParameterProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data Project
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html>
    Project {Project -> ()
haddock_workaround_ :: (),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-description>
             Project -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainidentifier>
             Project -> Value Text
domainIdentifier :: (Value Prelude.Text),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainunitid>
             Project -> Maybe (Value Text)
domainUnitId :: (Prelude.Maybe (Value Prelude.Text)),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-glossaryterms>
             Project -> Maybe (ValueList Text)
glossaryTerms :: (Prelude.Maybe (ValueList Prelude.Text)),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-name>
             Project -> Value Text
name :: (Value Prelude.Text),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileid>
             Project -> Maybe (Value Text)
projectProfileId :: (Prelude.Maybe (Value Prelude.Text)),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileversion>
             Project -> Maybe (Value Text)
projectProfileVersion :: (Prelude.Maybe (Value Prelude.Text)),
             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-userparameters>
             Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
userParameters :: (Prelude.Maybe [EnvironmentConfigurationUserParameterProperty])}
  deriving stock (Project -> Project -> Bool
(Project -> Project -> Bool)
-> (Project -> Project -> Bool) -> Eq Project
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Project -> Project -> Bool
== :: Project -> Project -> Bool
$c/= :: Project -> Project -> Bool
/= :: Project -> Project -> Bool
Prelude.Eq, Int -> Project -> ShowS
[Project] -> ShowS
Project -> String
(Int -> Project -> ShowS)
-> (Project -> String) -> ([Project] -> ShowS) -> Show Project
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Project -> ShowS
showsPrec :: Int -> Project -> ShowS
$cshow :: Project -> String
show :: Project -> String
$cshowList :: [Project] -> ShowS
showList :: [Project] -> ShowS
Prelude.Show)
mkProject :: Value Prelude.Text -> Value Prelude.Text -> Project
mkProject :: Value Text -> Value Text -> Project
mkProject Value Text
domainIdentifier Value Text
name
  = Project
      {haddock_workaround_ :: ()
haddock_workaround_ = (), domainIdentifier :: Value Text
domainIdentifier = Value Text
domainIdentifier,
       name :: Value Text
name = Value Text
name, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       domainUnitId :: Maybe (Value Text)
domainUnitId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, glossaryTerms :: Maybe (ValueList Text)
glossaryTerms = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       projectProfileId :: Maybe (Value Text)
projectProfileId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       projectProfileVersion :: Maybe (Value Text)
projectProfileVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
userParameters = Maybe [EnvironmentConfigurationUserParameterProperty]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Project where
  toResourceProperties :: Project -> ResourceProperties
toResourceProperties Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::DataZone::Project", 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
"DomainIdentifier" 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
domainIdentifier, 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
"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
"DomainUnitId" (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)
domainUnitId,
                               Key -> ValueList 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
"GlossaryTerms" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
glossaryTerms,
                               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
"ProjectProfileId" (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)
projectProfileId,
                               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
"ProjectProfileVersion"
                                 (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)
projectProfileVersion,
                               Key
-> [EnvironmentConfigurationUserParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserParameters" ([EnvironmentConfigurationUserParameterProperty] -> (Key, Value))
-> Maybe [EnvironmentConfigurationUserParameterProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentConfigurationUserParameterProperty]
userParameters]))}
instance JSON.ToJSON Project where
  toJSON :: Project -> Value
toJSON Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = [(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
"DomainIdentifier" 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
domainIdentifier, 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
"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
"DomainUnitId" (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)
domainUnitId,
                  Key -> ValueList 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
"GlossaryTerms" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
glossaryTerms,
                  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
"ProjectProfileId" (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)
projectProfileId,
                  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
"ProjectProfileVersion"
                    (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)
projectProfileVersion,
                  Key
-> [EnvironmentConfigurationUserParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserParameters" ([EnvironmentConfigurationUserParameterProperty] -> (Key, Value))
-> Maybe [EnvironmentConfigurationUserParameterProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentConfigurationUserParameterProperty]
userParameters])))
instance Property "Description" Project where
  type PropertyType "Description" Project = Value Prelude.Text
  set :: PropertyType "Description" Project -> Project -> Project
set PropertyType "Description" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {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" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "DomainIdentifier" Project where
  type PropertyType "DomainIdentifier" Project = Value Prelude.Text
  set :: PropertyType "DomainIdentifier" Project -> Project -> Project
set PropertyType "DomainIdentifier" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {domainIdentifier :: Value Text
domainIdentifier = PropertyType "DomainIdentifier" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "DomainUnitId" Project where
  type PropertyType "DomainUnitId" Project = Value Prelude.Text
  set :: PropertyType "DomainUnitId" Project -> Project -> Project
set PropertyType "DomainUnitId" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {domainUnitId :: Maybe (Value Text)
domainUnitId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DomainUnitId" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "GlossaryTerms" Project where
  type PropertyType "GlossaryTerms" Project = ValueList Prelude.Text
  set :: PropertyType "GlossaryTerms" Project -> Project -> Project
set PropertyType "GlossaryTerms" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {glossaryTerms :: Maybe (ValueList Text)
glossaryTerms = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "GlossaryTerms" Project
ValueList Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "Name" Project where
  type PropertyType "Name" Project = Value Prelude.Text
  set :: PropertyType "Name" Project -> Project -> Project
set PropertyType "Name" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..} = Project {name :: Value Text
name = PropertyType "Name" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "ProjectProfileId" Project where
  type PropertyType "ProjectProfileId" Project = Value Prelude.Text
  set :: PropertyType "ProjectProfileId" Project -> Project -> Project
set PropertyType "ProjectProfileId" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {projectProfileId :: Maybe (Value Text)
projectProfileId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProjectProfileId" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "ProjectProfileVersion" Project where
  type PropertyType "ProjectProfileVersion" Project = Value Prelude.Text
  set :: PropertyType "ProjectProfileVersion" Project -> Project -> Project
set PropertyType "ProjectProfileVersion" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {projectProfileVersion :: Maybe (Value Text)
projectProfileVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProjectProfileVersion" Project
Value Text
newValue, Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
instance Property "UserParameters" Project where
  type PropertyType "UserParameters" Project = [EnvironmentConfigurationUserParameterProperty]
  set :: PropertyType "UserParameters" Project -> Project -> Project
set PropertyType "UserParameters" Project
newValue Project {Maybe [EnvironmentConfigurationUserParameterProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Project -> ()
description :: Project -> Maybe (Value Text)
domainIdentifier :: Project -> Value Text
domainUnitId :: Project -> Maybe (Value Text)
glossaryTerms :: Project -> Maybe (ValueList Text)
name :: Project -> Value Text
projectProfileId :: Project -> Maybe (Value Text)
projectProfileVersion :: Project -> Maybe (Value Text)
userParameters :: Project -> Maybe [EnvironmentConfigurationUserParameterProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
..}
    = Project {userParameters :: Maybe [EnvironmentConfigurationUserParameterProperty]
userParameters = [EnvironmentConfigurationUserParameterProperty]
-> Maybe [EnvironmentConfigurationUserParameterProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EnvironmentConfigurationUserParameterProperty]
PropertyType "UserParameters" Project
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Value Text
domainUnitId :: Maybe (Value Text)
glossaryTerms :: Maybe (ValueList Text)
name :: Value Text
projectProfileId :: Maybe (Value Text)
projectProfileVersion :: Maybe (Value Text)
..}