module Stratosphere.SystemsManagerSAP.Application (
        module Exports, Application(..), mkApplication
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SystemsManagerSAP.Application.ComponentInfoProperty as Exports
import {-# SOURCE #-} Stratosphere.SystemsManagerSAP.Application.CredentialProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Application
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html>
    Application {Application -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-applicationid>
                 Application -> Value Text
applicationId :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-applicationtype>
                 Application -> Value Text
applicationType :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-componentsinfo>
                 Application -> Maybe [ComponentInfoProperty]
componentsInfo :: (Prelude.Maybe [ComponentInfoProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-credentials>
                 Application -> Maybe [CredentialProperty]
credentials :: (Prelude.Maybe [CredentialProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-databasearn>
                 Application -> Maybe (Value Text)
databaseArn :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-instances>
                 Application -> Maybe (ValueList Text)
instances :: (Prelude.Maybe (ValueList Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-sapinstancenumber>
                 Application -> Maybe (Value Text)
sapInstanceNumber :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-sid>
                 Application -> Maybe (Value Text)
sid :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-tags>
                 Application -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (Application -> Application -> Bool
(Application -> Application -> Bool)
-> (Application -> Application -> Bool) -> Eq Application
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Application -> Application -> Bool
== :: Application -> Application -> Bool
$c/= :: Application -> Application -> Bool
/= :: Application -> Application -> Bool
Prelude.Eq, Int -> Application -> ShowS
[Application] -> ShowS
Application -> String
(Int -> Application -> ShowS)
-> (Application -> String)
-> ([Application] -> ShowS)
-> Show Application
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Application -> ShowS
showsPrec :: Int -> Application -> ShowS
$cshow :: Application -> String
show :: Application -> String
$cshowList :: [Application] -> ShowS
showList :: [Application] -> ShowS
Prelude.Show)
mkApplication ::
  Value Prelude.Text -> Value Prelude.Text -> Application
mkApplication :: Value Text -> Value Text -> Application
mkApplication Value Text
applicationId Value Text
applicationType
  = Application
      {haddock_workaround_ :: ()
haddock_workaround_ = (), applicationId :: Value Text
applicationId = Value Text
applicationId,
       applicationType :: Value Text
applicationType = Value Text
applicationType,
       componentsInfo :: Maybe [ComponentInfoProperty]
componentsInfo = Maybe [ComponentInfoProperty]
forall a. Maybe a
Prelude.Nothing, credentials :: Maybe [CredentialProperty]
credentials = Maybe [CredentialProperty]
forall a. Maybe a
Prelude.Nothing,
       databaseArn :: Maybe (Value Text)
databaseArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, instances :: Maybe (ValueList Text)
instances = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       sapInstanceNumber :: Maybe (Value Text)
sapInstanceNumber = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, sid :: Maybe (Value Text)
sid = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Application where
  toResourceProperties :: Application -> ResourceProperties
toResourceProperties Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::SystemsManagerSAP::Application",
         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
"ApplicationId" 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
applicationId,
                            Key
"ApplicationType" 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
applicationType]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> [ComponentInfoProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComponentsInfo" ([ComponentInfoProperty] -> (Key, Value))
-> Maybe [ComponentInfoProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ComponentInfoProperty]
componentsInfo,
                               Key -> [CredentialProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Credentials" ([CredentialProperty] -> (Key, Value))
-> Maybe [CredentialProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CredentialProperty]
credentials,
                               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
"DatabaseArn" (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)
databaseArn,
                               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
"Instances" (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)
instances,
                               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
"SapInstanceNumber" (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)
sapInstanceNumber,
                               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
"Sid" (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)
sid,
                               Key -> [Tag] -> (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" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON Application where
  toJSON :: Application -> Value
toJSON Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = [(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
"ApplicationId" 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
applicationId,
               Key
"ApplicationType" 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
applicationType]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [ComponentInfoProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComponentsInfo" ([ComponentInfoProperty] -> (Key, Value))
-> Maybe [ComponentInfoProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ComponentInfoProperty]
componentsInfo,
                  Key -> [CredentialProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Credentials" ([CredentialProperty] -> (Key, Value))
-> Maybe [CredentialProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CredentialProperty]
credentials,
                  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
"DatabaseArn" (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)
databaseArn,
                  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
"Instances" (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)
instances,
                  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
"SapInstanceNumber" (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)
sapInstanceNumber,
                  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
"Sid" (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)
sid,
                  Key -> [Tag] -> (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" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "ApplicationId" Application where
  type PropertyType "ApplicationId" Application = Value Prelude.Text
  set :: PropertyType "ApplicationId" Application
-> Application -> Application
set PropertyType "ApplicationId" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {applicationId :: Value Text
applicationId = PropertyType "ApplicationId" Application
Value Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "ApplicationType" Application where
  type PropertyType "ApplicationType" Application = Value Prelude.Text
  set :: PropertyType "ApplicationType" Application
-> Application -> Application
set PropertyType "ApplicationType" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {applicationType :: Value Text
applicationType = PropertyType "ApplicationType" Application
Value Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "ComponentsInfo" Application where
  type PropertyType "ComponentsInfo" Application = [ComponentInfoProperty]
  set :: PropertyType "ComponentsInfo" Application
-> Application -> Application
set PropertyType "ComponentsInfo" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {componentsInfo :: Maybe [ComponentInfoProperty]
componentsInfo = [ComponentInfoProperty] -> Maybe [ComponentInfoProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ComponentInfoProperty]
PropertyType "ComponentsInfo" Application
newValue, Maybe [Tag]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Credentials" Application where
  type PropertyType "Credentials" Application = [CredentialProperty]
  set :: PropertyType "Credentials" Application
-> Application -> Application
set PropertyType "Credentials" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {credentials :: Maybe [CredentialProperty]
credentials = [CredentialProperty] -> Maybe [CredentialProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [CredentialProperty]
PropertyType "Credentials" Application
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "DatabaseArn" Application where
  type PropertyType "DatabaseArn" Application = Value Prelude.Text
  set :: PropertyType "DatabaseArn" Application
-> Application -> Application
set PropertyType "DatabaseArn" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {databaseArn :: Maybe (Value Text)
databaseArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DatabaseArn" Application
Value Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Instances" Application where
  type PropertyType "Instances" Application = ValueList Prelude.Text
  set :: PropertyType "Instances" Application -> Application -> Application
set PropertyType "Instances" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {instances :: Maybe (ValueList Text)
instances = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Instances" Application
ValueList Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "SapInstanceNumber" Application where
  type PropertyType "SapInstanceNumber" Application = Value Prelude.Text
  set :: PropertyType "SapInstanceNumber" Application
-> Application -> Application
set PropertyType "SapInstanceNumber" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {sapInstanceNumber :: Maybe (Value Text)
sapInstanceNumber = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SapInstanceNumber" Application
Value Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Sid" Application where
  type PropertyType "Sid" Application = Value Prelude.Text
  set :: PropertyType "Sid" Application -> Application -> Application
set PropertyType "Sid" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {sid :: Maybe (Value Text)
sid = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Sid" Application
Value Text
newValue, Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" Application where
  type PropertyType "Tags" Application = [Tag]
  set :: PropertyType "Tags" Application -> Application -> Application
set PropertyType "Tags" Application
newValue Application {Maybe [Tag]
Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
applicationId :: Application -> Value Text
applicationType :: Application -> Value Text
componentsInfo :: Application -> Maybe [ComponentInfoProperty]
credentials :: Application -> Maybe [CredentialProperty]
databaseArn :: Application -> Maybe (Value Text)
instances :: Application -> Maybe (ValueList Text)
sapInstanceNumber :: Application -> Maybe (Value Text)
sid :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = Application {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" Application
newValue, Maybe [ComponentInfoProperty]
Maybe [CredentialProperty]
Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
applicationType :: Value Text
componentsInfo :: Maybe [ComponentInfoProperty]
credentials :: Maybe [CredentialProperty]
databaseArn :: Maybe (Value Text)
instances :: Maybe (ValueList Text)
sapInstanceNumber :: Maybe (Value Text)
sid :: Maybe (Value Text)
..}