module Stratosphere.DataZone.ProjectProfile (
        module Exports, ProjectProfile(..), mkProjectProfile
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.DataZone.ProjectProfile.EnvironmentConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ProjectProfile
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html>
    ProjectProfile {ProjectProfile -> ()
haddock_workaround_ :: (),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-description>
                    ProjectProfile -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainidentifier>
                    ProjectProfile -> Maybe (Value Text)
domainIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitidentifier>
                    ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-environmentconfigurations>
                    ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
environmentConfigurations :: (Prelude.Maybe [EnvironmentConfigurationProperty]),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-name>
                    ProjectProfile -> Value Text
name :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-status>
                    ProjectProfile -> Maybe (Value Text)
status :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (ProjectProfile -> ProjectProfile -> Bool
(ProjectProfile -> ProjectProfile -> Bool)
-> (ProjectProfile -> ProjectProfile -> Bool) -> Eq ProjectProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ProjectProfile -> ProjectProfile -> Bool
== :: ProjectProfile -> ProjectProfile -> Bool
$c/= :: ProjectProfile -> ProjectProfile -> Bool
/= :: ProjectProfile -> ProjectProfile -> Bool
Prelude.Eq, Int -> ProjectProfile -> ShowS
[ProjectProfile] -> ShowS
ProjectProfile -> String
(Int -> ProjectProfile -> ShowS)
-> (ProjectProfile -> String)
-> ([ProjectProfile] -> ShowS)
-> Show ProjectProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ProjectProfile -> ShowS
showsPrec :: Int -> ProjectProfile -> ShowS
$cshow :: ProjectProfile -> String
show :: ProjectProfile -> String
$cshowList :: [ProjectProfile] -> ShowS
showList :: [ProjectProfile] -> ShowS
Prelude.Show)
mkProjectProfile :: Value Prelude.Text -> ProjectProfile
mkProjectProfile :: Value Text -> ProjectProfile
mkProjectProfile Value Text
name
  = ProjectProfile
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, domainIdentifier :: Maybe (Value Text)
domainIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       domainUnitIdentifier :: Maybe (Value Text)
domainUnitIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
environmentConfigurations = Maybe [EnvironmentConfigurationProperty]
forall a. Maybe a
Prelude.Nothing,
       status :: Maybe (Value Text)
status = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ProjectProfile where
  toResourceProperties :: ProjectProfile -> ResourceProperties
toResourceProperties ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::DataZone::ProjectProfile",
         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]
                           ([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
"DomainIdentifier" (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)
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..=) Key
"DomainUnitIdentifier" (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)
domainUnitIdentifier,
                               Key -> [EnvironmentConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EnvironmentConfigurations"
                                 ([EnvironmentConfigurationProperty] -> (Key, Value))
-> Maybe [EnvironmentConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentConfigurationProperty]
environmentConfigurations,
                               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
"Status" (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)
status]))}
instance JSON.ToJSON ProjectProfile where
  toJSON :: ProjectProfile -> Value
toJSON ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: 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
"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
"DomainIdentifier" (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)
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..=) Key
"DomainUnitIdentifier" (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)
domainUnitIdentifier,
                  Key -> [EnvironmentConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EnvironmentConfigurations"
                    ([EnvironmentConfigurationProperty] -> (Key, Value))
-> Maybe [EnvironmentConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentConfigurationProperty]
environmentConfigurations,
                  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
"Status" (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)
status])))
instance Property "Description" ProjectProfile where
  type PropertyType "Description" ProjectProfile = Value Prelude.Text
  set :: PropertyType "Description" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "Description" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile {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" ProjectProfile
Value Text
newValue, Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
haddock_workaround_ :: ()
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
instance Property "DomainIdentifier" ProjectProfile where
  type PropertyType "DomainIdentifier" ProjectProfile = Value Prelude.Text
  set :: PropertyType "DomainIdentifier" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "DomainIdentifier" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile {domainIdentifier :: Maybe (Value Text)
domainIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DomainIdentifier" ProjectProfile
Value Text
newValue, Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
instance Property "DomainUnitIdentifier" ProjectProfile where
  type PropertyType "DomainUnitIdentifier" ProjectProfile = Value Prelude.Text
  set :: PropertyType "DomainUnitIdentifier" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "DomainUnitIdentifier" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile {domainUnitIdentifier :: Maybe (Value Text)
domainUnitIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DomainUnitIdentifier" ProjectProfile
Value Text
newValue, Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
instance Property "EnvironmentConfigurations" ProjectProfile where
  type PropertyType "EnvironmentConfigurations" ProjectProfile = [EnvironmentConfigurationProperty]
  set :: PropertyType "EnvironmentConfigurations" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "EnvironmentConfigurations" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile
        {environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
environmentConfigurations = [EnvironmentConfigurationProperty]
-> Maybe [EnvironmentConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EnvironmentConfigurationProperty]
PropertyType "EnvironmentConfigurations" ProjectProfile
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
name :: Value Text
status :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
name :: Value Text
status :: Maybe (Value Text)
..}
instance Property "Name" ProjectProfile where
  type PropertyType "Name" ProjectProfile = Value Prelude.Text
  set :: PropertyType "Name" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "Name" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile {name :: Value Text
name = PropertyType "Name" ProjectProfile
Value Text
newValue, Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
status :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
status :: Maybe (Value Text)
..}
instance Property "Status" ProjectProfile where
  type PropertyType "Status" ProjectProfile = Value Prelude.Text
  set :: PropertyType "Status" ProjectProfile
-> ProjectProfile -> ProjectProfile
set PropertyType "Status" ProjectProfile
newValue ProjectProfile {Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ProjectProfile -> ()
description :: ProjectProfile -> Maybe (Value Text)
domainIdentifier :: ProjectProfile -> Maybe (Value Text)
domainUnitIdentifier :: ProjectProfile -> Maybe (Value Text)
environmentConfigurations :: ProjectProfile -> Maybe [EnvironmentConfigurationProperty]
name :: ProjectProfile -> Value Text
status :: ProjectProfile -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
status :: Maybe (Value Text)
..}
    = ProjectProfile {status :: Maybe (Value Text)
status = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Status" ProjectProfile
Value Text
newValue, Maybe [EnvironmentConfigurationProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
domainIdentifier :: Maybe (Value Text)
domainUnitIdentifier :: Maybe (Value Text)
environmentConfigurations :: Maybe [EnvironmentConfigurationProperty]
name :: Value Text
..}