{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.WAFRegional.AssociateWebACL
(
AssociateWebACL (..),
newAssociateWebACL,
associateWebACL_webACLId,
associateWebACL_resourceArn,
AssociateWebACLResponse (..),
newAssociateWebACLResponse,
associateWebACLResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.WAFRegional.Types
data AssociateWebACL = AssociateWebACL'
{
AssociateWebACL -> Text
webACLId :: Prelude.Text,
AssociateWebACL -> Text
resourceArn :: Prelude.Text
}
deriving (AssociateWebACL -> AssociateWebACL -> Bool
(AssociateWebACL -> AssociateWebACL -> Bool)
-> (AssociateWebACL -> AssociateWebACL -> Bool)
-> Eq AssociateWebACL
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AssociateWebACL -> AssociateWebACL -> Bool
$c/= :: AssociateWebACL -> AssociateWebACL -> Bool
== :: AssociateWebACL -> AssociateWebACL -> Bool
$c== :: AssociateWebACL -> AssociateWebACL -> Bool
Prelude.Eq, ReadPrec [AssociateWebACL]
ReadPrec AssociateWebACL
Int -> ReadS AssociateWebACL
ReadS [AssociateWebACL]
(Int -> ReadS AssociateWebACL)
-> ReadS [AssociateWebACL]
-> ReadPrec AssociateWebACL
-> ReadPrec [AssociateWebACL]
-> Read AssociateWebACL
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AssociateWebACL]
$creadListPrec :: ReadPrec [AssociateWebACL]
readPrec :: ReadPrec AssociateWebACL
$creadPrec :: ReadPrec AssociateWebACL
readList :: ReadS [AssociateWebACL]
$creadList :: ReadS [AssociateWebACL]
readsPrec :: Int -> ReadS AssociateWebACL
$creadsPrec :: Int -> ReadS AssociateWebACL
Prelude.Read, Int -> AssociateWebACL -> ShowS
[AssociateWebACL] -> ShowS
AssociateWebACL -> String
(Int -> AssociateWebACL -> ShowS)
-> (AssociateWebACL -> String)
-> ([AssociateWebACL] -> ShowS)
-> Show AssociateWebACL
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AssociateWebACL] -> ShowS
$cshowList :: [AssociateWebACL] -> ShowS
show :: AssociateWebACL -> String
$cshow :: AssociateWebACL -> String
showsPrec :: Int -> AssociateWebACL -> ShowS
$cshowsPrec :: Int -> AssociateWebACL -> ShowS
Prelude.Show, (forall x. AssociateWebACL -> Rep AssociateWebACL x)
-> (forall x. Rep AssociateWebACL x -> AssociateWebACL)
-> Generic AssociateWebACL
forall x. Rep AssociateWebACL x -> AssociateWebACL
forall x. AssociateWebACL -> Rep AssociateWebACL x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AssociateWebACL x -> AssociateWebACL
$cfrom :: forall x. AssociateWebACL -> Rep AssociateWebACL x
Prelude.Generic)
newAssociateWebACL ::
Prelude.Text ->
Prelude.Text ->
AssociateWebACL
newAssociateWebACL :: Text -> Text -> AssociateWebACL
newAssociateWebACL Text
pWebACLId_ Text
pResourceArn_ =
AssociateWebACL' :: Text -> Text -> AssociateWebACL
AssociateWebACL'
{ $sel:webACLId:AssociateWebACL' :: Text
webACLId = Text
pWebACLId_,
$sel:resourceArn:AssociateWebACL' :: Text
resourceArn = Text
pResourceArn_
}
associateWebACL_webACLId :: Lens.Lens' AssociateWebACL Prelude.Text
associateWebACL_webACLId :: (Text -> f Text) -> AssociateWebACL -> f AssociateWebACL
associateWebACL_webACLId = (AssociateWebACL -> Text)
-> (AssociateWebACL -> Text -> AssociateWebACL)
-> Lens AssociateWebACL AssociateWebACL Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssociateWebACL' {Text
webACLId :: Text
$sel:webACLId:AssociateWebACL' :: AssociateWebACL -> Text
webACLId} -> Text
webACLId) (\s :: AssociateWebACL
s@AssociateWebACL' {} Text
a -> AssociateWebACL
s {$sel:webACLId:AssociateWebACL' :: Text
webACLId = Text
a} :: AssociateWebACL)
associateWebACL_resourceArn :: Lens.Lens' AssociateWebACL Prelude.Text
associateWebACL_resourceArn :: (Text -> f Text) -> AssociateWebACL -> f AssociateWebACL
associateWebACL_resourceArn = (AssociateWebACL -> Text)
-> (AssociateWebACL -> Text -> AssociateWebACL)
-> Lens AssociateWebACL AssociateWebACL Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssociateWebACL' {Text
resourceArn :: Text
$sel:resourceArn:AssociateWebACL' :: AssociateWebACL -> Text
resourceArn} -> Text
resourceArn) (\s :: AssociateWebACL
s@AssociateWebACL' {} Text
a -> AssociateWebACL
s {$sel:resourceArn:AssociateWebACL' :: Text
resourceArn = Text
a} :: AssociateWebACL)
instance Core.AWSRequest AssociateWebACL where
type
AWSResponse AssociateWebACL =
AssociateWebACLResponse
request :: AssociateWebACL -> Request AssociateWebACL
request = Service -> AssociateWebACL -> Request AssociateWebACL
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy AssociateWebACL
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AssociateWebACL)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse AssociateWebACL))
-> Logger
-> Service
-> Proxy AssociateWebACL
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AssociateWebACL)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> AssociateWebACLResponse
AssociateWebACLResponse'
(Int -> AssociateWebACLResponse)
-> Either String Int -> Either String AssociateWebACLResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable AssociateWebACL
instance Prelude.NFData AssociateWebACL
instance Core.ToHeaders AssociateWebACL where
toHeaders :: AssociateWebACL -> ResponseHeaders
toHeaders =
ResponseHeaders -> AssociateWebACL -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSWAF_Regional_20161128.AssociateWebACL" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON AssociateWebACL where
toJSON :: AssociateWebACL -> Value
toJSON AssociateWebACL' {Text
resourceArn :: Text
webACLId :: Text
$sel:resourceArn:AssociateWebACL' :: AssociateWebACL -> Text
$sel:webACLId:AssociateWebACL' :: AssociateWebACL -> Text
..} =
[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
"WebACLId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
webACLId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ResourceArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
resourceArn)
]
)
instance Core.ToPath AssociateWebACL where
toPath :: AssociateWebACL -> ByteString
toPath = ByteString -> AssociateWebACL -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery AssociateWebACL where
toQuery :: AssociateWebACL -> QueryString
toQuery = QueryString -> AssociateWebACL -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data AssociateWebACLResponse = AssociateWebACLResponse'
{
AssociateWebACLResponse -> Int
httpStatus :: Prelude.Int
}
deriving (AssociateWebACLResponse -> AssociateWebACLResponse -> Bool
(AssociateWebACLResponse -> AssociateWebACLResponse -> Bool)
-> (AssociateWebACLResponse -> AssociateWebACLResponse -> Bool)
-> Eq AssociateWebACLResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AssociateWebACLResponse -> AssociateWebACLResponse -> Bool
$c/= :: AssociateWebACLResponse -> AssociateWebACLResponse -> Bool
== :: AssociateWebACLResponse -> AssociateWebACLResponse -> Bool
$c== :: AssociateWebACLResponse -> AssociateWebACLResponse -> Bool
Prelude.Eq, ReadPrec [AssociateWebACLResponse]
ReadPrec AssociateWebACLResponse
Int -> ReadS AssociateWebACLResponse
ReadS [AssociateWebACLResponse]
(Int -> ReadS AssociateWebACLResponse)
-> ReadS [AssociateWebACLResponse]
-> ReadPrec AssociateWebACLResponse
-> ReadPrec [AssociateWebACLResponse]
-> Read AssociateWebACLResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AssociateWebACLResponse]
$creadListPrec :: ReadPrec [AssociateWebACLResponse]
readPrec :: ReadPrec AssociateWebACLResponse
$creadPrec :: ReadPrec AssociateWebACLResponse
readList :: ReadS [AssociateWebACLResponse]
$creadList :: ReadS [AssociateWebACLResponse]
readsPrec :: Int -> ReadS AssociateWebACLResponse
$creadsPrec :: Int -> ReadS AssociateWebACLResponse
Prelude.Read, Int -> AssociateWebACLResponse -> ShowS
[AssociateWebACLResponse] -> ShowS
AssociateWebACLResponse -> String
(Int -> AssociateWebACLResponse -> ShowS)
-> (AssociateWebACLResponse -> String)
-> ([AssociateWebACLResponse] -> ShowS)
-> Show AssociateWebACLResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AssociateWebACLResponse] -> ShowS
$cshowList :: [AssociateWebACLResponse] -> ShowS
show :: AssociateWebACLResponse -> String
$cshow :: AssociateWebACLResponse -> String
showsPrec :: Int -> AssociateWebACLResponse -> ShowS
$cshowsPrec :: Int -> AssociateWebACLResponse -> ShowS
Prelude.Show, (forall x.
AssociateWebACLResponse -> Rep AssociateWebACLResponse x)
-> (forall x.
Rep AssociateWebACLResponse x -> AssociateWebACLResponse)
-> Generic AssociateWebACLResponse
forall x. Rep AssociateWebACLResponse x -> AssociateWebACLResponse
forall x. AssociateWebACLResponse -> Rep AssociateWebACLResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AssociateWebACLResponse x -> AssociateWebACLResponse
$cfrom :: forall x. AssociateWebACLResponse -> Rep AssociateWebACLResponse x
Prelude.Generic)
newAssociateWebACLResponse ::
Prelude.Int ->
AssociateWebACLResponse
newAssociateWebACLResponse :: Int -> AssociateWebACLResponse
newAssociateWebACLResponse Int
pHttpStatus_ =
AssociateWebACLResponse' :: Int -> AssociateWebACLResponse
AssociateWebACLResponse' {$sel:httpStatus:AssociateWebACLResponse' :: Int
httpStatus = Int
pHttpStatus_}
associateWebACLResponse_httpStatus :: Lens.Lens' AssociateWebACLResponse Prelude.Int
associateWebACLResponse_httpStatus :: (Int -> f Int)
-> AssociateWebACLResponse -> f AssociateWebACLResponse
associateWebACLResponse_httpStatus = (AssociateWebACLResponse -> Int)
-> (AssociateWebACLResponse -> Int -> AssociateWebACLResponse)
-> Lens AssociateWebACLResponse AssociateWebACLResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssociateWebACLResponse' {Int
httpStatus :: Int
$sel:httpStatus:AssociateWebACLResponse' :: AssociateWebACLResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: AssociateWebACLResponse
s@AssociateWebACLResponse' {} Int
a -> AssociateWebACLResponse
s {$sel:httpStatus:AssociateWebACLResponse' :: Int
httpStatus = Int
a} :: AssociateWebACLResponse)
instance Prelude.NFData AssociateWebACLResponse