{-# 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.SNS.Unsubscribe
(
Unsubscribe (..),
newUnsubscribe,
unsubscribe_subscriptionArn,
UnsubscribeResponse (..),
newUnsubscribeResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.SNS.Types
data Unsubscribe = Unsubscribe'
{
Unsubscribe -> Text
subscriptionArn :: Prelude.Text
}
deriving (Unsubscribe -> Unsubscribe -> Bool
(Unsubscribe -> Unsubscribe -> Bool)
-> (Unsubscribe -> Unsubscribe -> Bool) -> Eq Unsubscribe
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Unsubscribe -> Unsubscribe -> Bool
$c/= :: Unsubscribe -> Unsubscribe -> Bool
== :: Unsubscribe -> Unsubscribe -> Bool
$c== :: Unsubscribe -> Unsubscribe -> Bool
Prelude.Eq, ReadPrec [Unsubscribe]
ReadPrec Unsubscribe
Int -> ReadS Unsubscribe
ReadS [Unsubscribe]
(Int -> ReadS Unsubscribe)
-> ReadS [Unsubscribe]
-> ReadPrec Unsubscribe
-> ReadPrec [Unsubscribe]
-> Read Unsubscribe
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Unsubscribe]
$creadListPrec :: ReadPrec [Unsubscribe]
readPrec :: ReadPrec Unsubscribe
$creadPrec :: ReadPrec Unsubscribe
readList :: ReadS [Unsubscribe]
$creadList :: ReadS [Unsubscribe]
readsPrec :: Int -> ReadS Unsubscribe
$creadsPrec :: Int -> ReadS Unsubscribe
Prelude.Read, Int -> Unsubscribe -> ShowS
[Unsubscribe] -> ShowS
Unsubscribe -> String
(Int -> Unsubscribe -> ShowS)
-> (Unsubscribe -> String)
-> ([Unsubscribe] -> ShowS)
-> Show Unsubscribe
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Unsubscribe] -> ShowS
$cshowList :: [Unsubscribe] -> ShowS
show :: Unsubscribe -> String
$cshow :: Unsubscribe -> String
showsPrec :: Int -> Unsubscribe -> ShowS
$cshowsPrec :: Int -> Unsubscribe -> ShowS
Prelude.Show, (forall x. Unsubscribe -> Rep Unsubscribe x)
-> (forall x. Rep Unsubscribe x -> Unsubscribe)
-> Generic Unsubscribe
forall x. Rep Unsubscribe x -> Unsubscribe
forall x. Unsubscribe -> Rep Unsubscribe x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Unsubscribe x -> Unsubscribe
$cfrom :: forall x. Unsubscribe -> Rep Unsubscribe x
Prelude.Generic)
newUnsubscribe ::
Prelude.Text ->
Unsubscribe
newUnsubscribe :: Text -> Unsubscribe
newUnsubscribe Text
pSubscriptionArn_ =
Unsubscribe' :: Text -> Unsubscribe
Unsubscribe' {$sel:subscriptionArn:Unsubscribe' :: Text
subscriptionArn = Text
pSubscriptionArn_}
unsubscribe_subscriptionArn :: Lens.Lens' Unsubscribe Prelude.Text
unsubscribe_subscriptionArn :: (Text -> f Text) -> Unsubscribe -> f Unsubscribe
unsubscribe_subscriptionArn = (Unsubscribe -> Text)
-> (Unsubscribe -> Text -> Unsubscribe)
-> Lens Unsubscribe Unsubscribe Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Unsubscribe' {Text
subscriptionArn :: Text
$sel:subscriptionArn:Unsubscribe' :: Unsubscribe -> Text
subscriptionArn} -> Text
subscriptionArn) (\s :: Unsubscribe
s@Unsubscribe' {} Text
a -> Unsubscribe
s {$sel:subscriptionArn:Unsubscribe' :: Text
subscriptionArn = Text
a} :: Unsubscribe)
instance Core.AWSRequest Unsubscribe where
type AWSResponse Unsubscribe = UnsubscribeResponse
request :: Unsubscribe -> Request Unsubscribe
request = Service -> Unsubscribe -> Request Unsubscribe
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy Unsubscribe
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse Unsubscribe)))
response = AWSResponse Unsubscribe
-> Logger
-> Service
-> Proxy Unsubscribe
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse Unsubscribe)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse Unsubscribe
UnsubscribeResponse
UnsubscribeResponse'
instance Prelude.Hashable Unsubscribe
instance Prelude.NFData Unsubscribe
instance Core.ToHeaders Unsubscribe where
toHeaders :: Unsubscribe -> [Header]
toHeaders = [Header] -> Unsubscribe -> [Header]
forall a b. a -> b -> a
Prelude.const [Header]
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath Unsubscribe where
toPath :: Unsubscribe -> ByteString
toPath = ByteString -> Unsubscribe -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery Unsubscribe where
toQuery :: Unsubscribe -> QueryString
toQuery Unsubscribe' {Text
subscriptionArn :: Text
$sel:subscriptionArn:Unsubscribe' :: Unsubscribe -> Text
..} =
[QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"Action"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"Unsubscribe" :: Prelude.ByteString),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2010-03-31" :: Prelude.ByteString),
ByteString
"SubscriptionArn" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
subscriptionArn
]
data UnsubscribeResponse = UnsubscribeResponse'
{
}
deriving (UnsubscribeResponse -> UnsubscribeResponse -> Bool
(UnsubscribeResponse -> UnsubscribeResponse -> Bool)
-> (UnsubscribeResponse -> UnsubscribeResponse -> Bool)
-> Eq UnsubscribeResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UnsubscribeResponse -> UnsubscribeResponse -> Bool
$c/= :: UnsubscribeResponse -> UnsubscribeResponse -> Bool
== :: UnsubscribeResponse -> UnsubscribeResponse -> Bool
$c== :: UnsubscribeResponse -> UnsubscribeResponse -> Bool
Prelude.Eq, ReadPrec [UnsubscribeResponse]
ReadPrec UnsubscribeResponse
Int -> ReadS UnsubscribeResponse
ReadS [UnsubscribeResponse]
(Int -> ReadS UnsubscribeResponse)
-> ReadS [UnsubscribeResponse]
-> ReadPrec UnsubscribeResponse
-> ReadPrec [UnsubscribeResponse]
-> Read UnsubscribeResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UnsubscribeResponse]
$creadListPrec :: ReadPrec [UnsubscribeResponse]
readPrec :: ReadPrec UnsubscribeResponse
$creadPrec :: ReadPrec UnsubscribeResponse
readList :: ReadS [UnsubscribeResponse]
$creadList :: ReadS [UnsubscribeResponse]
readsPrec :: Int -> ReadS UnsubscribeResponse
$creadsPrec :: Int -> ReadS UnsubscribeResponse
Prelude.Read, Int -> UnsubscribeResponse -> ShowS
[UnsubscribeResponse] -> ShowS
UnsubscribeResponse -> String
(Int -> UnsubscribeResponse -> ShowS)
-> (UnsubscribeResponse -> String)
-> ([UnsubscribeResponse] -> ShowS)
-> Show UnsubscribeResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UnsubscribeResponse] -> ShowS
$cshowList :: [UnsubscribeResponse] -> ShowS
show :: UnsubscribeResponse -> String
$cshow :: UnsubscribeResponse -> String
showsPrec :: Int -> UnsubscribeResponse -> ShowS
$cshowsPrec :: Int -> UnsubscribeResponse -> ShowS
Prelude.Show, (forall x. UnsubscribeResponse -> Rep UnsubscribeResponse x)
-> (forall x. Rep UnsubscribeResponse x -> UnsubscribeResponse)
-> Generic UnsubscribeResponse
forall x. Rep UnsubscribeResponse x -> UnsubscribeResponse
forall x. UnsubscribeResponse -> Rep UnsubscribeResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UnsubscribeResponse x -> UnsubscribeResponse
$cfrom :: forall x. UnsubscribeResponse -> Rep UnsubscribeResponse x
Prelude.Generic)
newUnsubscribeResponse ::
UnsubscribeResponse
newUnsubscribeResponse :: UnsubscribeResponse
newUnsubscribeResponse = UnsubscribeResponse
UnsubscribeResponse'
instance Prelude.NFData UnsubscribeResponse