amazonka-lambda-0.0.5: gen/Network/AWS/Lambda/InvokeAsync.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- Module : Network.AWS.Lambda.InvokeAsync
-- Copyright : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License : This Source Code Form is subject to the terms of
-- the Mozilla Public License, v. 2.0.
-- A copy of the MPL can be found in the LICENSE file or
-- you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- | Submits an invocation request to AWS Lambda. Upon receiving the request,
-- Lambda executes the specified function asynchronously. To see the logs
-- generated by the Lambda function execution, see the CloudWatch logs console.
--
-- This operation requires permission for the 'lambda:InvokeAsync' action.
--
-- <http://docs.aws.amazon.com/lambda/latest/dg/API_InvokeAsync.html>
module Network.AWS.Lambda.InvokeAsync
(
-- * Request
InvokeAsync
-- ** Request constructor
, invokeAsync
-- ** Request lenses
, iaFunctionName
, iaInvokeArgs
-- * Response
, InvokeAsyncResponse
-- ** Response constructor
, invokeAsyncResponse
-- ** Response lenses
, iarStatus
) where
import Network.AWS.Prelude
import Network.AWS.Request.RestJSON
import Network.AWS.Lambda.Types
import qualified GHC.Exts
data InvokeAsync = InvokeAsync
{ _iaFunctionName :: Text
, _iaInvokeArgs :: Base64
} deriving (Eq, Show)
-- | 'InvokeAsync' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'iaFunctionName' @::@ 'Text'
--
-- * 'iaInvokeArgs' @::@ 'Base64'
--
invokeAsync :: Text -- ^ 'iaFunctionName'
-> Base64 -- ^ 'iaInvokeArgs'
-> InvokeAsync
invokeAsync p1 p2 = InvokeAsync
{ _iaFunctionName = p1
, _iaInvokeArgs = p2
}
-- | The Lambda function name.
iaFunctionName :: Lens' InvokeAsync Text
iaFunctionName = lens _iaFunctionName (\s a -> s { _iaFunctionName = a })
-- | JSON that you want to provide to your Lambda function as input.
iaInvokeArgs :: Lens' InvokeAsync Base64
iaInvokeArgs = lens _iaInvokeArgs (\s a -> s { _iaInvokeArgs = a })
newtype InvokeAsyncResponse = InvokeAsyncResponse
{ _iarStatus :: Int
} deriving (Eq, Ord, Show, Enum, Num, Integral, Real)
-- | 'InvokeAsyncResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'iarStatus' @::@ 'Int'
--
invokeAsyncResponse :: Int -- ^ 'iarStatus'
-> InvokeAsyncResponse
invokeAsyncResponse p1 = InvokeAsyncResponse
{ _iarStatus = p1
}
-- | It will be 202 upon success.
iarStatus :: Lens' InvokeAsyncResponse Int
iarStatus = lens _iarStatus (\s a -> s { _iarStatus = a })
instance ToPath InvokeAsync where
toPath InvokeAsync{..} = mconcat
[ "/2014-11-13/functions/"
, toText _iaFunctionName
, "/invoke-async/"
]
instance ToQuery InvokeAsync where
toQuery = const mempty
instance ToHeaders InvokeAsync
instance ToJSON InvokeAsync where
toJSON InvokeAsync{..} = object
[ "InvokeArgs" .= _iaInvokeArgs
]
instance AWSRequest InvokeAsync where
type Sv InvokeAsync = Lambda
type Rs InvokeAsync = InvokeAsyncResponse
request = post
response = jsonResponse
instance FromJSON InvokeAsyncResponse where
parseJSON = withObject "InvokeAsyncResponse" $ \o -> InvokeAsyncResponse
<$> o .: "Status"