{-# 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.OpsWorksCM.Types.AccountAttribute where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data AccountAttribute = AccountAttribute'
{
AccountAttribute -> Maybe Int
used :: Prelude.Maybe Prelude.Int,
AccountAttribute -> Maybe Int
maximum :: Prelude.Maybe Prelude.Int,
AccountAttribute -> Maybe Text
name :: Prelude.Maybe Prelude.Text
}
deriving (AccountAttribute -> AccountAttribute -> Bool
(AccountAttribute -> AccountAttribute -> Bool)
-> (AccountAttribute -> AccountAttribute -> Bool)
-> Eq AccountAttribute
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AccountAttribute -> AccountAttribute -> Bool
$c/= :: AccountAttribute -> AccountAttribute -> Bool
== :: AccountAttribute -> AccountAttribute -> Bool
$c== :: AccountAttribute -> AccountAttribute -> Bool
Prelude.Eq, ReadPrec [AccountAttribute]
ReadPrec AccountAttribute
Int -> ReadS AccountAttribute
ReadS [AccountAttribute]
(Int -> ReadS AccountAttribute)
-> ReadS [AccountAttribute]
-> ReadPrec AccountAttribute
-> ReadPrec [AccountAttribute]
-> Read AccountAttribute
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AccountAttribute]
$creadListPrec :: ReadPrec [AccountAttribute]
readPrec :: ReadPrec AccountAttribute
$creadPrec :: ReadPrec AccountAttribute
readList :: ReadS [AccountAttribute]
$creadList :: ReadS [AccountAttribute]
readsPrec :: Int -> ReadS AccountAttribute
$creadsPrec :: Int -> ReadS AccountAttribute
Prelude.Read, Int -> AccountAttribute -> ShowS
[AccountAttribute] -> ShowS
AccountAttribute -> String
(Int -> AccountAttribute -> ShowS)
-> (AccountAttribute -> String)
-> ([AccountAttribute] -> ShowS)
-> Show AccountAttribute
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AccountAttribute] -> ShowS
$cshowList :: [AccountAttribute] -> ShowS
show :: AccountAttribute -> String
$cshow :: AccountAttribute -> String
showsPrec :: Int -> AccountAttribute -> ShowS
$cshowsPrec :: Int -> AccountAttribute -> ShowS
Prelude.Show, (forall x. AccountAttribute -> Rep AccountAttribute x)
-> (forall x. Rep AccountAttribute x -> AccountAttribute)
-> Generic AccountAttribute
forall x. Rep AccountAttribute x -> AccountAttribute
forall x. AccountAttribute -> Rep AccountAttribute x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AccountAttribute x -> AccountAttribute
$cfrom :: forall x. AccountAttribute -> Rep AccountAttribute x
Prelude.Generic)
newAccountAttribute ::
AccountAttribute
newAccountAttribute :: AccountAttribute
newAccountAttribute =
AccountAttribute' :: Maybe Int -> Maybe Int -> Maybe Text -> AccountAttribute
AccountAttribute'
{ $sel:used:AccountAttribute' :: Maybe Int
used = Maybe Int
forall a. Maybe a
Prelude.Nothing,
$sel:maximum:AccountAttribute' :: Maybe Int
maximum = Maybe Int
forall a. Maybe a
Prelude.Nothing,
$sel:name:AccountAttribute' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing
}
accountAttribute_used :: Lens.Lens' AccountAttribute (Prelude.Maybe Prelude.Int)
accountAttribute_used :: (Maybe Int -> f (Maybe Int))
-> AccountAttribute -> f AccountAttribute
accountAttribute_used = (AccountAttribute -> Maybe Int)
-> (AccountAttribute -> Maybe Int -> AccountAttribute)
-> Lens AccountAttribute AccountAttribute (Maybe Int) (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AccountAttribute' {Maybe Int
used :: Maybe Int
$sel:used:AccountAttribute' :: AccountAttribute -> Maybe Int
used} -> Maybe Int
used) (\s :: AccountAttribute
s@AccountAttribute' {} Maybe Int
a -> AccountAttribute
s {$sel:used:AccountAttribute' :: Maybe Int
used = Maybe Int
a} :: AccountAttribute)
accountAttribute_maximum :: Lens.Lens' AccountAttribute (Prelude.Maybe Prelude.Int)
accountAttribute_maximum :: (Maybe Int -> f (Maybe Int))
-> AccountAttribute -> f AccountAttribute
accountAttribute_maximum = (AccountAttribute -> Maybe Int)
-> (AccountAttribute -> Maybe Int -> AccountAttribute)
-> Lens AccountAttribute AccountAttribute (Maybe Int) (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AccountAttribute' {Maybe Int
maximum :: Maybe Int
$sel:maximum:AccountAttribute' :: AccountAttribute -> Maybe Int
maximum} -> Maybe Int
maximum) (\s :: AccountAttribute
s@AccountAttribute' {} Maybe Int
a -> AccountAttribute
s {$sel:maximum:AccountAttribute' :: Maybe Int
maximum = Maybe Int
a} :: AccountAttribute)
accountAttribute_name :: Lens.Lens' AccountAttribute (Prelude.Maybe Prelude.Text)
accountAttribute_name :: (Maybe Text -> f (Maybe Text))
-> AccountAttribute -> f AccountAttribute
accountAttribute_name = (AccountAttribute -> Maybe Text)
-> (AccountAttribute -> Maybe Text -> AccountAttribute)
-> Lens AccountAttribute AccountAttribute (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AccountAttribute' {Maybe Text
name :: Maybe Text
$sel:name:AccountAttribute' :: AccountAttribute -> Maybe Text
name} -> Maybe Text
name) (\s :: AccountAttribute
s@AccountAttribute' {} Maybe Text
a -> AccountAttribute
s {$sel:name:AccountAttribute' :: Maybe Text
name = Maybe Text
a} :: AccountAttribute)
instance Core.FromJSON AccountAttribute where
parseJSON :: Value -> Parser AccountAttribute
parseJSON =
String
-> (Object -> Parser AccountAttribute)
-> Value
-> Parser AccountAttribute
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"AccountAttribute"
( \Object
x ->
Maybe Int -> Maybe Int -> Maybe Text -> AccountAttribute
AccountAttribute'
(Maybe Int -> Maybe Int -> Maybe Text -> AccountAttribute)
-> Parser (Maybe Int)
-> Parser (Maybe Int -> Maybe Text -> AccountAttribute)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Int)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"Used")
Parser (Maybe Int -> Maybe Text -> AccountAttribute)
-> Parser (Maybe Int) -> Parser (Maybe Text -> AccountAttribute)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Int)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"Maximum")
Parser (Maybe Text -> AccountAttribute)
-> Parser (Maybe Text) -> Parser AccountAttribute
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"Name")
)
instance Prelude.Hashable AccountAttribute
instance Prelude.NFData AccountAttribute