{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.AutoScaling.Types.Alarm
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.AutoScaling.Types.Alarm where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

-- | Describes an alarm.
--
-- /See:/ 'newAlarm' smart constructor.
data Alarm = Alarm'
  { -- | The Amazon Resource Name (ARN) of the alarm.
    Alarm -> Maybe Text
alarmARN :: Prelude.Maybe Prelude.Text,
    -- | The name of the alarm.
    Alarm -> Maybe Text
alarmName :: Prelude.Maybe Prelude.Text
  }
  deriving (Alarm -> Alarm -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Alarm -> Alarm -> Bool
$c/= :: Alarm -> Alarm -> Bool
== :: Alarm -> Alarm -> Bool
$c== :: Alarm -> Alarm -> Bool
Prelude.Eq, ReadPrec [Alarm]
ReadPrec Alarm
Int -> ReadS Alarm
ReadS [Alarm]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Alarm]
$creadListPrec :: ReadPrec [Alarm]
readPrec :: ReadPrec Alarm
$creadPrec :: ReadPrec Alarm
readList :: ReadS [Alarm]
$creadList :: ReadS [Alarm]
readsPrec :: Int -> ReadS Alarm
$creadsPrec :: Int -> ReadS Alarm
Prelude.Read, Int -> Alarm -> ShowS
[Alarm] -> ShowS
Alarm -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Alarm] -> ShowS
$cshowList :: [Alarm] -> ShowS
show :: Alarm -> String
$cshow :: Alarm -> String
showsPrec :: Int -> Alarm -> ShowS
$cshowsPrec :: Int -> Alarm -> ShowS
Prelude.Show, forall x. Rep Alarm x -> Alarm
forall x. Alarm -> Rep Alarm x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Alarm x -> Alarm
$cfrom :: forall x. Alarm -> Rep Alarm x
Prelude.Generic)

-- |
-- Create a value of 'Alarm' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'alarmARN', 'alarm_alarmARN' - The Amazon Resource Name (ARN) of the alarm.
--
-- 'alarmName', 'alarm_alarmName' - The name of the alarm.
newAlarm ::
  Alarm
newAlarm :: Alarm
newAlarm =
  Alarm'
    { $sel:alarmARN:Alarm' :: Maybe Text
alarmARN = forall a. Maybe a
Prelude.Nothing,
      $sel:alarmName:Alarm' :: Maybe Text
alarmName = forall a. Maybe a
Prelude.Nothing
    }

-- | The Amazon Resource Name (ARN) of the alarm.
alarm_alarmARN :: Lens.Lens' Alarm (Prelude.Maybe Prelude.Text)
alarm_alarmARN :: Lens' Alarm (Maybe Text)
alarm_alarmARN = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Alarm' {Maybe Text
alarmARN :: Maybe Text
$sel:alarmARN:Alarm' :: Alarm -> Maybe Text
alarmARN} -> Maybe Text
alarmARN) (\s :: Alarm
s@Alarm' {} Maybe Text
a -> Alarm
s {$sel:alarmARN:Alarm' :: Maybe Text
alarmARN = Maybe Text
a} :: Alarm)

-- | The name of the alarm.
alarm_alarmName :: Lens.Lens' Alarm (Prelude.Maybe Prelude.Text)
alarm_alarmName :: Lens' Alarm (Maybe Text)
alarm_alarmName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Alarm' {Maybe Text
alarmName :: Maybe Text
$sel:alarmName:Alarm' :: Alarm -> Maybe Text
alarmName} -> Maybe Text
alarmName) (\s :: Alarm
s@Alarm' {} Maybe Text
a -> Alarm
s {$sel:alarmName:Alarm' :: Maybe Text
alarmName = Maybe Text
a} :: Alarm)

instance Data.FromXML Alarm where
  parseXML :: [Node] -> Either String Alarm
parseXML [Node]
x =
    Maybe Text -> Maybe Text -> Alarm
Alarm'
      forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"AlarmARN")
      forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"AlarmName")

instance Prelude.Hashable Alarm where
  hashWithSalt :: Int -> Alarm -> Int
hashWithSalt Int
_salt Alarm' {Maybe Text
alarmName :: Maybe Text
alarmARN :: Maybe Text
$sel:alarmName:Alarm' :: Alarm -> Maybe Text
$sel:alarmARN:Alarm' :: Alarm -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
alarmARN
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
alarmName

instance Prelude.NFData Alarm where
  rnf :: Alarm -> ()
rnf Alarm' {Maybe Text
alarmName :: Maybe Text
alarmARN :: Maybe Text
$sel:alarmName:Alarm' :: Alarm -> Maybe Text
$sel:alarmARN:Alarm' :: Alarm -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
alarmARN
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
alarmName