module Stratosphere.M2.Environment (
        module Exports, Environment(..), mkEnvironment
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.M2.Environment.HighAvailabilityConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.M2.Environment.StorageConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data Environment
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html>
    Environment {Environment -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-description>
                 Environment -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-enginetype>
                 Environment -> Value Text
engineType :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-engineversion>
                 Environment -> Maybe (Value Text)
engineVersion :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-highavailabilityconfig>
                 Environment -> Maybe HighAvailabilityConfigProperty
highAvailabilityConfig :: (Prelude.Maybe HighAvailabilityConfigProperty),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-instancetype>
                 Environment -> Value Text
instanceType :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-kmskeyid>
                 Environment -> Maybe (Value Text)
kmsKeyId :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-name>
                 Environment -> Value Text
name :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-networktype>
                 Environment -> Maybe (Value Text)
networkType :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-preferredmaintenancewindow>
                 Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-publiclyaccessible>
                 Environment -> Maybe (Value Bool)
publiclyAccessible :: (Prelude.Maybe (Value Prelude.Bool)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-securitygroupids>
                 Environment -> Maybe (ValueList Text)
securityGroupIds :: (Prelude.Maybe (ValueList Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-storageconfigurations>
                 Environment -> Maybe [StorageConfigurationProperty]
storageConfigurations :: (Prelude.Maybe [StorageConfigurationProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-subnetids>
                 Environment -> Maybe (ValueList Text)
subnetIds :: (Prelude.Maybe (ValueList Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-environment.html#cfn-m2-environment-tags>
                 Environment -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
  deriving stock (Environment -> Environment -> Bool
(Environment -> Environment -> Bool)
-> (Environment -> Environment -> Bool) -> Eq Environment
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Environment -> Environment -> Bool
== :: Environment -> Environment -> Bool
$c/= :: Environment -> Environment -> Bool
/= :: Environment -> Environment -> Bool
Prelude.Eq, Int -> Environment -> ShowS
[Environment] -> ShowS
Environment -> String
(Int -> Environment -> ShowS)
-> (Environment -> String)
-> ([Environment] -> ShowS)
-> Show Environment
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Environment -> ShowS
showsPrec :: Int -> Environment -> ShowS
$cshow :: Environment -> String
show :: Environment -> String
$cshowList :: [Environment] -> ShowS
showList :: [Environment] -> ShowS
Prelude.Show)
mkEnvironment ::
  Value Prelude.Text
  -> Value Prelude.Text -> Value Prelude.Text -> Environment
mkEnvironment :: Value Text -> Value Text -> Value Text -> Environment
mkEnvironment Value Text
engineType Value Text
instanceType Value Text
name
  = Environment
      {haddock_workaround_ :: ()
haddock_workaround_ = (), engineType :: Value Text
engineType = Value Text
engineType,
       instanceType :: Value Text
instanceType = Value Text
instanceType, name :: Value Text
name = Value Text
name,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, engineVersion :: Maybe (Value Text)
engineVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
highAvailabilityConfig = Maybe HighAvailabilityConfigProperty
forall a. Maybe a
Prelude.Nothing,
       kmsKeyId :: Maybe (Value Text)
kmsKeyId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, networkType :: Maybe (Value Text)
networkType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       preferredMaintenanceWindow :: Maybe (Value Text)
preferredMaintenanceWindow = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       publiclyAccessible :: Maybe (Value Bool)
publiclyAccessible = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       securityGroupIds :: Maybe (ValueList Text)
securityGroupIds = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       storageConfigurations :: Maybe [StorageConfigurationProperty]
storageConfigurations = Maybe [StorageConfigurationProperty]
forall a. Maybe a
Prelude.Nothing,
       subnetIds :: Maybe (ValueList Text)
subnetIds = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe (Map Text (Value Text))
tags = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Environment where
  toResourceProperties :: Environment -> ResourceProperties
toResourceProperties Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::M2::Environment", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"EngineType" 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
engineType,
                            Key
"InstanceType" 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
instanceType, 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
"EngineVersion" (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)
engineVersion,
                               Key -> HighAvailabilityConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HighAvailabilityConfig"
                                 (HighAvailabilityConfigProperty -> (Key, Value))
-> Maybe HighAvailabilityConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HighAvailabilityConfigProperty
highAvailabilityConfig,
                               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
"KmsKeyId" (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)
kmsKeyId,
                               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
"NetworkType" (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)
networkType,
                               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
"PreferredMaintenanceWindow"
                                 (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)
preferredMaintenanceWindow,
                               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PubliclyAccessible" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
publiclyAccessible,
                               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
"SecurityGroupIds" (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)
securityGroupIds,
                               Key -> [StorageConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StorageConfigurations"
                                 ([StorageConfigurationProperty] -> (Key, Value))
-> Maybe [StorageConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [StorageConfigurationProperty]
storageConfigurations,
                               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
"SubnetIds" (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)
subnetIds,
                               Key -> Map Text (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
"Tags" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
tags]))}
instance JSON.ToJSON Environment where
  toJSON :: Environment -> Value
toJSON Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (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
"EngineType" 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
engineType,
               Key
"InstanceType" 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
instanceType, 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
"EngineVersion" (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)
engineVersion,
                  Key -> HighAvailabilityConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HighAvailabilityConfig"
                    (HighAvailabilityConfigProperty -> (Key, Value))
-> Maybe HighAvailabilityConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HighAvailabilityConfigProperty
highAvailabilityConfig,
                  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
"KmsKeyId" (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)
kmsKeyId,
                  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
"NetworkType" (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)
networkType,
                  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
"PreferredMaintenanceWindow"
                    (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)
preferredMaintenanceWindow,
                  Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PubliclyAccessible" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
publiclyAccessible,
                  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
"SecurityGroupIds" (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)
securityGroupIds,
                  Key -> [StorageConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StorageConfigurations"
                    ([StorageConfigurationProperty] -> (Key, Value))
-> Maybe [StorageConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [StorageConfigurationProperty]
storageConfigurations,
                  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
"SubnetIds" (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)
subnetIds,
                  Key -> Map Text (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
"Tags" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
tags])))
instance Property "Description" Environment where
  type PropertyType "Description" Environment = Value Prelude.Text
  set :: PropertyType "Description" Environment
-> Environment -> Environment
set PropertyType "Description" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {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" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "EngineType" Environment where
  type PropertyType "EngineType" Environment = Value Prelude.Text
  set :: PropertyType "EngineType" Environment -> Environment -> Environment
set PropertyType "EngineType" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {engineType :: Value Text
engineType = PropertyType "EngineType" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "EngineVersion" Environment where
  type PropertyType "EngineVersion" Environment = Value Prelude.Text
  set :: PropertyType "EngineVersion" Environment
-> Environment -> Environment
set PropertyType "EngineVersion" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {engineVersion :: Maybe (Value Text)
engineVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EngineVersion" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "HighAvailabilityConfig" Environment where
  type PropertyType "HighAvailabilityConfig" Environment = HighAvailabilityConfigProperty
  set :: PropertyType "HighAvailabilityConfig" Environment
-> Environment -> Environment
set PropertyType "HighAvailabilityConfig" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
highAvailabilityConfig = HighAvailabilityConfigProperty
-> Maybe HighAvailabilityConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HighAvailabilityConfig" Environment
HighAvailabilityConfigProperty
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "InstanceType" Environment where
  type PropertyType "InstanceType" Environment = Value Prelude.Text
  set :: PropertyType "InstanceType" Environment
-> Environment -> Environment
set PropertyType "InstanceType" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {instanceType :: Value Text
instanceType = PropertyType "InstanceType" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "KmsKeyId" Environment where
  type PropertyType "KmsKeyId" Environment = Value Prelude.Text
  set :: PropertyType "KmsKeyId" Environment -> Environment -> Environment
set PropertyType "KmsKeyId" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {kmsKeyId :: Maybe (Value Text)
kmsKeyId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "KmsKeyId" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Name" Environment where
  type PropertyType "Name" Environment = Value Prelude.Text
  set :: PropertyType "Name" Environment -> Environment -> Environment
set PropertyType "Name" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..} = Environment {name :: Value Text
name = PropertyType "Name" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "NetworkType" Environment where
  type PropertyType "NetworkType" Environment = Value Prelude.Text
  set :: PropertyType "NetworkType" Environment
-> Environment -> Environment
set PropertyType "NetworkType" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {networkType :: Maybe (Value Text)
networkType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NetworkType" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "PreferredMaintenanceWindow" Environment where
  type PropertyType "PreferredMaintenanceWindow" Environment = Value Prelude.Text
  set :: PropertyType "PreferredMaintenanceWindow" Environment
-> Environment -> Environment
set PropertyType "PreferredMaintenanceWindow" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment
        {preferredMaintenanceWindow :: Maybe (Value Text)
preferredMaintenanceWindow = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreferredMaintenanceWindow" Environment
Value Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "PubliclyAccessible" Environment where
  type PropertyType "PubliclyAccessible" Environment = Value Prelude.Bool
  set :: PropertyType "PubliclyAccessible" Environment
-> Environment -> Environment
set PropertyType "PubliclyAccessible" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {publiclyAccessible :: Maybe (Value Bool)
publiclyAccessible = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PubliclyAccessible" Environment
Value Bool
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "SecurityGroupIds" Environment where
  type PropertyType "SecurityGroupIds" Environment = ValueList Prelude.Text
  set :: PropertyType "SecurityGroupIds" Environment
-> Environment -> Environment
set PropertyType "SecurityGroupIds" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {securityGroupIds :: Maybe (ValueList Text)
securityGroupIds = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SecurityGroupIds" Environment
ValueList Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "StorageConfigurations" Environment where
  type PropertyType "StorageConfigurations" Environment = [StorageConfigurationProperty]
  set :: PropertyType "StorageConfigurations" Environment
-> Environment -> Environment
set PropertyType "StorageConfigurations" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {storageConfigurations :: Maybe [StorageConfigurationProperty]
storageConfigurations = [StorageConfigurationProperty]
-> Maybe [StorageConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [StorageConfigurationProperty]
PropertyType "StorageConfigurations" Environment
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
instance Property "SubnetIds" Environment where
  type PropertyType "SubnetIds" Environment = ValueList Prelude.Text
  set :: PropertyType "SubnetIds" Environment -> Environment -> Environment
set PropertyType "SubnetIds" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {subnetIds :: Maybe (ValueList Text)
subnetIds = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SubnetIds" Environment
ValueList Text
newValue, Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Tags" Environment where
  type PropertyType "Tags" Environment = Prelude.Map Prelude.Text (Value Prelude.Text)
  set :: PropertyType "Tags" Environment -> Environment -> Environment
set PropertyType "Tags" Environment
newValue Environment {Maybe [StorageConfigurationProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: Environment -> ()
description :: Environment -> Maybe (Value Text)
engineType :: Environment -> Value Text
engineVersion :: Environment -> Maybe (Value Text)
highAvailabilityConfig :: Environment -> Maybe HighAvailabilityConfigProperty
instanceType :: Environment -> Value Text
kmsKeyId :: Environment -> Maybe (Value Text)
name :: Environment -> Value Text
networkType :: Environment -> Maybe (Value Text)
preferredMaintenanceWindow :: Environment -> Maybe (Value Text)
publiclyAccessible :: Environment -> Maybe (Value Bool)
securityGroupIds :: Environment -> Maybe (ValueList Text)
storageConfigurations :: Environment -> Maybe [StorageConfigurationProperty]
subnetIds :: Environment -> Maybe (ValueList Text)
tags :: Environment -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
tags :: Maybe (Map Text (Value Text))
..}
    = Environment {tags :: Maybe (Map Text (Value Text))
tags = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "Tags" Environment
newValue, Maybe [StorageConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe HighAvailabilityConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
engineType :: Value Text
engineVersion :: Maybe (Value Text)
highAvailabilityConfig :: Maybe HighAvailabilityConfigProperty
instanceType :: Value Text
kmsKeyId :: Maybe (Value Text)
name :: Value Text
networkType :: Maybe (Value Text)
preferredMaintenanceWindow :: Maybe (Value Text)
publiclyAccessible :: Maybe (Value Bool)
securityGroupIds :: Maybe (ValueList Text)
storageConfigurations :: Maybe [StorageConfigurationProperty]
subnetIds :: Maybe (ValueList Text)
..}