{-# 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.FraudDetector.DeleteRule
(
DeleteRule (..),
newDeleteRule,
deleteRule_rule,
DeleteRuleResponse (..),
newDeleteRuleResponse,
deleteRuleResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.FraudDetector.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteRule = DeleteRule'
{ DeleteRule -> Rule
rule :: Rule
}
deriving (DeleteRule -> DeleteRule -> Bool
(DeleteRule -> DeleteRule -> Bool)
-> (DeleteRule -> DeleteRule -> Bool) -> Eq DeleteRule
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRule -> DeleteRule -> Bool
$c/= :: DeleteRule -> DeleteRule -> Bool
== :: DeleteRule -> DeleteRule -> Bool
$c== :: DeleteRule -> DeleteRule -> Bool
Prelude.Eq, ReadPrec [DeleteRule]
ReadPrec DeleteRule
Int -> ReadS DeleteRule
ReadS [DeleteRule]
(Int -> ReadS DeleteRule)
-> ReadS [DeleteRule]
-> ReadPrec DeleteRule
-> ReadPrec [DeleteRule]
-> Read DeleteRule
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRule]
$creadListPrec :: ReadPrec [DeleteRule]
readPrec :: ReadPrec DeleteRule
$creadPrec :: ReadPrec DeleteRule
readList :: ReadS [DeleteRule]
$creadList :: ReadS [DeleteRule]
readsPrec :: Int -> ReadS DeleteRule
$creadsPrec :: Int -> ReadS DeleteRule
Prelude.Read, Int -> DeleteRule -> ShowS
[DeleteRule] -> ShowS
DeleteRule -> String
(Int -> DeleteRule -> ShowS)
-> (DeleteRule -> String)
-> ([DeleteRule] -> ShowS)
-> Show DeleteRule
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRule] -> ShowS
$cshowList :: [DeleteRule] -> ShowS
show :: DeleteRule -> String
$cshow :: DeleteRule -> String
showsPrec :: Int -> DeleteRule -> ShowS
$cshowsPrec :: Int -> DeleteRule -> ShowS
Prelude.Show, (forall x. DeleteRule -> Rep DeleteRule x)
-> (forall x. Rep DeleteRule x -> DeleteRule) -> Generic DeleteRule
forall x. Rep DeleteRule x -> DeleteRule
forall x. DeleteRule -> Rep DeleteRule x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRule x -> DeleteRule
$cfrom :: forall x. DeleteRule -> Rep DeleteRule x
Prelude.Generic)
newDeleteRule ::
Rule ->
DeleteRule
newDeleteRule :: Rule -> DeleteRule
newDeleteRule Rule
pRule_ = DeleteRule' :: Rule -> DeleteRule
DeleteRule' {$sel:rule:DeleteRule' :: Rule
rule = Rule
pRule_}
deleteRule_rule :: Lens.Lens' DeleteRule Rule
deleteRule_rule :: (Rule -> f Rule) -> DeleteRule -> f DeleteRule
deleteRule_rule = (DeleteRule -> Rule)
-> (DeleteRule -> Rule -> DeleteRule)
-> Lens DeleteRule DeleteRule Rule Rule
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRule' {Rule
rule :: Rule
$sel:rule:DeleteRule' :: DeleteRule -> Rule
rule} -> Rule
rule) (\s :: DeleteRule
s@DeleteRule' {} Rule
a -> DeleteRule
s {$sel:rule:DeleteRule' :: Rule
rule = Rule
a} :: DeleteRule)
instance Core.AWSRequest DeleteRule where
type AWSResponse DeleteRule = DeleteRuleResponse
request :: DeleteRule -> Request DeleteRule
request = Service -> DeleteRule -> Request DeleteRule
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteRule
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRule)))
response =
(Int
-> ResponseHeaders -> () -> Either String (AWSResponse DeleteRule))
-> Logger
-> Service
-> Proxy DeleteRule
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRule)))
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 -> DeleteRuleResponse
DeleteRuleResponse'
(Int -> DeleteRuleResponse)
-> Either String Int -> Either String DeleteRuleResponse
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 DeleteRule
instance Prelude.NFData DeleteRule
instance Core.ToHeaders DeleteRule where
toHeaders :: DeleteRule -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteRule -> 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
"AWSHawksNestServiceFacade.DeleteRule" ::
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 DeleteRule where
toJSON :: DeleteRule -> Value
toJSON DeleteRule' {Rule
rule :: Rule
$sel:rule:DeleteRule' :: DeleteRule -> Rule
..} =
[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
"rule" Text -> Rule -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Rule
rule)]
)
instance Core.ToPath DeleteRule where
toPath :: DeleteRule -> ByteString
toPath = ByteString -> DeleteRule -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteRule where
toQuery :: DeleteRule -> QueryString
toQuery = QueryString -> DeleteRule -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteRuleResponse = DeleteRuleResponse'
{
DeleteRuleResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteRuleResponse -> DeleteRuleResponse -> Bool
(DeleteRuleResponse -> DeleteRuleResponse -> Bool)
-> (DeleteRuleResponse -> DeleteRuleResponse -> Bool)
-> Eq DeleteRuleResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRuleResponse -> DeleteRuleResponse -> Bool
$c/= :: DeleteRuleResponse -> DeleteRuleResponse -> Bool
== :: DeleteRuleResponse -> DeleteRuleResponse -> Bool
$c== :: DeleteRuleResponse -> DeleteRuleResponse -> Bool
Prelude.Eq, ReadPrec [DeleteRuleResponse]
ReadPrec DeleteRuleResponse
Int -> ReadS DeleteRuleResponse
ReadS [DeleteRuleResponse]
(Int -> ReadS DeleteRuleResponse)
-> ReadS [DeleteRuleResponse]
-> ReadPrec DeleteRuleResponse
-> ReadPrec [DeleteRuleResponse]
-> Read DeleteRuleResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRuleResponse]
$creadListPrec :: ReadPrec [DeleteRuleResponse]
readPrec :: ReadPrec DeleteRuleResponse
$creadPrec :: ReadPrec DeleteRuleResponse
readList :: ReadS [DeleteRuleResponse]
$creadList :: ReadS [DeleteRuleResponse]
readsPrec :: Int -> ReadS DeleteRuleResponse
$creadsPrec :: Int -> ReadS DeleteRuleResponse
Prelude.Read, Int -> DeleteRuleResponse -> ShowS
[DeleteRuleResponse] -> ShowS
DeleteRuleResponse -> String
(Int -> DeleteRuleResponse -> ShowS)
-> (DeleteRuleResponse -> String)
-> ([DeleteRuleResponse] -> ShowS)
-> Show DeleteRuleResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRuleResponse] -> ShowS
$cshowList :: [DeleteRuleResponse] -> ShowS
show :: DeleteRuleResponse -> String
$cshow :: DeleteRuleResponse -> String
showsPrec :: Int -> DeleteRuleResponse -> ShowS
$cshowsPrec :: Int -> DeleteRuleResponse -> ShowS
Prelude.Show, (forall x. DeleteRuleResponse -> Rep DeleteRuleResponse x)
-> (forall x. Rep DeleteRuleResponse x -> DeleteRuleResponse)
-> Generic DeleteRuleResponse
forall x. Rep DeleteRuleResponse x -> DeleteRuleResponse
forall x. DeleteRuleResponse -> Rep DeleteRuleResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRuleResponse x -> DeleteRuleResponse
$cfrom :: forall x. DeleteRuleResponse -> Rep DeleteRuleResponse x
Prelude.Generic)
newDeleteRuleResponse ::
Prelude.Int ->
DeleteRuleResponse
newDeleteRuleResponse :: Int -> DeleteRuleResponse
newDeleteRuleResponse Int
pHttpStatus_ =
DeleteRuleResponse' :: Int -> DeleteRuleResponse
DeleteRuleResponse' {$sel:httpStatus:DeleteRuleResponse' :: Int
httpStatus = Int
pHttpStatus_}
deleteRuleResponse_httpStatus :: Lens.Lens' DeleteRuleResponse Prelude.Int
deleteRuleResponse_httpStatus :: (Int -> f Int) -> DeleteRuleResponse -> f DeleteRuleResponse
deleteRuleResponse_httpStatus = (DeleteRuleResponse -> Int)
-> (DeleteRuleResponse -> Int -> DeleteRuleResponse)
-> Lens DeleteRuleResponse DeleteRuleResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRuleResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteRuleResponse' :: DeleteRuleResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteRuleResponse
s@DeleteRuleResponse' {} Int
a -> DeleteRuleResponse
s {$sel:httpStatus:DeleteRuleResponse' :: Int
httpStatus = Int
a} :: DeleteRuleResponse)
instance Prelude.NFData DeleteRuleResponse