{-# 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.WAFRegional.Types.WafAction where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import Amazonka.WAFRegional.Types.WafActionType
data WafAction = WafAction'
{
WafAction -> WafActionType
type' :: WafActionType
}
deriving (WafAction -> WafAction -> Bool
(WafAction -> WafAction -> Bool)
-> (WafAction -> WafAction -> Bool) -> Eq WafAction
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: WafAction -> WafAction -> Bool
$c/= :: WafAction -> WafAction -> Bool
== :: WafAction -> WafAction -> Bool
$c== :: WafAction -> WafAction -> Bool
Prelude.Eq, ReadPrec [WafAction]
ReadPrec WafAction
Int -> ReadS WafAction
ReadS [WafAction]
(Int -> ReadS WafAction)
-> ReadS [WafAction]
-> ReadPrec WafAction
-> ReadPrec [WafAction]
-> Read WafAction
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [WafAction]
$creadListPrec :: ReadPrec [WafAction]
readPrec :: ReadPrec WafAction
$creadPrec :: ReadPrec WafAction
readList :: ReadS [WafAction]
$creadList :: ReadS [WafAction]
readsPrec :: Int -> ReadS WafAction
$creadsPrec :: Int -> ReadS WafAction
Prelude.Read, Int -> WafAction -> ShowS
[WafAction] -> ShowS
WafAction -> String
(Int -> WafAction -> ShowS)
-> (WafAction -> String)
-> ([WafAction] -> ShowS)
-> Show WafAction
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [WafAction] -> ShowS
$cshowList :: [WafAction] -> ShowS
show :: WafAction -> String
$cshow :: WafAction -> String
showsPrec :: Int -> WafAction -> ShowS
$cshowsPrec :: Int -> WafAction -> ShowS
Prelude.Show, (forall x. WafAction -> Rep WafAction x)
-> (forall x. Rep WafAction x -> WafAction) -> Generic WafAction
forall x. Rep WafAction x -> WafAction
forall x. WafAction -> Rep WafAction x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep WafAction x -> WafAction
$cfrom :: forall x. WafAction -> Rep WafAction x
Prelude.Generic)
newWafAction ::
WafActionType ->
WafAction
newWafAction :: WafActionType -> WafAction
newWafAction WafActionType
pType_ = WafAction' :: WafActionType -> WafAction
WafAction' {$sel:type':WafAction' :: WafActionType
type' = WafActionType
pType_}
wafAction_type :: Lens.Lens' WafAction WafActionType
wafAction_type :: (WafActionType -> f WafActionType) -> WafAction -> f WafAction
wafAction_type = (WafAction -> WafActionType)
-> (WafAction -> WafActionType -> WafAction)
-> Lens WafAction WafAction WafActionType WafActionType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\WafAction' {WafActionType
type' :: WafActionType
$sel:type':WafAction' :: WafAction -> WafActionType
type'} -> WafActionType
type') (\s :: WafAction
s@WafAction' {} WafActionType
a -> WafAction
s {$sel:type':WafAction' :: WafActionType
type' = WafActionType
a} :: WafAction)
instance Core.FromJSON WafAction where
parseJSON :: Value -> Parser WafAction
parseJSON =
String -> (Object -> Parser WafAction) -> Value -> Parser WafAction
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"WafAction"
(\Object
x -> WafActionType -> WafAction
WafAction' (WafActionType -> WafAction)
-> Parser WafActionType -> Parser WafAction
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser WafActionType
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"Type"))
instance Prelude.Hashable WafAction
instance Prelude.NFData WafAction
instance Core.ToJSON WafAction where
toJSON :: WafAction -> Value
toJSON WafAction' {WafActionType
type' :: WafActionType
$sel:type':WafAction' :: WafAction -> WafActionType
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Type" Text -> WafActionType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= WafActionType
type')]
)