module Stratosphere.ApplicationInsights.Application (
module Exports, Application(..), mkApplication
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ApplicationInsights.Application.ComponentMonitoringSettingProperty as Exports
import {-# SOURCE #-} Stratosphere.ApplicationInsights.Application.CustomComponentProperty as Exports
import {-# SOURCE #-} Stratosphere.ApplicationInsights.Application.LogPatternSetProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Application
=
Application {Application -> ()
haddock_workaround_ :: (),
Application -> Maybe (Value Bool)
attachMissingPermission :: (Prelude.Maybe (Value Prelude.Bool)),
Application -> Maybe (Value Bool)
autoConfigurationEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
Application -> Maybe (Value Bool)
cWEMonitorEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
Application -> Maybe [ComponentMonitoringSettingProperty]
componentMonitoringSettings :: (Prelude.Maybe [ComponentMonitoringSettingProperty]),
Application -> Maybe [CustomComponentProperty]
customComponents :: (Prelude.Maybe [CustomComponentProperty]),
Application -> Maybe (Value Text)
groupingType :: (Prelude.Maybe (Value Prelude.Text)),
Application -> Maybe [LogPatternSetProperty]
logPatternSets :: (Prelude.Maybe [LogPatternSetProperty]),
Application -> Maybe (Value Bool)
opsCenterEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
Application -> Maybe (Value Text)
opsItemSNSTopicArn :: (Prelude.Maybe (Value Prelude.Text)),
Application -> Value Text
resourceGroupName :: (Value Prelude.Text),
Application -> Maybe (Value Text)
sNSNotificationArn :: (Prelude.Maybe (Value Prelude.Text)),
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 -> Application
mkApplication :: Value Text -> Application
mkApplication Value Text
resourceGroupName
= Application
{haddock_workaround_ :: ()
haddock_workaround_ = (), resourceGroupName :: Value Text
resourceGroupName = Value Text
resourceGroupName,
attachMissingPermission :: Maybe (Value Bool)
attachMissingPermission = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
autoConfigurationEnabled :: Maybe (Value Bool)
autoConfigurationEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
cWEMonitorEnabled :: Maybe (Value Bool)
cWEMonitorEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
componentMonitoringSettings = Maybe [ComponentMonitoringSettingProperty]
forall a. Maybe a
Prelude.Nothing,
customComponents :: Maybe [CustomComponentProperty]
customComponents = Maybe [CustomComponentProperty]
forall a. Maybe a
Prelude.Nothing, groupingType :: Maybe (Value Text)
groupingType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
logPatternSets :: Maybe [LogPatternSetProperty]
logPatternSets = Maybe [LogPatternSetProperty]
forall a. Maybe a
Prelude.Nothing,
opsCenterEnabled :: Maybe (Value Bool)
opsCenterEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
opsItemSNSTopicArn :: Maybe (Value Text)
opsItemSNSTopicArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
sNSNotificationArn :: Maybe (Value Text)
sNSNotificationArn = 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 [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::ApplicationInsights::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
"ResourceGroupName" 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
resourceGroupName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"AttachMissingPermission"
(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)
attachMissingPermission,
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
"AutoConfigurationEnabled"
(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)
autoConfigurationEnabled,
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
"CWEMonitorEnabled" (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)
cWEMonitorEnabled,
Key -> [ComponentMonitoringSettingProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComponentMonitoringSettings"
([ComponentMonitoringSettingProperty] -> (Key, Value))
-> Maybe [ComponentMonitoringSettingProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ComponentMonitoringSettingProperty]
componentMonitoringSettings,
Key -> [CustomComponentProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomComponents" ([CustomComponentProperty] -> (Key, Value))
-> Maybe [CustomComponentProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CustomComponentProperty]
customComponents,
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
"GroupingType" (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)
groupingType,
Key -> [LogPatternSetProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LogPatternSets" ([LogPatternSetProperty] -> (Key, Value))
-> Maybe [LogPatternSetProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [LogPatternSetProperty]
logPatternSets,
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
"OpsCenterEnabled" (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)
opsCenterEnabled,
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
"OpsItemSNSTopicArn" (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)
opsItemSNSTopicArn,
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
"SNSNotificationArn" (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)
sNSNotificationArn,
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 [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: 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
"ResourceGroupName" 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
resourceGroupName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"AttachMissingPermission"
(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)
attachMissingPermission,
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
"AutoConfigurationEnabled"
(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)
autoConfigurationEnabled,
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
"CWEMonitorEnabled" (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)
cWEMonitorEnabled,
Key -> [ComponentMonitoringSettingProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComponentMonitoringSettings"
([ComponentMonitoringSettingProperty] -> (Key, Value))
-> Maybe [ComponentMonitoringSettingProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ComponentMonitoringSettingProperty]
componentMonitoringSettings,
Key -> [CustomComponentProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomComponents" ([CustomComponentProperty] -> (Key, Value))
-> Maybe [CustomComponentProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CustomComponentProperty]
customComponents,
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
"GroupingType" (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)
groupingType,
Key -> [LogPatternSetProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LogPatternSets" ([LogPatternSetProperty] -> (Key, Value))
-> Maybe [LogPatternSetProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [LogPatternSetProperty]
logPatternSets,
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
"OpsCenterEnabled" (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)
opsCenterEnabled,
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
"OpsItemSNSTopicArn" (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)
opsItemSNSTopicArn,
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
"SNSNotificationArn" (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)
sNSNotificationArn,
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 "AttachMissingPermission" Application where
type PropertyType "AttachMissingPermission" Application = Value Prelude.Bool
set :: PropertyType "AttachMissingPermission" Application
-> Application -> Application
set PropertyType "AttachMissingPermission" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {attachMissingPermission :: Maybe (Value Bool)
attachMissingPermission = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AttachMissingPermission" Application
Value Bool
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "AutoConfigurationEnabled" Application where
type PropertyType "AutoConfigurationEnabled" Application = Value Prelude.Bool
set :: PropertyType "AutoConfigurationEnabled" Application
-> Application -> Application
set PropertyType "AutoConfigurationEnabled" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application
{autoConfigurationEnabled :: Maybe (Value Bool)
autoConfigurationEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AutoConfigurationEnabled" Application
Value Bool
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "CWEMonitorEnabled" Application where
type PropertyType "CWEMonitorEnabled" Application = Value Prelude.Bool
set :: PropertyType "CWEMonitorEnabled" Application
-> Application -> Application
set PropertyType "CWEMonitorEnabled" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {cWEMonitorEnabled :: Maybe (Value Bool)
cWEMonitorEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CWEMonitorEnabled" Application
Value Bool
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "ComponentMonitoringSettings" Application where
type PropertyType "ComponentMonitoringSettings" Application = [ComponentMonitoringSettingProperty]
set :: PropertyType "ComponentMonitoringSettings" Application
-> Application -> Application
set PropertyType "ComponentMonitoringSettings" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application
{componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
componentMonitoringSettings = [ComponentMonitoringSettingProperty]
-> Maybe [ComponentMonitoringSettingProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ComponentMonitoringSettingProperty]
PropertyType "ComponentMonitoringSettings" Application
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "CustomComponents" Application where
type PropertyType "CustomComponents" Application = [CustomComponentProperty]
set :: PropertyType "CustomComponents" Application
-> Application -> Application
set PropertyType "CustomComponents" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {customComponents :: Maybe [CustomComponentProperty]
customComponents = [CustomComponentProperty] -> Maybe [CustomComponentProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [CustomComponentProperty]
PropertyType "CustomComponents" Application
newValue, Maybe [Tag]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "GroupingType" Application where
type PropertyType "GroupingType" Application = Value Prelude.Text
set :: PropertyType "GroupingType" Application
-> Application -> Application
set PropertyType "GroupingType" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {groupingType :: Maybe (Value Text)
groupingType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "GroupingType" Application
Value Text
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "LogPatternSets" Application where
type PropertyType "LogPatternSets" Application = [LogPatternSetProperty]
set :: PropertyType "LogPatternSets" Application
-> Application -> Application
set PropertyType "LogPatternSets" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {logPatternSets :: Maybe [LogPatternSetProperty]
logPatternSets = [LogPatternSetProperty] -> Maybe [LogPatternSetProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [LogPatternSetProperty]
PropertyType "LogPatternSets" Application
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "OpsCenterEnabled" Application where
type PropertyType "OpsCenterEnabled" Application = Value Prelude.Bool
set :: PropertyType "OpsCenterEnabled" Application
-> Application -> Application
set PropertyType "OpsCenterEnabled" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {opsCenterEnabled :: Maybe (Value Bool)
opsCenterEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "OpsCenterEnabled" Application
Value Bool
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "OpsItemSNSTopicArn" Application where
type PropertyType "OpsItemSNSTopicArn" Application = Value Prelude.Text
set :: PropertyType "OpsItemSNSTopicArn" Application
-> Application -> Application
set PropertyType "OpsItemSNSTopicArn" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {opsItemSNSTopicArn :: Maybe (Value Text)
opsItemSNSTopicArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "OpsItemSNSTopicArn" Application
Value Text
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "ResourceGroupName" Application where
type PropertyType "ResourceGroupName" Application = Value Prelude.Text
set :: PropertyType "ResourceGroupName" Application
-> Application -> Application
set PropertyType "ResourceGroupName" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {resourceGroupName :: Value Text
resourceGroupName = PropertyType "ResourceGroupName" Application
Value Text
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "SNSNotificationArn" Application where
type PropertyType "SNSNotificationArn" Application = Value Prelude.Text
set :: PropertyType "SNSNotificationArn" Application
-> Application -> Application
set PropertyType "SNSNotificationArn" Application
newValue Application {Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= Application {sNSNotificationArn :: Maybe (Value Text)
sNSNotificationArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SNSNotificationArn" Application
Value Text
newValue, Maybe [Tag]
Maybe [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: 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 [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: Application -> ()
attachMissingPermission :: Application -> Maybe (Value Bool)
autoConfigurationEnabled :: Application -> Maybe (Value Bool)
cWEMonitorEnabled :: Application -> Maybe (Value Bool)
componentMonitoringSettings :: Application -> Maybe [ComponentMonitoringSettingProperty]
customComponents :: Application -> Maybe [CustomComponentProperty]
groupingType :: Application -> Maybe (Value Text)
logPatternSets :: Application -> Maybe [LogPatternSetProperty]
opsCenterEnabled :: Application -> Maybe (Value Bool)
opsItemSNSTopicArn :: Application -> Maybe (Value Text)
resourceGroupName :: Application -> Value Text
sNSNotificationArn :: Application -> Maybe (Value Text)
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: 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 [CustomComponentProperty]
Maybe [LogPatternSetProperty]
Maybe [ComponentMonitoringSettingProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
haddock_workaround_ :: ()
attachMissingPermission :: Maybe (Value Bool)
autoConfigurationEnabled :: Maybe (Value Bool)
cWEMonitorEnabled :: Maybe (Value Bool)
componentMonitoringSettings :: Maybe [ComponentMonitoringSettingProperty]
customComponents :: Maybe [CustomComponentProperty]
groupingType :: Maybe (Value Text)
logPatternSets :: Maybe [LogPatternSetProperty]
opsCenterEnabled :: Maybe (Value Bool)
opsItemSNSTopicArn :: Maybe (Value Text)
resourceGroupName :: Value Text
sNSNotificationArn :: Maybe (Value Text)
..}