{-# 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.Pinpoint.DeleteEndpoint
(
DeleteEndpoint (..),
newDeleteEndpoint,
deleteEndpoint_applicationId,
deleteEndpoint_endpointId,
DeleteEndpointResponse (..),
newDeleteEndpointResponse,
deleteEndpointResponse_httpStatus,
deleteEndpointResponse_endpointResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.Pinpoint.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteEndpoint = DeleteEndpoint'
{
DeleteEndpoint -> Text
applicationId :: Prelude.Text,
DeleteEndpoint -> Text
endpointId :: Prelude.Text
}
deriving (DeleteEndpoint -> DeleteEndpoint -> Bool
(DeleteEndpoint -> DeleteEndpoint -> Bool)
-> (DeleteEndpoint -> DeleteEndpoint -> Bool) -> Eq DeleteEndpoint
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteEndpoint -> DeleteEndpoint -> Bool
$c/= :: DeleteEndpoint -> DeleteEndpoint -> Bool
== :: DeleteEndpoint -> DeleteEndpoint -> Bool
$c== :: DeleteEndpoint -> DeleteEndpoint -> Bool
Prelude.Eq, ReadPrec [DeleteEndpoint]
ReadPrec DeleteEndpoint
Int -> ReadS DeleteEndpoint
ReadS [DeleteEndpoint]
(Int -> ReadS DeleteEndpoint)
-> ReadS [DeleteEndpoint]
-> ReadPrec DeleteEndpoint
-> ReadPrec [DeleteEndpoint]
-> Read DeleteEndpoint
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteEndpoint]
$creadListPrec :: ReadPrec [DeleteEndpoint]
readPrec :: ReadPrec DeleteEndpoint
$creadPrec :: ReadPrec DeleteEndpoint
readList :: ReadS [DeleteEndpoint]
$creadList :: ReadS [DeleteEndpoint]
readsPrec :: Int -> ReadS DeleteEndpoint
$creadsPrec :: Int -> ReadS DeleteEndpoint
Prelude.Read, Int -> DeleteEndpoint -> ShowS
[DeleteEndpoint] -> ShowS
DeleteEndpoint -> String
(Int -> DeleteEndpoint -> ShowS)
-> (DeleteEndpoint -> String)
-> ([DeleteEndpoint] -> ShowS)
-> Show DeleteEndpoint
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteEndpoint] -> ShowS
$cshowList :: [DeleteEndpoint] -> ShowS
show :: DeleteEndpoint -> String
$cshow :: DeleteEndpoint -> String
showsPrec :: Int -> DeleteEndpoint -> ShowS
$cshowsPrec :: Int -> DeleteEndpoint -> ShowS
Prelude.Show, (forall x. DeleteEndpoint -> Rep DeleteEndpoint x)
-> (forall x. Rep DeleteEndpoint x -> DeleteEndpoint)
-> Generic DeleteEndpoint
forall x. Rep DeleteEndpoint x -> DeleteEndpoint
forall x. DeleteEndpoint -> Rep DeleteEndpoint x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteEndpoint x -> DeleteEndpoint
$cfrom :: forall x. DeleteEndpoint -> Rep DeleteEndpoint x
Prelude.Generic)
newDeleteEndpoint ::
Prelude.Text ->
Prelude.Text ->
DeleteEndpoint
newDeleteEndpoint :: Text -> Text -> DeleteEndpoint
newDeleteEndpoint Text
pApplicationId_ Text
pEndpointId_ =
DeleteEndpoint' :: Text -> Text -> DeleteEndpoint
DeleteEndpoint'
{ $sel:applicationId:DeleteEndpoint' :: Text
applicationId = Text
pApplicationId_,
$sel:endpointId:DeleteEndpoint' :: Text
endpointId = Text
pEndpointId_
}
deleteEndpoint_applicationId :: Lens.Lens' DeleteEndpoint Prelude.Text
deleteEndpoint_applicationId :: (Text -> f Text) -> DeleteEndpoint -> f DeleteEndpoint
deleteEndpoint_applicationId = (DeleteEndpoint -> Text)
-> (DeleteEndpoint -> Text -> DeleteEndpoint)
-> Lens DeleteEndpoint DeleteEndpoint Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteEndpoint' {Text
applicationId :: Text
$sel:applicationId:DeleteEndpoint' :: DeleteEndpoint -> Text
applicationId} -> Text
applicationId) (\s :: DeleteEndpoint
s@DeleteEndpoint' {} Text
a -> DeleteEndpoint
s {$sel:applicationId:DeleteEndpoint' :: Text
applicationId = Text
a} :: DeleteEndpoint)
deleteEndpoint_endpointId :: Lens.Lens' DeleteEndpoint Prelude.Text
deleteEndpoint_endpointId :: (Text -> f Text) -> DeleteEndpoint -> f DeleteEndpoint
deleteEndpoint_endpointId = (DeleteEndpoint -> Text)
-> (DeleteEndpoint -> Text -> DeleteEndpoint)
-> Lens DeleteEndpoint DeleteEndpoint Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteEndpoint' {Text
endpointId :: Text
$sel:endpointId:DeleteEndpoint' :: DeleteEndpoint -> Text
endpointId} -> Text
endpointId) (\s :: DeleteEndpoint
s@DeleteEndpoint' {} Text
a -> DeleteEndpoint
s {$sel:endpointId:DeleteEndpoint' :: Text
endpointId = Text
a} :: DeleteEndpoint)
instance Core.AWSRequest DeleteEndpoint where
type
AWSResponse DeleteEndpoint =
DeleteEndpointResponse
request :: DeleteEndpoint -> Request DeleteEndpoint
request = Service -> DeleteEndpoint -> Request DeleteEndpoint
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteEndpoint
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteEndpoint)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse DeleteEndpoint))
-> Logger
-> Service
-> Proxy DeleteEndpoint
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteEndpoint)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Int -> EndpointResponse -> DeleteEndpointResponse
DeleteEndpointResponse'
(Int -> EndpointResponse -> DeleteEndpointResponse)
-> Either String Int
-> Either String (EndpointResponse -> DeleteEndpointResponse)
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))
Either String (EndpointResponse -> DeleteEndpointResponse)
-> Either String EndpointResponse
-> Either String DeleteEndpointResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object -> Either String EndpointResponse
forall a. FromJSON a => Object -> Either String a
Core.eitherParseJSON Object
x)
)
instance Prelude.Hashable DeleteEndpoint
instance Prelude.NFData DeleteEndpoint
instance Core.ToHeaders DeleteEndpoint where
toHeaders :: DeleteEndpoint -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteEndpoint -> 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 DeleteEndpoint where
toPath :: DeleteEndpoint -> ByteString
toPath DeleteEndpoint' {Text
endpointId :: Text
applicationId :: Text
$sel:endpointId:DeleteEndpoint' :: DeleteEndpoint -> Text
$sel:applicationId:DeleteEndpoint' :: DeleteEndpoint -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/v1/apps/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
applicationId,
ByteString
"/endpoints/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
endpointId
]
instance Core.ToQuery DeleteEndpoint where
toQuery :: DeleteEndpoint -> QueryString
toQuery = QueryString -> DeleteEndpoint -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteEndpointResponse = DeleteEndpointResponse'
{
DeleteEndpointResponse -> Int
httpStatus :: Prelude.Int,
DeleteEndpointResponse -> EndpointResponse
endpointResponse :: EndpointResponse
}
deriving (DeleteEndpointResponse -> DeleteEndpointResponse -> Bool
(DeleteEndpointResponse -> DeleteEndpointResponse -> Bool)
-> (DeleteEndpointResponse -> DeleteEndpointResponse -> Bool)
-> Eq DeleteEndpointResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteEndpointResponse -> DeleteEndpointResponse -> Bool
$c/= :: DeleteEndpointResponse -> DeleteEndpointResponse -> Bool
== :: DeleteEndpointResponse -> DeleteEndpointResponse -> Bool
$c== :: DeleteEndpointResponse -> DeleteEndpointResponse -> Bool
Prelude.Eq, ReadPrec [DeleteEndpointResponse]
ReadPrec DeleteEndpointResponse
Int -> ReadS DeleteEndpointResponse
ReadS [DeleteEndpointResponse]
(Int -> ReadS DeleteEndpointResponse)
-> ReadS [DeleteEndpointResponse]
-> ReadPrec DeleteEndpointResponse
-> ReadPrec [DeleteEndpointResponse]
-> Read DeleteEndpointResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteEndpointResponse]
$creadListPrec :: ReadPrec [DeleteEndpointResponse]
readPrec :: ReadPrec DeleteEndpointResponse
$creadPrec :: ReadPrec DeleteEndpointResponse
readList :: ReadS [DeleteEndpointResponse]
$creadList :: ReadS [DeleteEndpointResponse]
readsPrec :: Int -> ReadS DeleteEndpointResponse
$creadsPrec :: Int -> ReadS DeleteEndpointResponse
Prelude.Read, Int -> DeleteEndpointResponse -> ShowS
[DeleteEndpointResponse] -> ShowS
DeleteEndpointResponse -> String
(Int -> DeleteEndpointResponse -> ShowS)
-> (DeleteEndpointResponse -> String)
-> ([DeleteEndpointResponse] -> ShowS)
-> Show DeleteEndpointResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteEndpointResponse] -> ShowS
$cshowList :: [DeleteEndpointResponse] -> ShowS
show :: DeleteEndpointResponse -> String
$cshow :: DeleteEndpointResponse -> String
showsPrec :: Int -> DeleteEndpointResponse -> ShowS
$cshowsPrec :: Int -> DeleteEndpointResponse -> ShowS
Prelude.Show, (forall x. DeleteEndpointResponse -> Rep DeleteEndpointResponse x)
-> (forall x.
Rep DeleteEndpointResponse x -> DeleteEndpointResponse)
-> Generic DeleteEndpointResponse
forall x. Rep DeleteEndpointResponse x -> DeleteEndpointResponse
forall x. DeleteEndpointResponse -> Rep DeleteEndpointResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteEndpointResponse x -> DeleteEndpointResponse
$cfrom :: forall x. DeleteEndpointResponse -> Rep DeleteEndpointResponse x
Prelude.Generic)
newDeleteEndpointResponse ::
Prelude.Int ->
EndpointResponse ->
DeleteEndpointResponse
newDeleteEndpointResponse :: Int -> EndpointResponse -> DeleteEndpointResponse
newDeleteEndpointResponse
Int
pHttpStatus_
EndpointResponse
pEndpointResponse_ =
DeleteEndpointResponse' :: Int -> EndpointResponse -> DeleteEndpointResponse
DeleteEndpointResponse'
{ $sel:httpStatus:DeleteEndpointResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:endpointResponse:DeleteEndpointResponse' :: EndpointResponse
endpointResponse = EndpointResponse
pEndpointResponse_
}
deleteEndpointResponse_httpStatus :: Lens.Lens' DeleteEndpointResponse Prelude.Int
deleteEndpointResponse_httpStatus :: (Int -> f Int)
-> DeleteEndpointResponse -> f DeleteEndpointResponse
deleteEndpointResponse_httpStatus = (DeleteEndpointResponse -> Int)
-> (DeleteEndpointResponse -> Int -> DeleteEndpointResponse)
-> Lens DeleteEndpointResponse DeleteEndpointResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteEndpointResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteEndpointResponse' :: DeleteEndpointResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteEndpointResponse
s@DeleteEndpointResponse' {} Int
a -> DeleteEndpointResponse
s {$sel:httpStatus:DeleteEndpointResponse' :: Int
httpStatus = Int
a} :: DeleteEndpointResponse)
deleteEndpointResponse_endpointResponse :: Lens.Lens' DeleteEndpointResponse EndpointResponse
deleteEndpointResponse_endpointResponse :: (EndpointResponse -> f EndpointResponse)
-> DeleteEndpointResponse -> f DeleteEndpointResponse
deleteEndpointResponse_endpointResponse = (DeleteEndpointResponse -> EndpointResponse)
-> (DeleteEndpointResponse
-> EndpointResponse -> DeleteEndpointResponse)
-> Lens
DeleteEndpointResponse
DeleteEndpointResponse
EndpointResponse
EndpointResponse
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteEndpointResponse' {EndpointResponse
endpointResponse :: EndpointResponse
$sel:endpointResponse:DeleteEndpointResponse' :: DeleteEndpointResponse -> EndpointResponse
endpointResponse} -> EndpointResponse
endpointResponse) (\s :: DeleteEndpointResponse
s@DeleteEndpointResponse' {} EndpointResponse
a -> DeleteEndpointResponse
s {$sel:endpointResponse:DeleteEndpointResponse' :: EndpointResponse
endpointResponse = EndpointResponse
a} :: DeleteEndpointResponse)
instance Prelude.NFData DeleteEndpointResponse