module Stratosphere.M2.Application ( module Exports, Application(..), mkApplication ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.M2.Application.DefinitionProperty as Exports import Stratosphere.ResourceProperties import Stratosphere.Value data Application = -- | See: Application {haddock_workaround_ :: (), -- | See: definition :: (Prelude.Maybe DefinitionProperty), -- | See: description :: (Prelude.Maybe (Value Prelude.Text)), -- | See: engineType :: (Value Prelude.Text), -- | See: kmsKeyId :: (Prelude.Maybe (Value Prelude.Text)), -- | See: name :: (Value Prelude.Text), -- | See: roleArn :: (Prelude.Maybe (Value Prelude.Text)), -- | See: tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))} deriving stock (Prelude.Eq, Prelude.Show) mkApplication :: Value Prelude.Text -> Value Prelude.Text -> Application mkApplication engineType name = Application {haddock_workaround_ = (), engineType = engineType, name = name, definition = Prelude.Nothing, description = Prelude.Nothing, kmsKeyId = Prelude.Nothing, roleArn = Prelude.Nothing, tags = Prelude.Nothing} instance ToResourceProperties Application where toResourceProperties Application {..} = ResourceProperties {awsType = "AWS::M2::Application", supportsTags = Prelude.True, properties = Prelude.fromList ((Prelude.<>) ["EngineType" JSON..= engineType, "Name" JSON..= name] (Prelude.catMaybes [(JSON..=) "Definition" Prelude.<$> definition, (JSON..=) "Description" Prelude.<$> description, (JSON..=) "KmsKeyId" Prelude.<$> kmsKeyId, (JSON..=) "RoleArn" Prelude.<$> roleArn, (JSON..=) "Tags" Prelude.<$> tags]))} instance JSON.ToJSON Application where toJSON Application {..} = JSON.object (Prelude.fromList ((Prelude.<>) ["EngineType" JSON..= engineType, "Name" JSON..= name] (Prelude.catMaybes [(JSON..=) "Definition" Prelude.<$> definition, (JSON..=) "Description" Prelude.<$> description, (JSON..=) "KmsKeyId" Prelude.<$> kmsKeyId, (JSON..=) "RoleArn" Prelude.<$> roleArn, (JSON..=) "Tags" Prelude.<$> tags]))) instance Property "Definition" Application where type PropertyType "Definition" Application = DefinitionProperty set newValue Application {..} = Application {definition = Prelude.pure newValue, ..} instance Property "Description" Application where type PropertyType "Description" Application = Value Prelude.Text set newValue Application {..} = Application {description = Prelude.pure newValue, ..} instance Property "EngineType" Application where type PropertyType "EngineType" Application = Value Prelude.Text set newValue Application {..} = Application {engineType = newValue, ..} instance Property "KmsKeyId" Application where type PropertyType "KmsKeyId" Application = Value Prelude.Text set newValue Application {..} = Application {kmsKeyId = Prelude.pure newValue, ..} instance Property "Name" Application where type PropertyType "Name" Application = Value Prelude.Text set newValue Application {..} = Application {name = newValue, ..} instance Property "RoleArn" Application where type PropertyType "RoleArn" Application = Value Prelude.Text set newValue Application {..} = Application {roleArn = Prelude.pure newValue, ..} instance Property "Tags" Application where type PropertyType "Tags" Application = Prelude.Map Prelude.Text (Value Prelude.Text) set newValue Application {..} = Application {tags = Prelude.pure newValue, ..}