{-# 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.IoT.DeleteAuditSuppression
(
DeleteAuditSuppression (..),
newDeleteAuditSuppression,
deleteAuditSuppression_checkName,
deleteAuditSuppression_resourceIdentifier,
DeleteAuditSuppressionResponse (..),
newDeleteAuditSuppressionResponse,
deleteAuditSuppressionResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT.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 DeleteAuditSuppression = DeleteAuditSuppression'
{ DeleteAuditSuppression -> Text
checkName :: Prelude.Text,
DeleteAuditSuppression -> ResourceIdentifier
resourceIdentifier :: ResourceIdentifier
}
deriving (DeleteAuditSuppression -> DeleteAuditSuppression -> Bool
(DeleteAuditSuppression -> DeleteAuditSuppression -> Bool)
-> (DeleteAuditSuppression -> DeleteAuditSuppression -> Bool)
-> Eq DeleteAuditSuppression
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAuditSuppression -> DeleteAuditSuppression -> Bool
$c/= :: DeleteAuditSuppression -> DeleteAuditSuppression -> Bool
== :: DeleteAuditSuppression -> DeleteAuditSuppression -> Bool
$c== :: DeleteAuditSuppression -> DeleteAuditSuppression -> Bool
Prelude.Eq, ReadPrec [DeleteAuditSuppression]
ReadPrec DeleteAuditSuppression
Int -> ReadS DeleteAuditSuppression
ReadS [DeleteAuditSuppression]
(Int -> ReadS DeleteAuditSuppression)
-> ReadS [DeleteAuditSuppression]
-> ReadPrec DeleteAuditSuppression
-> ReadPrec [DeleteAuditSuppression]
-> Read DeleteAuditSuppression
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAuditSuppression]
$creadListPrec :: ReadPrec [DeleteAuditSuppression]
readPrec :: ReadPrec DeleteAuditSuppression
$creadPrec :: ReadPrec DeleteAuditSuppression
readList :: ReadS [DeleteAuditSuppression]
$creadList :: ReadS [DeleteAuditSuppression]
readsPrec :: Int -> ReadS DeleteAuditSuppression
$creadsPrec :: Int -> ReadS DeleteAuditSuppression
Prelude.Read, Int -> DeleteAuditSuppression -> ShowS
[DeleteAuditSuppression] -> ShowS
DeleteAuditSuppression -> String
(Int -> DeleteAuditSuppression -> ShowS)
-> (DeleteAuditSuppression -> String)
-> ([DeleteAuditSuppression] -> ShowS)
-> Show DeleteAuditSuppression
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAuditSuppression] -> ShowS
$cshowList :: [DeleteAuditSuppression] -> ShowS
show :: DeleteAuditSuppression -> String
$cshow :: DeleteAuditSuppression -> String
showsPrec :: Int -> DeleteAuditSuppression -> ShowS
$cshowsPrec :: Int -> DeleteAuditSuppression -> ShowS
Prelude.Show, (forall x. DeleteAuditSuppression -> Rep DeleteAuditSuppression x)
-> (forall x.
Rep DeleteAuditSuppression x -> DeleteAuditSuppression)
-> Generic DeleteAuditSuppression
forall x. Rep DeleteAuditSuppression x -> DeleteAuditSuppression
forall x. DeleteAuditSuppression -> Rep DeleteAuditSuppression x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAuditSuppression x -> DeleteAuditSuppression
$cfrom :: forall x. DeleteAuditSuppression -> Rep DeleteAuditSuppression x
Prelude.Generic)
newDeleteAuditSuppression ::
Prelude.Text ->
ResourceIdentifier ->
DeleteAuditSuppression
newDeleteAuditSuppression :: Text -> ResourceIdentifier -> DeleteAuditSuppression
newDeleteAuditSuppression
Text
pCheckName_
ResourceIdentifier
pResourceIdentifier_ =
DeleteAuditSuppression' :: Text -> ResourceIdentifier -> DeleteAuditSuppression
DeleteAuditSuppression'
{ $sel:checkName:DeleteAuditSuppression' :: Text
checkName = Text
pCheckName_,
$sel:resourceIdentifier:DeleteAuditSuppression' :: ResourceIdentifier
resourceIdentifier = ResourceIdentifier
pResourceIdentifier_
}
deleteAuditSuppression_checkName :: Lens.Lens' DeleteAuditSuppression Prelude.Text
deleteAuditSuppression_checkName :: (Text -> f Text)
-> DeleteAuditSuppression -> f DeleteAuditSuppression
deleteAuditSuppression_checkName = (DeleteAuditSuppression -> Text)
-> (DeleteAuditSuppression -> Text -> DeleteAuditSuppression)
-> Lens DeleteAuditSuppression DeleteAuditSuppression Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuditSuppression' {Text
checkName :: Text
$sel:checkName:DeleteAuditSuppression' :: DeleteAuditSuppression -> Text
checkName} -> Text
checkName) (\s :: DeleteAuditSuppression
s@DeleteAuditSuppression' {} Text
a -> DeleteAuditSuppression
s {$sel:checkName:DeleteAuditSuppression' :: Text
checkName = Text
a} :: DeleteAuditSuppression)
deleteAuditSuppression_resourceIdentifier :: Lens.Lens' DeleteAuditSuppression ResourceIdentifier
deleteAuditSuppression_resourceIdentifier :: (ResourceIdentifier -> f ResourceIdentifier)
-> DeleteAuditSuppression -> f DeleteAuditSuppression
deleteAuditSuppression_resourceIdentifier = (DeleteAuditSuppression -> ResourceIdentifier)
-> (DeleteAuditSuppression
-> ResourceIdentifier -> DeleteAuditSuppression)
-> Lens
DeleteAuditSuppression
DeleteAuditSuppression
ResourceIdentifier
ResourceIdentifier
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuditSuppression' {ResourceIdentifier
resourceIdentifier :: ResourceIdentifier
$sel:resourceIdentifier:DeleteAuditSuppression' :: DeleteAuditSuppression -> ResourceIdentifier
resourceIdentifier} -> ResourceIdentifier
resourceIdentifier) (\s :: DeleteAuditSuppression
s@DeleteAuditSuppression' {} ResourceIdentifier
a -> DeleteAuditSuppression
s {$sel:resourceIdentifier:DeleteAuditSuppression' :: ResourceIdentifier
resourceIdentifier = ResourceIdentifier
a} :: DeleteAuditSuppression)
instance Core.AWSRequest DeleteAuditSuppression where
type
AWSResponse DeleteAuditSuppression =
DeleteAuditSuppressionResponse
request :: DeleteAuditSuppression -> Request DeleteAuditSuppression
request = Service -> DeleteAuditSuppression -> Request DeleteAuditSuppression
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteAuditSuppression
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAuditSuppression)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteAuditSuppression))
-> Logger
-> Service
-> Proxy DeleteAuditSuppression
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAuditSuppression)))
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 -> DeleteAuditSuppressionResponse
DeleteAuditSuppressionResponse'
(Int -> DeleteAuditSuppressionResponse)
-> Either String Int
-> Either String DeleteAuditSuppressionResponse
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 DeleteAuditSuppression
instance Prelude.NFData DeleteAuditSuppression
instance Core.ToHeaders DeleteAuditSuppression where
toHeaders :: DeleteAuditSuppression -> ResponseHeaders
toHeaders = ResponseHeaders -> DeleteAuditSuppression -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToJSON DeleteAuditSuppression where
toJSON :: DeleteAuditSuppression -> Value
toJSON DeleteAuditSuppression' {Text
ResourceIdentifier
resourceIdentifier :: ResourceIdentifier
checkName :: Text
$sel:resourceIdentifier:DeleteAuditSuppression' :: DeleteAuditSuppression -> ResourceIdentifier
$sel:checkName:DeleteAuditSuppression' :: DeleteAuditSuppression -> 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
"checkName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
checkName),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"resourceIdentifier" Text -> ResourceIdentifier -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= ResourceIdentifier
resourceIdentifier)
]
)
instance Core.ToPath DeleteAuditSuppression where
toPath :: DeleteAuditSuppression -> ByteString
toPath = ByteString -> DeleteAuditSuppression -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/audit/suppressions/delete"
instance Core.ToQuery DeleteAuditSuppression where
toQuery :: DeleteAuditSuppression -> QueryString
toQuery = QueryString -> DeleteAuditSuppression -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteAuditSuppressionResponse = DeleteAuditSuppressionResponse'
{
DeleteAuditSuppressionResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool
(DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool)
-> (DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool)
-> Eq DeleteAuditSuppressionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool
$c/= :: DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool
== :: DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool
$c== :: DeleteAuditSuppressionResponse
-> DeleteAuditSuppressionResponse -> Bool
Prelude.Eq, ReadPrec [DeleteAuditSuppressionResponse]
ReadPrec DeleteAuditSuppressionResponse
Int -> ReadS DeleteAuditSuppressionResponse
ReadS [DeleteAuditSuppressionResponse]
(Int -> ReadS DeleteAuditSuppressionResponse)
-> ReadS [DeleteAuditSuppressionResponse]
-> ReadPrec DeleteAuditSuppressionResponse
-> ReadPrec [DeleteAuditSuppressionResponse]
-> Read DeleteAuditSuppressionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAuditSuppressionResponse]
$creadListPrec :: ReadPrec [DeleteAuditSuppressionResponse]
readPrec :: ReadPrec DeleteAuditSuppressionResponse
$creadPrec :: ReadPrec DeleteAuditSuppressionResponse
readList :: ReadS [DeleteAuditSuppressionResponse]
$creadList :: ReadS [DeleteAuditSuppressionResponse]
readsPrec :: Int -> ReadS DeleteAuditSuppressionResponse
$creadsPrec :: Int -> ReadS DeleteAuditSuppressionResponse
Prelude.Read, Int -> DeleteAuditSuppressionResponse -> ShowS
[DeleteAuditSuppressionResponse] -> ShowS
DeleteAuditSuppressionResponse -> String
(Int -> DeleteAuditSuppressionResponse -> ShowS)
-> (DeleteAuditSuppressionResponse -> String)
-> ([DeleteAuditSuppressionResponse] -> ShowS)
-> Show DeleteAuditSuppressionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAuditSuppressionResponse] -> ShowS
$cshowList :: [DeleteAuditSuppressionResponse] -> ShowS
show :: DeleteAuditSuppressionResponse -> String
$cshow :: DeleteAuditSuppressionResponse -> String
showsPrec :: Int -> DeleteAuditSuppressionResponse -> ShowS
$cshowsPrec :: Int -> DeleteAuditSuppressionResponse -> ShowS
Prelude.Show, (forall x.
DeleteAuditSuppressionResponse
-> Rep DeleteAuditSuppressionResponse x)
-> (forall x.
Rep DeleteAuditSuppressionResponse x
-> DeleteAuditSuppressionResponse)
-> Generic DeleteAuditSuppressionResponse
forall x.
Rep DeleteAuditSuppressionResponse x
-> DeleteAuditSuppressionResponse
forall x.
DeleteAuditSuppressionResponse
-> Rep DeleteAuditSuppressionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteAuditSuppressionResponse x
-> DeleteAuditSuppressionResponse
$cfrom :: forall x.
DeleteAuditSuppressionResponse
-> Rep DeleteAuditSuppressionResponse x
Prelude.Generic)
newDeleteAuditSuppressionResponse ::
Prelude.Int ->
DeleteAuditSuppressionResponse
newDeleteAuditSuppressionResponse :: Int -> DeleteAuditSuppressionResponse
newDeleteAuditSuppressionResponse Int
pHttpStatus_ =
DeleteAuditSuppressionResponse' :: Int -> DeleteAuditSuppressionResponse
DeleteAuditSuppressionResponse'
{ $sel:httpStatus:DeleteAuditSuppressionResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
deleteAuditSuppressionResponse_httpStatus :: Lens.Lens' DeleteAuditSuppressionResponse Prelude.Int
deleteAuditSuppressionResponse_httpStatus :: (Int -> f Int)
-> DeleteAuditSuppressionResponse
-> f DeleteAuditSuppressionResponse
deleteAuditSuppressionResponse_httpStatus = (DeleteAuditSuppressionResponse -> Int)
-> (DeleteAuditSuppressionResponse
-> Int -> DeleteAuditSuppressionResponse)
-> Lens
DeleteAuditSuppressionResponse
DeleteAuditSuppressionResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuditSuppressionResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteAuditSuppressionResponse' :: DeleteAuditSuppressionResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteAuditSuppressionResponse
s@DeleteAuditSuppressionResponse' {} Int
a -> DeleteAuditSuppressionResponse
s {$sel:httpStatus:DeleteAuditSuppressionResponse' :: Int
httpStatus = Int
a} :: DeleteAuditSuppressionResponse)
instance
Prelude.NFData
DeleteAuditSuppressionResponse