module Stratosphere.CloudWatch.CompositeAlarm (
        CompositeAlarm(..), mkCompositeAlarm
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data CompositeAlarm
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html>
    CompositeAlarm {CompositeAlarm -> ()
haddock_workaround_ :: (),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionsenabled>
                    CompositeAlarm -> Maybe (Value Bool)
actionsEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionssuppressor>
                    CompositeAlarm -> Maybe (Value Text)
actionsSuppressor :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionssuppressorextensionperiod>
                    CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorExtensionPeriod :: (Prelude.Maybe (Value Prelude.Integer)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-actionssuppressorwaitperiod>
                    CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: (Prelude.Maybe (Value Prelude.Integer)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmactions>
                    CompositeAlarm -> Maybe (ValueList Text)
alarmActions :: (Prelude.Maybe (ValueList Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmdescription>
                    CompositeAlarm -> Maybe (Value Text)
alarmDescription :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmname>
                    CompositeAlarm -> Maybe (Value Text)
alarmName :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-alarmrule>
                    CompositeAlarm -> Value Text
alarmRule :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-insufficientdataactions>
                    CompositeAlarm -> Maybe (ValueList Text)
insufficientDataActions :: (Prelude.Maybe (ValueList Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-okactions>
                    CompositeAlarm -> Maybe (ValueList Text)
oKActions :: (Prelude.Maybe (ValueList Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html#cfn-cloudwatch-compositealarm-tags>
                    CompositeAlarm -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (CompositeAlarm -> CompositeAlarm -> Bool
(CompositeAlarm -> CompositeAlarm -> Bool)
-> (CompositeAlarm -> CompositeAlarm -> Bool) -> Eq CompositeAlarm
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: CompositeAlarm -> CompositeAlarm -> Bool
== :: CompositeAlarm -> CompositeAlarm -> Bool
$c/= :: CompositeAlarm -> CompositeAlarm -> Bool
/= :: CompositeAlarm -> CompositeAlarm -> Bool
Prelude.Eq, Int -> CompositeAlarm -> ShowS
[CompositeAlarm] -> ShowS
CompositeAlarm -> String
(Int -> CompositeAlarm -> ShowS)
-> (CompositeAlarm -> String)
-> ([CompositeAlarm] -> ShowS)
-> Show CompositeAlarm
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> CompositeAlarm -> ShowS
showsPrec :: Int -> CompositeAlarm -> ShowS
$cshow :: CompositeAlarm -> String
show :: CompositeAlarm -> String
$cshowList :: [CompositeAlarm] -> ShowS
showList :: [CompositeAlarm] -> ShowS
Prelude.Show)
mkCompositeAlarm :: Value Prelude.Text -> CompositeAlarm
mkCompositeAlarm :: Value Text -> CompositeAlarm
mkCompositeAlarm Value Text
alarmRule
  = CompositeAlarm
      {haddock_workaround_ :: ()
haddock_workaround_ = (), alarmRule :: Value Text
alarmRule = Value Text
alarmRule,
       actionsEnabled :: Maybe (Value Bool)
actionsEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       actionsSuppressor :: Maybe (Value Text)
actionsSuppressor = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorExtensionPeriod = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       actionsSuppressorWaitPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       alarmActions :: Maybe (ValueList Text)
alarmActions = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, alarmDescription :: Maybe (Value Text)
alarmDescription = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       alarmName :: Maybe (Value Text)
alarmName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       insufficientDataActions :: Maybe (ValueList Text)
insufficientDataActions = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       oKActions :: Maybe (ValueList Text)
oKActions = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties CompositeAlarm where
  toResourceProperties :: CompositeAlarm -> ResourceProperties
toResourceProperties CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::CloudWatch::CompositeAlarm",
         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
"AlarmRule" 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
alarmRule]
                           ([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
"ActionsEnabled" (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)
actionsEnabled,
                               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
"ActionsSuppressor" (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)
actionsSuppressor,
                               Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActionsSuppressorExtensionPeriod"
                                 (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
actionsSuppressorExtensionPeriod,
                               Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActionsSuppressorWaitPeriod"
                                 (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
actionsSuppressorWaitPeriod,
                               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
"AlarmActions" (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)
alarmActions,
                               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
"AlarmDescription" (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)
alarmDescription,
                               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
"AlarmName" (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)
alarmName,
                               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
"InsufficientDataActions"
                                 (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)
insufficientDataActions,
                               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
"OKActions" (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)
oKActions,
                               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 CompositeAlarm where
  toJSON :: CompositeAlarm -> Value
toJSON CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList 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
"AlarmRule" 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
alarmRule]
              ([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
"ActionsEnabled" (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)
actionsEnabled,
                  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
"ActionsSuppressor" (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)
actionsSuppressor,
                  Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActionsSuppressorExtensionPeriod"
                    (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
actionsSuppressorExtensionPeriod,
                  Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActionsSuppressorWaitPeriod"
                    (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
actionsSuppressorWaitPeriod,
                  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
"AlarmActions" (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)
alarmActions,
                  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
"AlarmDescription" (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)
alarmDescription,
                  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
"AlarmName" (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)
alarmName,
                  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
"InsufficientDataActions"
                    (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)
insufficientDataActions,
                  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
"OKActions" (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)
oKActions,
                  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 "ActionsEnabled" CompositeAlarm where
  type PropertyType "ActionsEnabled" CompositeAlarm = Value Prelude.Bool
  set :: PropertyType "ActionsEnabled" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "ActionsEnabled" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {actionsEnabled :: Maybe (Value Bool)
actionsEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ActionsEnabled" CompositeAlarm
Value Bool
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "ActionsSuppressor" CompositeAlarm where
  type PropertyType "ActionsSuppressor" CompositeAlarm = Value Prelude.Text
  set :: PropertyType "ActionsSuppressor" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "ActionsSuppressor" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {actionsSuppressor :: Maybe (Value Text)
actionsSuppressor = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ActionsSuppressor" CompositeAlarm
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "ActionsSuppressorExtensionPeriod" CompositeAlarm where
  type PropertyType "ActionsSuppressorExtensionPeriod" CompositeAlarm = Value Prelude.Integer
  set :: PropertyType "ActionsSuppressorExtensionPeriod" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "ActionsSuppressorExtensionPeriod" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm
        {actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorExtensionPeriod = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ActionsSuppressorExtensionPeriod" CompositeAlarm
Value Integer
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "ActionsSuppressorWaitPeriod" CompositeAlarm where
  type PropertyType "ActionsSuppressorWaitPeriod" CompositeAlarm = Value Prelude.Integer
  set :: PropertyType "ActionsSuppressorWaitPeriod" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "ActionsSuppressorWaitPeriod" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm
        {actionsSuppressorWaitPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ActionsSuppressorWaitPeriod" CompositeAlarm
Value Integer
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "AlarmActions" CompositeAlarm where
  type PropertyType "AlarmActions" CompositeAlarm = ValueList Prelude.Text
  set :: PropertyType "AlarmActions" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "AlarmActions" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {alarmActions :: Maybe (ValueList Text)
alarmActions = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AlarmActions" CompositeAlarm
ValueList Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "AlarmDescription" CompositeAlarm where
  type PropertyType "AlarmDescription" CompositeAlarm = Value Prelude.Text
  set :: PropertyType "AlarmDescription" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "AlarmDescription" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {alarmDescription :: Maybe (Value Text)
alarmDescription = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AlarmDescription" CompositeAlarm
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "AlarmName" CompositeAlarm where
  type PropertyType "AlarmName" CompositeAlarm = Value Prelude.Text
  set :: PropertyType "AlarmName" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "AlarmName" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {alarmName :: Maybe (Value Text)
alarmName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AlarmName" CompositeAlarm
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "AlarmRule" CompositeAlarm where
  type PropertyType "AlarmRule" CompositeAlarm = Value Prelude.Text
  set :: PropertyType "AlarmRule" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "AlarmRule" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {alarmRule :: Value Text
alarmRule = PropertyType "AlarmRule" CompositeAlarm
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "InsufficientDataActions" CompositeAlarm where
  type PropertyType "InsufficientDataActions" CompositeAlarm = ValueList Prelude.Text
  set :: PropertyType "InsufficientDataActions" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "InsufficientDataActions" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm
        {insufficientDataActions :: Maybe (ValueList Text)
insufficientDataActions = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InsufficientDataActions" CompositeAlarm
ValueList Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "OKActions" CompositeAlarm where
  type PropertyType "OKActions" CompositeAlarm = ValueList Prelude.Text
  set :: PropertyType "OKActions" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "OKActions" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {oKActions :: Maybe (ValueList Text)
oKActions = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "OKActions" CompositeAlarm
ValueList Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" CompositeAlarm where
  type PropertyType "Tags" CompositeAlarm = [Tag]
  set :: PropertyType "Tags" CompositeAlarm
-> CompositeAlarm -> CompositeAlarm
set PropertyType "Tags" CompositeAlarm
newValue CompositeAlarm {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: CompositeAlarm -> ()
actionsEnabled :: CompositeAlarm -> Maybe (Value Bool)
actionsSuppressor :: CompositeAlarm -> Maybe (Value Text)
actionsSuppressorExtensionPeriod :: CompositeAlarm -> Maybe (Value Integer)
actionsSuppressorWaitPeriod :: CompositeAlarm -> Maybe (Value Integer)
alarmActions :: CompositeAlarm -> Maybe (ValueList Text)
alarmDescription :: CompositeAlarm -> Maybe (Value Text)
alarmName :: CompositeAlarm -> Maybe (Value Text)
alarmRule :: CompositeAlarm -> Value Text
insufficientDataActions :: CompositeAlarm -> Maybe (ValueList Text)
oKActions :: CompositeAlarm -> Maybe (ValueList Text)
tags :: CompositeAlarm -> Maybe [Tag]
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = CompositeAlarm {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" CompositeAlarm
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
haddock_workaround_ :: ()
actionsEnabled :: Maybe (Value Bool)
actionsSuppressor :: Maybe (Value Text)
actionsSuppressorExtensionPeriod :: Maybe (Value Integer)
actionsSuppressorWaitPeriod :: Maybe (Value Integer)
alarmActions :: Maybe (ValueList Text)
alarmDescription :: Maybe (Value Text)
alarmName :: Maybe (Value Text)
alarmRule :: Value Text
insufficientDataActions :: Maybe (ValueList Text)
oKActions :: Maybe (ValueList Text)
..}