module Stratosphere.DataZone.EnvironmentProfile (
        module Exports, EnvironmentProfile(..), mkEnvironmentProfile
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.DataZone.EnvironmentProfile.EnvironmentParameterProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data EnvironmentProfile
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html>
    EnvironmentProfile {EnvironmentProfile -> ()
haddock_workaround_ :: (),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-awsaccountid>
                        EnvironmentProfile -> Value Text
awsAccountId :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-awsaccountregion>
                        EnvironmentProfile -> Value Text
awsAccountRegion :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-description>
                        EnvironmentProfile -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-domainidentifier>
                        EnvironmentProfile -> Value Text
domainIdentifier :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-environmentblueprintidentifier>
                        EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-name>
                        EnvironmentProfile -> Value Text
name :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-projectidentifier>
                        EnvironmentProfile -> Value Text
projectIdentifier :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#cfn-datazone-environmentprofile-userparameters>
                        EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
userParameters :: (Prelude.Maybe [EnvironmentParameterProperty])}
  deriving stock (EnvironmentProfile -> EnvironmentProfile -> Bool
(EnvironmentProfile -> EnvironmentProfile -> Bool)
-> (EnvironmentProfile -> EnvironmentProfile -> Bool)
-> Eq EnvironmentProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: EnvironmentProfile -> EnvironmentProfile -> Bool
== :: EnvironmentProfile -> EnvironmentProfile -> Bool
$c/= :: EnvironmentProfile -> EnvironmentProfile -> Bool
/= :: EnvironmentProfile -> EnvironmentProfile -> Bool
Prelude.Eq, Int -> EnvironmentProfile -> ShowS
[EnvironmentProfile] -> ShowS
EnvironmentProfile -> String
(Int -> EnvironmentProfile -> ShowS)
-> (EnvironmentProfile -> String)
-> ([EnvironmentProfile] -> ShowS)
-> Show EnvironmentProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> EnvironmentProfile -> ShowS
showsPrec :: Int -> EnvironmentProfile -> ShowS
$cshow :: EnvironmentProfile -> String
show :: EnvironmentProfile -> String
$cshowList :: [EnvironmentProfile] -> ShowS
showList :: [EnvironmentProfile] -> ShowS
Prelude.Show)
mkEnvironmentProfile ::
  Value Prelude.Text
  -> Value Prelude.Text
     -> Value Prelude.Text
        -> Value Prelude.Text
           -> Value Prelude.Text -> Value Prelude.Text -> EnvironmentProfile
mkEnvironmentProfile :: Value Text
-> Value Text
-> Value Text
-> Value Text
-> Value Text
-> Value Text
-> EnvironmentProfile
mkEnvironmentProfile
  Value Text
awsAccountId
  Value Text
awsAccountRegion
  Value Text
domainIdentifier
  Value Text
environmentBlueprintIdentifier
  Value Text
name
  Value Text
projectIdentifier
  = EnvironmentProfile
      {haddock_workaround_ :: ()
haddock_workaround_ = (), awsAccountId :: Value Text
awsAccountId = Value Text
awsAccountId,
       awsAccountRegion :: Value Text
awsAccountRegion = Value Text
awsAccountRegion,
       domainIdentifier :: Value Text
domainIdentifier = Value Text
domainIdentifier,
       environmentBlueprintIdentifier :: Value Text
environmentBlueprintIdentifier = Value Text
environmentBlueprintIdentifier,
       name :: Value Text
name = Value Text
name, projectIdentifier :: Value Text
projectIdentifier = Value Text
projectIdentifier,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, userParameters :: Maybe [EnvironmentParameterProperty]
userParameters = Maybe [EnvironmentParameterProperty]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties EnvironmentProfile where
  toResourceProperties :: EnvironmentProfile -> ResourceProperties
toResourceProperties EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::DataZone::EnvironmentProfile",
         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
"AwsAccountId" 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
awsAccountId,
                            Key
"AwsAccountRegion" 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
awsAccountRegion,
                            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
"EnvironmentBlueprintIdentifier"
                              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
environmentBlueprintIdentifier,
                            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
"ProjectIdentifier" 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
projectIdentifier]
                           ([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 -> [EnvironmentParameterProperty] -> (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" ([EnvironmentParameterProperty] -> (Key, Value))
-> Maybe [EnvironmentParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentParameterProperty]
userParameters]))}
instance JSON.ToJSON EnvironmentProfile where
  toJSON :: EnvironmentProfile -> Value
toJSON EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = [(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
"AwsAccountId" 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
awsAccountId,
               Key
"AwsAccountRegion" 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
awsAccountRegion,
               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
"EnvironmentBlueprintIdentifier"
                 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
environmentBlueprintIdentifier,
               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
"ProjectIdentifier" 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
projectIdentifier]
              ([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 -> [EnvironmentParameterProperty] -> (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" ([EnvironmentParameterProperty] -> (Key, Value))
-> Maybe [EnvironmentParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentParameterProperty]
userParameters])))
instance Property "AwsAccountId" EnvironmentProfile where
  type PropertyType "AwsAccountId" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "AwsAccountId" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "AwsAccountId" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {awsAccountId :: Value Text
awsAccountId = PropertyType "AwsAccountId" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "AwsAccountRegion" EnvironmentProfile where
  type PropertyType "AwsAccountRegion" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "AwsAccountRegion" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "AwsAccountRegion" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {awsAccountRegion :: Value Text
awsAccountRegion = PropertyType "AwsAccountRegion" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "Description" EnvironmentProfile where
  type PropertyType "Description" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "Description" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "Description" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {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" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "DomainIdentifier" EnvironmentProfile where
  type PropertyType "DomainIdentifier" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "DomainIdentifier" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "DomainIdentifier" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {domainIdentifier :: Value Text
domainIdentifier = PropertyType "DomainIdentifier" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "EnvironmentBlueprintIdentifier" EnvironmentProfile where
  type PropertyType "EnvironmentBlueprintIdentifier" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "EnvironmentBlueprintIdentifier" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "EnvironmentBlueprintIdentifier" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile
        {environmentBlueprintIdentifier :: Value Text
environmentBlueprintIdentifier = PropertyType "EnvironmentBlueprintIdentifier" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "Name" EnvironmentProfile where
  type PropertyType "Name" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "Name" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "Name" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {name :: Value Text
name = PropertyType "Name" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "ProjectIdentifier" EnvironmentProfile where
  type PropertyType "ProjectIdentifier" EnvironmentProfile = Value Prelude.Text
  set :: PropertyType "ProjectIdentifier" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "ProjectIdentifier" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {projectIdentifier :: Value Text
projectIdentifier = PropertyType "ProjectIdentifier" EnvironmentProfile
Value Text
newValue, Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
instance Property "UserParameters" EnvironmentProfile where
  type PropertyType "UserParameters" EnvironmentProfile = [EnvironmentParameterProperty]
  set :: PropertyType "UserParameters" EnvironmentProfile
-> EnvironmentProfile -> EnvironmentProfile
set PropertyType "UserParameters" EnvironmentProfile
newValue EnvironmentProfile {Maybe [EnvironmentParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: EnvironmentProfile -> ()
awsAccountId :: EnvironmentProfile -> Value Text
awsAccountRegion :: EnvironmentProfile -> Value Text
description :: EnvironmentProfile -> Maybe (Value Text)
domainIdentifier :: EnvironmentProfile -> Value Text
environmentBlueprintIdentifier :: EnvironmentProfile -> Value Text
name :: EnvironmentProfile -> Value Text
projectIdentifier :: EnvironmentProfile -> Value Text
userParameters :: EnvironmentProfile -> Maybe [EnvironmentParameterProperty]
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
userParameters :: Maybe [EnvironmentParameterProperty]
..}
    = EnvironmentProfile {userParameters :: Maybe [EnvironmentParameterProperty]
userParameters = [EnvironmentParameterProperty]
-> Maybe [EnvironmentParameterProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EnvironmentParameterProperty]
PropertyType "UserParameters" EnvironmentProfile
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
haddock_workaround_ :: ()
awsAccountId :: Value Text
awsAccountRegion :: Value Text
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentBlueprintIdentifier :: Value Text
name :: Value Text
projectIdentifier :: Value Text
..}