{-# 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.IoT1ClickProjects.DeleteProject
(
DeleteProject (..),
newDeleteProject,
deleteProject_projectName,
DeleteProjectResponse (..),
newDeleteProjectResponse,
deleteProjectResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT1ClickProjects.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 DeleteProject = DeleteProject'
{
DeleteProject -> Text
projectName :: Prelude.Text
}
deriving (DeleteProject -> DeleteProject -> Bool
(DeleteProject -> DeleteProject -> Bool)
-> (DeleteProject -> DeleteProject -> Bool) -> Eq DeleteProject
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteProject -> DeleteProject -> Bool
$c/= :: DeleteProject -> DeleteProject -> Bool
== :: DeleteProject -> DeleteProject -> Bool
$c== :: DeleteProject -> DeleteProject -> Bool
Prelude.Eq, ReadPrec [DeleteProject]
ReadPrec DeleteProject
Int -> ReadS DeleteProject
ReadS [DeleteProject]
(Int -> ReadS DeleteProject)
-> ReadS [DeleteProject]
-> ReadPrec DeleteProject
-> ReadPrec [DeleteProject]
-> Read DeleteProject
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteProject]
$creadListPrec :: ReadPrec [DeleteProject]
readPrec :: ReadPrec DeleteProject
$creadPrec :: ReadPrec DeleteProject
readList :: ReadS [DeleteProject]
$creadList :: ReadS [DeleteProject]
readsPrec :: Int -> ReadS DeleteProject
$creadsPrec :: Int -> ReadS DeleteProject
Prelude.Read, Int -> DeleteProject -> ShowS
[DeleteProject] -> ShowS
DeleteProject -> String
(Int -> DeleteProject -> ShowS)
-> (DeleteProject -> String)
-> ([DeleteProject] -> ShowS)
-> Show DeleteProject
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteProject] -> ShowS
$cshowList :: [DeleteProject] -> ShowS
show :: DeleteProject -> String
$cshow :: DeleteProject -> String
showsPrec :: Int -> DeleteProject -> ShowS
$cshowsPrec :: Int -> DeleteProject -> ShowS
Prelude.Show, (forall x. DeleteProject -> Rep DeleteProject x)
-> (forall x. Rep DeleteProject x -> DeleteProject)
-> Generic DeleteProject
forall x. Rep DeleteProject x -> DeleteProject
forall x. DeleteProject -> Rep DeleteProject x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteProject x -> DeleteProject
$cfrom :: forall x. DeleteProject -> Rep DeleteProject x
Prelude.Generic)
newDeleteProject ::
Prelude.Text ->
DeleteProject
newDeleteProject :: Text -> DeleteProject
newDeleteProject Text
pProjectName_ =
DeleteProject' :: Text -> DeleteProject
DeleteProject' {$sel:projectName:DeleteProject' :: Text
projectName = Text
pProjectName_}
deleteProject_projectName :: Lens.Lens' DeleteProject Prelude.Text
deleteProject_projectName :: (Text -> f Text) -> DeleteProject -> f DeleteProject
deleteProject_projectName = (DeleteProject -> Text)
-> (DeleteProject -> Text -> DeleteProject)
-> Lens DeleteProject DeleteProject Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteProject' {Text
projectName :: Text
$sel:projectName:DeleteProject' :: DeleteProject -> Text
projectName} -> Text
projectName) (\s :: DeleteProject
s@DeleteProject' {} Text
a -> DeleteProject
s {$sel:projectName:DeleteProject' :: Text
projectName = Text
a} :: DeleteProject)
instance Core.AWSRequest DeleteProject where
type
AWSResponse DeleteProject =
DeleteProjectResponse
request :: DeleteProject -> Request DeleteProject
request = Service -> DeleteProject -> Request DeleteProject
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteProject
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteProject)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteProject))
-> Logger
-> Service
-> Proxy DeleteProject
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteProject)))
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 -> DeleteProjectResponse
DeleteProjectResponse'
(Int -> DeleteProjectResponse)
-> Either String Int -> Either String DeleteProjectResponse
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 DeleteProject
instance Prelude.NFData DeleteProject
instance Core.ToHeaders DeleteProject where
toHeaders :: DeleteProject -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteProject -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ 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.ToPath DeleteProject where
toPath :: DeleteProject -> ByteString
toPath DeleteProject' {Text
projectName :: Text
$sel:projectName:DeleteProject' :: DeleteProject -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/projects/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
projectName]
instance Core.ToQuery DeleteProject where
toQuery :: DeleteProject -> QueryString
toQuery = QueryString -> DeleteProject -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteProjectResponse = DeleteProjectResponse'
{
DeleteProjectResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteProjectResponse -> DeleteProjectResponse -> Bool
(DeleteProjectResponse -> DeleteProjectResponse -> Bool)
-> (DeleteProjectResponse -> DeleteProjectResponse -> Bool)
-> Eq DeleteProjectResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteProjectResponse -> DeleteProjectResponse -> Bool
$c/= :: DeleteProjectResponse -> DeleteProjectResponse -> Bool
== :: DeleteProjectResponse -> DeleteProjectResponse -> Bool
$c== :: DeleteProjectResponse -> DeleteProjectResponse -> Bool
Prelude.Eq, ReadPrec [DeleteProjectResponse]
ReadPrec DeleteProjectResponse
Int -> ReadS DeleteProjectResponse
ReadS [DeleteProjectResponse]
(Int -> ReadS DeleteProjectResponse)
-> ReadS [DeleteProjectResponse]
-> ReadPrec DeleteProjectResponse
-> ReadPrec [DeleteProjectResponse]
-> Read DeleteProjectResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteProjectResponse]
$creadListPrec :: ReadPrec [DeleteProjectResponse]
readPrec :: ReadPrec DeleteProjectResponse
$creadPrec :: ReadPrec DeleteProjectResponse
readList :: ReadS [DeleteProjectResponse]
$creadList :: ReadS [DeleteProjectResponse]
readsPrec :: Int -> ReadS DeleteProjectResponse
$creadsPrec :: Int -> ReadS DeleteProjectResponse
Prelude.Read, Int -> DeleteProjectResponse -> ShowS
[DeleteProjectResponse] -> ShowS
DeleteProjectResponse -> String
(Int -> DeleteProjectResponse -> ShowS)
-> (DeleteProjectResponse -> String)
-> ([DeleteProjectResponse] -> ShowS)
-> Show DeleteProjectResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteProjectResponse] -> ShowS
$cshowList :: [DeleteProjectResponse] -> ShowS
show :: DeleteProjectResponse -> String
$cshow :: DeleteProjectResponse -> String
showsPrec :: Int -> DeleteProjectResponse -> ShowS
$cshowsPrec :: Int -> DeleteProjectResponse -> ShowS
Prelude.Show, (forall x. DeleteProjectResponse -> Rep DeleteProjectResponse x)
-> (forall x. Rep DeleteProjectResponse x -> DeleteProjectResponse)
-> Generic DeleteProjectResponse
forall x. Rep DeleteProjectResponse x -> DeleteProjectResponse
forall x. DeleteProjectResponse -> Rep DeleteProjectResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteProjectResponse x -> DeleteProjectResponse
$cfrom :: forall x. DeleteProjectResponse -> Rep DeleteProjectResponse x
Prelude.Generic)
newDeleteProjectResponse ::
Prelude.Int ->
DeleteProjectResponse
newDeleteProjectResponse :: Int -> DeleteProjectResponse
newDeleteProjectResponse Int
pHttpStatus_ =
DeleteProjectResponse' :: Int -> DeleteProjectResponse
DeleteProjectResponse' {$sel:httpStatus:DeleteProjectResponse' :: Int
httpStatus = Int
pHttpStatus_}
deleteProjectResponse_httpStatus :: Lens.Lens' DeleteProjectResponse Prelude.Int
deleteProjectResponse_httpStatus :: (Int -> f Int) -> DeleteProjectResponse -> f DeleteProjectResponse
deleteProjectResponse_httpStatus = (DeleteProjectResponse -> Int)
-> (DeleteProjectResponse -> Int -> DeleteProjectResponse)
-> Lens DeleteProjectResponse DeleteProjectResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteProjectResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteProjectResponse' :: DeleteProjectResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteProjectResponse
s@DeleteProjectResponse' {} Int
a -> DeleteProjectResponse
s {$sel:httpStatus:DeleteProjectResponse' :: Int
httpStatus = Int
a} :: DeleteProjectResponse)
instance Prelude.NFData DeleteProjectResponse