{-# 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.NetworkFirewall.Types.RuleDefinition where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.NetworkFirewall.Types.MatchAttributes
import qualified Amazonka.Prelude as Prelude
data RuleDefinition = RuleDefinition'
{
RuleDefinition -> MatchAttributes
matchAttributes :: MatchAttributes,
RuleDefinition -> [Text]
actions :: [Prelude.Text]
}
deriving (RuleDefinition -> RuleDefinition -> Bool
(RuleDefinition -> RuleDefinition -> Bool)
-> (RuleDefinition -> RuleDefinition -> Bool) -> Eq RuleDefinition
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RuleDefinition -> RuleDefinition -> Bool
$c/= :: RuleDefinition -> RuleDefinition -> Bool
== :: RuleDefinition -> RuleDefinition -> Bool
$c== :: RuleDefinition -> RuleDefinition -> Bool
Prelude.Eq, ReadPrec [RuleDefinition]
ReadPrec RuleDefinition
Int -> ReadS RuleDefinition
ReadS [RuleDefinition]
(Int -> ReadS RuleDefinition)
-> ReadS [RuleDefinition]
-> ReadPrec RuleDefinition
-> ReadPrec [RuleDefinition]
-> Read RuleDefinition
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RuleDefinition]
$creadListPrec :: ReadPrec [RuleDefinition]
readPrec :: ReadPrec RuleDefinition
$creadPrec :: ReadPrec RuleDefinition
readList :: ReadS [RuleDefinition]
$creadList :: ReadS [RuleDefinition]
readsPrec :: Int -> ReadS RuleDefinition
$creadsPrec :: Int -> ReadS RuleDefinition
Prelude.Read, Int -> RuleDefinition -> ShowS
[RuleDefinition] -> ShowS
RuleDefinition -> String
(Int -> RuleDefinition -> ShowS)
-> (RuleDefinition -> String)
-> ([RuleDefinition] -> ShowS)
-> Show RuleDefinition
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RuleDefinition] -> ShowS
$cshowList :: [RuleDefinition] -> ShowS
show :: RuleDefinition -> String
$cshow :: RuleDefinition -> String
showsPrec :: Int -> RuleDefinition -> ShowS
$cshowsPrec :: Int -> RuleDefinition -> ShowS
Prelude.Show, (forall x. RuleDefinition -> Rep RuleDefinition x)
-> (forall x. Rep RuleDefinition x -> RuleDefinition)
-> Generic RuleDefinition
forall x. Rep RuleDefinition x -> RuleDefinition
forall x. RuleDefinition -> Rep RuleDefinition x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep RuleDefinition x -> RuleDefinition
$cfrom :: forall x. RuleDefinition -> Rep RuleDefinition x
Prelude.Generic)
newRuleDefinition ::
MatchAttributes ->
RuleDefinition
newRuleDefinition :: MatchAttributes -> RuleDefinition
newRuleDefinition MatchAttributes
pMatchAttributes_ =
RuleDefinition' :: MatchAttributes -> [Text] -> RuleDefinition
RuleDefinition'
{ $sel:matchAttributes:RuleDefinition' :: MatchAttributes
matchAttributes =
MatchAttributes
pMatchAttributes_,
$sel:actions:RuleDefinition' :: [Text]
actions = [Text]
forall a. Monoid a => a
Prelude.mempty
}
ruleDefinition_matchAttributes :: Lens.Lens' RuleDefinition MatchAttributes
ruleDefinition_matchAttributes :: (MatchAttributes -> f MatchAttributes)
-> RuleDefinition -> f RuleDefinition
ruleDefinition_matchAttributes = (RuleDefinition -> MatchAttributes)
-> (RuleDefinition -> MatchAttributes -> RuleDefinition)
-> Lens
RuleDefinition RuleDefinition MatchAttributes MatchAttributes
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RuleDefinition' {MatchAttributes
matchAttributes :: MatchAttributes
$sel:matchAttributes:RuleDefinition' :: RuleDefinition -> MatchAttributes
matchAttributes} -> MatchAttributes
matchAttributes) (\s :: RuleDefinition
s@RuleDefinition' {} MatchAttributes
a -> RuleDefinition
s {$sel:matchAttributes:RuleDefinition' :: MatchAttributes
matchAttributes = MatchAttributes
a} :: RuleDefinition)
ruleDefinition_actions :: Lens.Lens' RuleDefinition [Prelude.Text]
ruleDefinition_actions :: ([Text] -> f [Text]) -> RuleDefinition -> f RuleDefinition
ruleDefinition_actions = (RuleDefinition -> [Text])
-> (RuleDefinition -> [Text] -> RuleDefinition)
-> Lens RuleDefinition RuleDefinition [Text] [Text]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RuleDefinition' {[Text]
actions :: [Text]
$sel:actions:RuleDefinition' :: RuleDefinition -> [Text]
actions} -> [Text]
actions) (\s :: RuleDefinition
s@RuleDefinition' {} [Text]
a -> RuleDefinition
s {$sel:actions:RuleDefinition' :: [Text]
actions = [Text]
a} :: RuleDefinition) (([Text] -> f [Text]) -> RuleDefinition -> f RuleDefinition)
-> (([Text] -> f [Text]) -> [Text] -> f [Text])
-> ([Text] -> f [Text])
-> RuleDefinition
-> f RuleDefinition
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Text] -> f [Text]) -> [Text] -> f [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Core.FromJSON RuleDefinition where
parseJSON :: Value -> Parser RuleDefinition
parseJSON =
String
-> (Object -> Parser RuleDefinition)
-> Value
-> Parser RuleDefinition
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"RuleDefinition"
( \Object
x ->
MatchAttributes -> [Text] -> RuleDefinition
RuleDefinition'
(MatchAttributes -> [Text] -> RuleDefinition)
-> Parser MatchAttributes -> Parser ([Text] -> RuleDefinition)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser MatchAttributes
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"MatchAttributes")
Parser ([Text] -> RuleDefinition)
-> Parser [Text] -> Parser RuleDefinition
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
"Actions" Parser (Maybe [Text]) -> [Text] -> Parser [Text]
forall a. Parser (Maybe a) -> a -> Parser a
Core..!= [Text]
forall a. Monoid a => a
Prelude.mempty)
)
instance Prelude.Hashable RuleDefinition
instance Prelude.NFData RuleDefinition
instance Core.ToJSON RuleDefinition where
toJSON :: RuleDefinition -> Value
toJSON RuleDefinition' {[Text]
MatchAttributes
actions :: [Text]
matchAttributes :: MatchAttributes
$sel:actions:RuleDefinition' :: RuleDefinition -> [Text]
$sel:matchAttributes:RuleDefinition' :: RuleDefinition -> MatchAttributes
..} =
[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
"MatchAttributes" Text -> MatchAttributes -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= MatchAttributes
matchAttributes),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Actions" Text -> [Text] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= [Text]
actions)
]
)