{-# 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.WAFRegional.Types.WafAction
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
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

-- | This is __AWS WAF Classic__ documentation. For more information, see
-- <https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html AWS WAF Classic>
-- in the developer guide.
--
-- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the
-- <https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html AWS WAF Developer Guide>.
-- With the latest version, AWS WAF has a single set of endpoints for
-- regional and global use.
--
-- For the action that is associated with a rule in a @WebACL@, specifies
-- the action that you want AWS WAF to perform when a web request matches
-- all of the conditions in a rule. For the default action in a @WebACL@,
-- specifies the action that you want AWS WAF to take when a web request
-- doesn\'t match all of the conditions in any of the rules in a @WebACL@.
--
-- /See:/ 'newWafAction' smart constructor.
data WafAction = WafAction'
  { -- | Specifies how you want AWS WAF to respond to requests that match the
    -- settings in a @Rule@. Valid settings include the following:
    --
    -- -   @ALLOW@: AWS WAF allows requests
    --
    -- -   @BLOCK@: AWS WAF blocks requests
    --
    -- -   @COUNT@: AWS WAF increments a counter of the requests that match all
    --     of the conditions in the rule. AWS WAF then continues to inspect the
    --     web request based on the remaining rules in the web ACL. You can\'t
    --     specify @COUNT@ for the default action for a @WebACL@.
    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)

-- |
-- Create a value of 'WafAction' 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:
--
-- 'type'', 'wafAction_type' - Specifies how you want AWS WAF to respond to requests that match the
-- settings in a @Rule@. Valid settings include the following:
--
-- -   @ALLOW@: AWS WAF allows requests
--
-- -   @BLOCK@: AWS WAF blocks requests
--
-- -   @COUNT@: AWS WAF increments a counter of the requests that match all
--     of the conditions in the rule. AWS WAF then continues to inspect the
--     web request based on the remaining rules in the web ACL. You can\'t
--     specify @COUNT@ for the default action for a @WebACL@.
newWafAction ::
  -- | 'type''
  WafActionType ->
  WafAction
newWafAction :: WafActionType -> WafAction
newWafAction WafActionType
pType_ = WafAction' :: WafActionType -> WafAction
WafAction' {$sel:type':WafAction' :: WafActionType
type' = WafActionType
pType_}

-- | Specifies how you want AWS WAF to respond to requests that match the
-- settings in a @Rule@. Valid settings include the following:
--
-- -   @ALLOW@: AWS WAF allows requests
--
-- -   @BLOCK@: AWS WAF blocks requests
--
-- -   @COUNT@: AWS WAF increments a counter of the requests that match all
--     of the conditions in the rule. AWS WAF then continues to inspect the
--     web request based on the remaining rules in the web ACL. You can\'t
--     specify @COUNT@ for the default action for a @WebACL@.
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')]
      )