{-# 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.Lambda.DeleteEventSourceMapping
(
DeleteEventSourceMapping (..),
newDeleteEventSourceMapping,
deleteEventSourceMapping_uuid,
EventSourceMappingConfiguration (..),
newEventSourceMappingConfiguration,
eventSourceMappingConfiguration_eventSourceArn,
eventSourceMappingConfiguration_state,
eventSourceMappingConfiguration_startingPositionTimestamp,
eventSourceMappingConfiguration_functionArn,
eventSourceMappingConfiguration_topics,
eventSourceMappingConfiguration_queues,
eventSourceMappingConfiguration_bisectBatchOnFunctionError,
eventSourceMappingConfiguration_uuid,
eventSourceMappingConfiguration_parallelizationFactor,
eventSourceMappingConfiguration_lastProcessingResult,
eventSourceMappingConfiguration_maximumRetryAttempts,
eventSourceMappingConfiguration_batchSize,
eventSourceMappingConfiguration_stateTransitionReason,
eventSourceMappingConfiguration_maximumBatchingWindowInSeconds,
eventSourceMappingConfiguration_sourceAccessConfigurations,
eventSourceMappingConfiguration_maximumRecordAgeInSeconds,
eventSourceMappingConfiguration_functionResponseTypes,
eventSourceMappingConfiguration_tumblingWindowInSeconds,
eventSourceMappingConfiguration_selfManagedEventSource,
eventSourceMappingConfiguration_lastModified,
eventSourceMappingConfiguration_destinationConfig,
eventSourceMappingConfiguration_startingPosition,
)
where
import qualified Amazonka.Core as Core
import Amazonka.Lambda.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 DeleteEventSourceMapping = DeleteEventSourceMapping'
{
DeleteEventSourceMapping -> Text
uuid :: Prelude.Text
}
deriving (DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool
(DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool)
-> (DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool)
-> Eq DeleteEventSourceMapping
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool
$c/= :: DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool
== :: DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool
$c== :: DeleteEventSourceMapping -> DeleteEventSourceMapping -> Bool
Prelude.Eq, ReadPrec [DeleteEventSourceMapping]
ReadPrec DeleteEventSourceMapping
Int -> ReadS DeleteEventSourceMapping
ReadS [DeleteEventSourceMapping]
(Int -> ReadS DeleteEventSourceMapping)
-> ReadS [DeleteEventSourceMapping]
-> ReadPrec DeleteEventSourceMapping
-> ReadPrec [DeleteEventSourceMapping]
-> Read DeleteEventSourceMapping
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteEventSourceMapping]
$creadListPrec :: ReadPrec [DeleteEventSourceMapping]
readPrec :: ReadPrec DeleteEventSourceMapping
$creadPrec :: ReadPrec DeleteEventSourceMapping
readList :: ReadS [DeleteEventSourceMapping]
$creadList :: ReadS [DeleteEventSourceMapping]
readsPrec :: Int -> ReadS DeleteEventSourceMapping
$creadsPrec :: Int -> ReadS DeleteEventSourceMapping
Prelude.Read, Int -> DeleteEventSourceMapping -> ShowS
[DeleteEventSourceMapping] -> ShowS
DeleteEventSourceMapping -> String
(Int -> DeleteEventSourceMapping -> ShowS)
-> (DeleteEventSourceMapping -> String)
-> ([DeleteEventSourceMapping] -> ShowS)
-> Show DeleteEventSourceMapping
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteEventSourceMapping] -> ShowS
$cshowList :: [DeleteEventSourceMapping] -> ShowS
show :: DeleteEventSourceMapping -> String
$cshow :: DeleteEventSourceMapping -> String
showsPrec :: Int -> DeleteEventSourceMapping -> ShowS
$cshowsPrec :: Int -> DeleteEventSourceMapping -> ShowS
Prelude.Show, (forall x.
DeleteEventSourceMapping -> Rep DeleteEventSourceMapping x)
-> (forall x.
Rep DeleteEventSourceMapping x -> DeleteEventSourceMapping)
-> Generic DeleteEventSourceMapping
forall x.
Rep DeleteEventSourceMapping x -> DeleteEventSourceMapping
forall x.
DeleteEventSourceMapping -> Rep DeleteEventSourceMapping x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteEventSourceMapping x -> DeleteEventSourceMapping
$cfrom :: forall x.
DeleteEventSourceMapping -> Rep DeleteEventSourceMapping x
Prelude.Generic)
newDeleteEventSourceMapping ::
Prelude.Text ->
DeleteEventSourceMapping
newDeleteEventSourceMapping :: Text -> DeleteEventSourceMapping
newDeleteEventSourceMapping Text
pUUID_ =
DeleteEventSourceMapping' :: Text -> DeleteEventSourceMapping
DeleteEventSourceMapping' {$sel:uuid:DeleteEventSourceMapping' :: Text
uuid = Text
pUUID_}
deleteEventSourceMapping_uuid :: Lens.Lens' DeleteEventSourceMapping Prelude.Text
deleteEventSourceMapping_uuid :: (Text -> f Text)
-> DeleteEventSourceMapping -> f DeleteEventSourceMapping
deleteEventSourceMapping_uuid = (DeleteEventSourceMapping -> Text)
-> (DeleteEventSourceMapping -> Text -> DeleteEventSourceMapping)
-> Lens DeleteEventSourceMapping DeleteEventSourceMapping Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteEventSourceMapping' {Text
uuid :: Text
$sel:uuid:DeleteEventSourceMapping' :: DeleteEventSourceMapping -> Text
uuid} -> Text
uuid) (\s :: DeleteEventSourceMapping
s@DeleteEventSourceMapping' {} Text
a -> DeleteEventSourceMapping
s {$sel:uuid:DeleteEventSourceMapping' :: Text
uuid = Text
a} :: DeleteEventSourceMapping)
instance Core.AWSRequest DeleteEventSourceMapping where
type
AWSResponse DeleteEventSourceMapping =
EventSourceMappingConfiguration
request :: DeleteEventSourceMapping -> Request DeleteEventSourceMapping
request = Service
-> DeleteEventSourceMapping -> Request DeleteEventSourceMapping
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteEventSourceMapping
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteEventSourceMapping)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse DeleteEventSourceMapping))
-> Logger
-> Service
-> Proxy DeleteEventSourceMapping
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteEventSourceMapping)))
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 -> Object -> Either String EventSourceMappingConfiguration
forall a. FromJSON a => Object -> Either String a
Core.eitherParseJSON Object
x)
instance Prelude.Hashable DeleteEventSourceMapping
instance Prelude.NFData DeleteEventSourceMapping
instance Core.ToHeaders DeleteEventSourceMapping where
toHeaders :: DeleteEventSourceMapping -> ResponseHeaders
toHeaders = ResponseHeaders -> DeleteEventSourceMapping -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath DeleteEventSourceMapping where
toPath :: DeleteEventSourceMapping -> ByteString
toPath DeleteEventSourceMapping' {Text
uuid :: Text
$sel:uuid:DeleteEventSourceMapping' :: DeleteEventSourceMapping -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/2015-03-31/event-source-mappings/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
uuid
]
instance Core.ToQuery DeleteEventSourceMapping where
toQuery :: DeleteEventSourceMapping -> QueryString
toQuery = QueryString -> DeleteEventSourceMapping -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty