{-# 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 #-}
module Amazonka.CloudFormation.Types.AccountLimit 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
data AccountLimit = AccountLimit'
{
AccountLimit -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
AccountLimit -> Maybe Int
value :: Prelude.Maybe Prelude.Int
}
deriving (AccountLimit -> AccountLimit -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AccountLimit -> AccountLimit -> Bool
$c/= :: AccountLimit -> AccountLimit -> Bool
== :: AccountLimit -> AccountLimit -> Bool
$c== :: AccountLimit -> AccountLimit -> Bool
Prelude.Eq, ReadPrec [AccountLimit]
ReadPrec AccountLimit
Int -> ReadS AccountLimit
ReadS [AccountLimit]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AccountLimit]
$creadListPrec :: ReadPrec [AccountLimit]
readPrec :: ReadPrec AccountLimit
$creadPrec :: ReadPrec AccountLimit
readList :: ReadS [AccountLimit]
$creadList :: ReadS [AccountLimit]
readsPrec :: Int -> ReadS AccountLimit
$creadsPrec :: Int -> ReadS AccountLimit
Prelude.Read, Int -> AccountLimit -> ShowS
[AccountLimit] -> ShowS
AccountLimit -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AccountLimit] -> ShowS
$cshowList :: [AccountLimit] -> ShowS
show :: AccountLimit -> String
$cshow :: AccountLimit -> String
showsPrec :: Int -> AccountLimit -> ShowS
$cshowsPrec :: Int -> AccountLimit -> ShowS
Prelude.Show, forall x. Rep AccountLimit x -> AccountLimit
forall x. AccountLimit -> Rep AccountLimit x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AccountLimit x -> AccountLimit
$cfrom :: forall x. AccountLimit -> Rep AccountLimit x
Prelude.Generic)
newAccountLimit ::
AccountLimit
newAccountLimit :: AccountLimit
newAccountLimit =
AccountLimit'
{ $sel:name:AccountLimit' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing,
$sel:value:AccountLimit' :: Maybe Int
value = forall a. Maybe a
Prelude.Nothing
}
accountLimit_name :: Lens.Lens' AccountLimit (Prelude.Maybe Prelude.Text)
accountLimit_name :: Lens' AccountLimit (Maybe Text)
accountLimit_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AccountLimit' {Maybe Text
name :: Maybe Text
$sel:name:AccountLimit' :: AccountLimit -> Maybe Text
name} -> Maybe Text
name) (\s :: AccountLimit
s@AccountLimit' {} Maybe Text
a -> AccountLimit
s {$sel:name:AccountLimit' :: Maybe Text
name = Maybe Text
a} :: AccountLimit)
accountLimit_value :: Lens.Lens' AccountLimit (Prelude.Maybe Prelude.Int)
accountLimit_value :: Lens' AccountLimit (Maybe Int)
accountLimit_value = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AccountLimit' {Maybe Int
value :: Maybe Int
$sel:value:AccountLimit' :: AccountLimit -> Maybe Int
value} -> Maybe Int
value) (\s :: AccountLimit
s@AccountLimit' {} Maybe Int
a -> AccountLimit
s {$sel:value:AccountLimit' :: Maybe Int
value = Maybe Int
a} :: AccountLimit)
instance Data.FromXML AccountLimit where
parseXML :: [Node] -> Either String AccountLimit
parseXML [Node]
x =
Maybe Text -> Maybe Int -> AccountLimit
AccountLimit'
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
"Name")
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
"Value")
instance Prelude.Hashable AccountLimit where
hashWithSalt :: Int -> AccountLimit -> Int
hashWithSalt Int
_salt AccountLimit' {Maybe Int
Maybe Text
value :: Maybe Int
name :: Maybe Text
$sel:value:AccountLimit' :: AccountLimit -> Maybe Int
$sel:name:AccountLimit' :: AccountLimit -> Maybe Text
..} =
Int
_salt
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
name
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Int
value
instance Prelude.NFData AccountLimit where
rnf :: AccountLimit -> ()
rnf AccountLimit' {Maybe Int
Maybe Text
value :: Maybe Int
name :: Maybe Text
$sel:value:AccountLimit' :: AccountLimit -> Maybe Int
$sel:name:AccountLimit' :: AccountLimit -> Maybe Text
..} =
forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
name seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Int
value