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