-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Amazon Lambda SDK.
--
@package amazonka-lambda
@version 1.2.0.2
module Network.AWS.Lambda.Types
-- | API version '2015-03-31' of the Amazon Lambda SDK configuration.
lambda :: Service
-- | Lambda function access policy is limited to 20 KB.
_PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for UnsupportedMediaTypeException' errors.
_UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request body could not be parsed as JSON.
_InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError
-- | One of the parameters in the request is invalid. For example, if you
-- provided an IAM role for AWS Lambda to assume in the
-- CreateFunction or the UpdateFunctionConfiguration
-- API, that AWS Lambda is unable to assume you will get this exception.
_InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for RequestTooLargeException' errors.
_RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for TooManyRequestsException' errors.
_TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The AWS Lambda service encountered an internal error.
_ServiceException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for CodeStorageExceededException' errors.
_CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource already exists.
_ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource (for example, a Lambda function or access policy
-- statement) specified in the request does not exist.
_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
data EventSourcePosition
Latest :: EventSourcePosition
TrimHorizon :: EventSourcePosition
data InvocationType
DryRun :: InvocationType
Event :: InvocationType
RequestResponse :: InvocationType
data LogType
None :: LogType
Tail :: LogType
data Runtime
JAVA8 :: Runtime
Nodejs :: Runtime
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
-- | The code for the Lambda function.
--
-- See: functionCode smart constructor.
data FunctionCode
-- | Creates a value of FunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionCode :: FunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
fcS3Key :: Lens' FunctionCode (Maybe Text)
-- | A base64-encoded .zip file containing your deployment package. For
-- more information about creating a .zip file, go to Execution
-- Permissions in the AWS Lambda Developer Guide.
--
-- Note: This Lens automatically encodes and decodes Base64
-- data, despite what the AWS documentation might say. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
fcZipFile :: Lens' FunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS region
-- where you are creating the Lambda function.
fcS3Bucket :: Lens' FunctionCode (Maybe Text)
-- | The object for the Lambda function location.
--
-- See: functionCodeLocation smart constructor.
data FunctionCodeLocation
-- | Creates a value of FunctionCodeLocation with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionCodeLocation :: FunctionCodeLocation
-- | The presigned URL you can use to download the function's .zip file
-- that you previously uploaded. The URL is valid for up to 10 minutes.
fclLocation :: Lens' FunctionCodeLocation (Maybe Text)
-- | The repository from which you can download the function.
fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text)
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
module Network.AWS.Lambda.Waiters
-- | Returns the access policy, containing a list of permissions granted
-- via the AddPermission API, associated with the specified
-- bucket.
--
-- You need permission for the 'lambda:GetPolicy action.'
--
-- See: AWS API Reference for GetPolicy.
module Network.AWS.Lambda.GetPolicy
-- | Creates a value of GetPolicy with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getPolicy :: Text -> GetPolicy
-- | See: getPolicy smart constructor.
data GetPolicy
-- | Function name whose access policy you want to retrieve.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
gpFunctionName :: Lens' GetPolicy Text
-- | Creates a value of GetPolicyResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getPolicyResponse :: Int -> GetPolicyResponse
-- | See: getPolicyResponse smart constructor.
data GetPolicyResponse
-- | The access policy associated with the specified function. The response
-- returns the same as a string using "\" as an escape character in the
-- JSON.
gprsPolicy :: Lens' GetPolicyResponse (Maybe Text)
-- | The response status code.
gprsStatus :: Lens' GetPolicyResponse Int
instance Typeable GetPolicy
instance Typeable GetPolicyResponse
instance Eq GetPolicy
instance Read GetPolicy
instance Show GetPolicy
instance Data GetPolicy
instance Generic GetPolicy
instance Eq GetPolicyResponse
instance Read GetPolicyResponse
instance Show GetPolicyResponse
instance Data GetPolicyResponse
instance Generic GetPolicyResponse
instance Datatype D1GetPolicy
instance Constructor C1_0GetPolicy
instance Selector S1_0_0GetPolicy
instance Datatype D1GetPolicyResponse
instance Constructor C1_0GetPolicyResponse
instance Selector S1_0_0GetPolicyResponse
instance Selector S1_0_1GetPolicyResponse
instance ToQuery GetPolicy
instance ToPath GetPolicy
instance ToHeaders GetPolicy
instance AWSRequest GetPolicy
-- | Updates the code for the specified Lambda function. This operation
-- must only be used on an existing Lambda function and cannot be used to
-- update the function configuration.
--
-- This operation requires permission for the 'lambda:UpdateFunctionCode'
-- action.
--
-- See: AWS API Reference for UpdateFunctionCode.
module Network.AWS.Lambda.UpdateFunctionCode
-- | Creates a value of UpdateFunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
updateFunctionCode :: Text -> UpdateFunctionCode
-- | See: updateFunctionCode smart constructor.
data UpdateFunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
uS3ObjectVersion :: Lens' UpdateFunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
uS3Key :: Lens' UpdateFunctionCode (Maybe Text)
-- | Based64-encoded .zip file containing your packaged source code.
--
-- Note: This Lens automatically encodes and decodes Base64
-- data, despite what the AWS documentation might say. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
uZipFile :: Lens' UpdateFunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS region
-- where you are creating the Lambda function.
uS3Bucket :: Lens' UpdateFunctionCode (Maybe Text)
-- | The existing Lambda function name whose code you want to replace.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
uFunctionName :: Lens' UpdateFunctionCode Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
instance Typeable UpdateFunctionCode
instance Eq UpdateFunctionCode
instance Read UpdateFunctionCode
instance Show UpdateFunctionCode
instance Data UpdateFunctionCode
instance Generic UpdateFunctionCode
instance Datatype D1UpdateFunctionCode
instance Constructor C1_0UpdateFunctionCode
instance Selector S1_0_0UpdateFunctionCode
instance Selector S1_0_1UpdateFunctionCode
instance Selector S1_0_2UpdateFunctionCode
instance Selector S1_0_3UpdateFunctionCode
instance Selector S1_0_4UpdateFunctionCode
instance ToQuery UpdateFunctionCode
instance ToPath UpdateFunctionCode
instance ToJSON UpdateFunctionCode
instance ToHeaders UpdateFunctionCode
instance AWSRequest UpdateFunctionCode
-- | Returns a list of your Lambda functions. For each function, the
-- response includes the function configuration information. You must use
-- GetFunction to retrieve the code for your function.
--
-- This operation requires permission for the 'lambda:ListFunctions'
-- action.
--
-- See: AWS API Reference for ListFunctions.
--
-- This operation returns paginated results.
module Network.AWS.Lambda.ListFunctions
-- | Creates a value of ListFunctions with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listFunctions :: ListFunctions
-- | See: listFunctions smart constructor.
data ListFunctions
-- | Optional integer. Specifies the maximum number of AWS Lambda functions
-- to return in response. This parameter value must be greater than 0.
lfMaxItems :: Lens' ListFunctions (Maybe Natural)
-- | Optional string. An opaque pagination token returned from a previous
-- ListFunctions operation. If present, indicates where to
-- continue the listing.
lfMarker :: Lens' ListFunctions (Maybe Text)
-- | Creates a value of ListFunctionsResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listFunctionsResponse :: Int -> ListFunctionsResponse
-- | Contains a list of AWS Lambda function configurations (see
-- FunctionConfiguration.
--
-- See: listFunctionsResponse smart constructor.
data ListFunctionsResponse
-- | A string, present if there are more functions.
lfrsNextMarker :: Lens' ListFunctionsResponse (Maybe Text)
-- | A list of Lambda functions.
lfrsFunctions :: Lens' ListFunctionsResponse [FunctionConfiguration]
-- | The response status code.
lfrsStatus :: Lens' ListFunctionsResponse Int
instance Typeable ListFunctions
instance Typeable ListFunctionsResponse
instance Eq ListFunctions
instance Read ListFunctions
instance Show ListFunctions
instance Data ListFunctions
instance Generic ListFunctions
instance Eq ListFunctionsResponse
instance Read ListFunctionsResponse
instance Show ListFunctionsResponse
instance Data ListFunctionsResponse
instance Generic ListFunctionsResponse
instance Datatype D1ListFunctions
instance Constructor C1_0ListFunctions
instance Selector S1_0_0ListFunctions
instance Selector S1_0_1ListFunctions
instance Datatype D1ListFunctionsResponse
instance Constructor C1_0ListFunctionsResponse
instance Selector S1_0_0ListFunctionsResponse
instance Selector S1_0_1ListFunctionsResponse
instance Selector S1_0_2ListFunctionsResponse
instance ToQuery ListFunctions
instance ToPath ListFunctions
instance ToHeaders ListFunctions
instance AWSRequest ListFunctions
instance AWSPager ListFunctions
-- | Updates the configuration parameters for the specified Lambda function
-- by using the values provided in the request. You provide only the
-- parameters you want to change. This operation must only be used on an
-- existing Lambda function and cannot be used to update the function's
-- code.
--
-- This operation requires permission for the
-- 'lambda:UpdateFunctionConfiguration' action.
--
-- See: AWS API Reference for UpdateFunctionConfiguration.
module Network.AWS.Lambda.UpdateFunctionConfiguration
-- | Creates a value of UpdateFunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
updateFunctionConfiguration :: Text -> UpdateFunctionConfiguration
-- | See: updateFunctionConfiguration smart constructor.
data UpdateFunctionConfiguration
-- | The amount of memory, in MB, your Lambda function is given. AWS Lambda
-- uses this memory size to infer the amount of CPU allocated to your
-- function. Your function use-case determines your CPU and memory
-- requirements. For example, a database operation might need less memory
-- compared to an image processing function. The default value is 128 MB.
-- The value must be a multiple of 64 MB.
ufcMemorySize :: Lens' UpdateFunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda will assume
-- when it executes your function.
ufcRole :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The function that Lambda calls to begin executing your function. For
-- Node.js, it is the module-name.export value in your function.
ufcHandler :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The function execution time at which AWS Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
ufcTimeout :: Lens' UpdateFunctionConfiguration (Maybe Natural)
-- | A short user-defined function description. AWS Lambda does not use
-- this value. Assign a meaningful description as you see fit.
ufcDescription :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The name of the Lambda function.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
ufcFunctionName :: Lens' UpdateFunctionConfiguration Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
instance Typeable UpdateFunctionConfiguration
instance Eq UpdateFunctionConfiguration
instance Read UpdateFunctionConfiguration
instance Show UpdateFunctionConfiguration
instance Data UpdateFunctionConfiguration
instance Generic UpdateFunctionConfiguration
instance Datatype D1UpdateFunctionConfiguration
instance Constructor C1_0UpdateFunctionConfiguration
instance Selector S1_0_0UpdateFunctionConfiguration
instance Selector S1_0_1UpdateFunctionConfiguration
instance Selector S1_0_2UpdateFunctionConfiguration
instance Selector S1_0_3UpdateFunctionConfiguration
instance Selector S1_0_4UpdateFunctionConfiguration
instance Selector S1_0_5UpdateFunctionConfiguration
instance ToQuery UpdateFunctionConfiguration
instance ToPath UpdateFunctionConfiguration
instance ToJSON UpdateFunctionConfiguration
instance ToHeaders UpdateFunctionConfiguration
instance AWSRequest UpdateFunctionConfiguration
-- | Deletes the specified Lambda function code and configuration.
--
-- When you delete a function the associated access policy is also
-- deleted. You will need to delete the event source mappings explicitly.
--
-- This operation requires permission for the 'lambda:DeleteFunction'
-- action.
--
-- See: AWS API Reference for DeleteFunction.
module Network.AWS.Lambda.DeleteFunction
-- | Creates a value of DeleteFunction with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
deleteFunction :: Text -> DeleteFunction
-- | See: deleteFunction smart constructor.
data DeleteFunction
-- | The Lambda function to delete.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
dfFunctionName :: Lens' DeleteFunction Text
-- | Creates a value of DeleteFunctionResponse with the minimum
-- fields required to make a request.
deleteFunctionResponse :: DeleteFunctionResponse
-- | See: deleteFunctionResponse smart constructor.
data DeleteFunctionResponse
instance Typeable DeleteFunction
instance Typeable DeleteFunctionResponse
instance Eq DeleteFunction
instance Read DeleteFunction
instance Show DeleteFunction
instance Data DeleteFunction
instance Generic DeleteFunction
instance Eq DeleteFunctionResponse
instance Read DeleteFunctionResponse
instance Show DeleteFunctionResponse
instance Data DeleteFunctionResponse
instance Generic DeleteFunctionResponse
instance Datatype D1DeleteFunction
instance Constructor C1_0DeleteFunction
instance Selector S1_0_0DeleteFunction
instance Datatype D1DeleteFunctionResponse
instance Constructor C1_0DeleteFunctionResponse
instance ToQuery DeleteFunction
instance ToPath DeleteFunction
instance ToHeaders DeleteFunction
instance AWSRequest DeleteFunction
-- | Adds a permission to the access policy associated with the specified
-- AWS Lambda function. In a "push event" model, the access policy
-- attached to the Lambda function grants Amazon S3 or a user application
-- permission for the Lambda 'lambda:Invoke' action. For information
-- about the push model, see AWS Lambda: How it Works. Each Lambda
-- function has one access policy associated with it. You can use the
-- AddPermission API to add a permission to the policy. You have
-- one access policy but it can have multiple permission statements.
--
-- This operation requires permission for the 'lambda:AddPermission'
-- action.
--
-- See: AWS API Reference for AddPermission.
module Network.AWS.Lambda.AddPermission
-- | Creates a value of AddPermission with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
addPermission :: Text -> Text -> Text -> Text -> AddPermission
-- | See: addPermission smart constructor.
data AddPermission
-- | The AWS account ID (without a hyphen) of the source owner. For
-- example, if the SourceArn identifies a bucket, then this is
-- the bucket owner's account ID. You can use this additional condition
-- to ensure the bucket you specify is owned by a specific account (it is
-- possible the bucket owner deleted the bucket and some other AWS
-- account created the bucket). You can also use this condition to
-- specify all sources (that is, you don't specify the
-- SourceArn) owned by a specific account.
apSourceAccount :: Lens' AddPermission (Maybe Text)
-- | This is optional; however, when granting Amazon S3 permission to
-- invoke your function, you should specify this field with the bucket
-- Amazon Resource Name (ARN) as its value. This ensures that only events
-- generated from the specified bucket can invoke the function.
--
-- If you add a permission for the Amazon S3 principal without providing
-- the source ARN, any AWS account that creates a mapping to your
-- function ARN can send events to invoke your Lambda function from
-- Amazon S3.
apSourceARN :: Lens' AddPermission (Maybe Text)
-- | Name of the Lambda function whose access policy you are updating by
-- adding a new permission.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
apFunctionName :: Lens' AddPermission Text
-- | A unique statement identifier.
apStatementId :: Lens' AddPermission Text
-- | The AWS Lambda action you want to allow in this statement. Each Lambda
-- action is a string starting with "lambda:" followed by the API name
-- (see Operations). For example, "lambda:CreateFunction". You can use
-- wildcard ("lambda:*") to grant permission for all AWS Lambda actions.
apAction :: Lens' AddPermission Text
-- | The principal who is getting this permission. It can be Amazon S3
-- service Principal ("s3.amazonaws.com") if you want Amazon S3 to invoke
-- the function, an AWS account ID if you are granting cross-account
-- permission, or any valid AWS service principal such as
-- "sns.amazonaws.com". For example, you might want to allow a custom
-- application in another AWS account to push events to AWS Lambda by
-- invoking your function.
apPrincipal :: Lens' AddPermission Text
-- | Creates a value of AddPermissionResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
addPermissionResponse :: Int -> AddPermissionResponse
-- | See: addPermissionResponse smart constructor.
data AddPermissionResponse
-- | The permission statement you specified in the request. The response
-- returns the same as a string using "\" as an escape character in the
-- JSON.
aprsStatement :: Lens' AddPermissionResponse (Maybe Text)
-- | The response status code.
aprsStatus :: Lens' AddPermissionResponse Int
instance Typeable AddPermission
instance Typeable AddPermissionResponse
instance Eq AddPermission
instance Read AddPermission
instance Show AddPermission
instance Data AddPermission
instance Generic AddPermission
instance Eq AddPermissionResponse
instance Read AddPermissionResponse
instance Show AddPermissionResponse
instance Data AddPermissionResponse
instance Generic AddPermissionResponse
instance Datatype D1AddPermission
instance Constructor C1_0AddPermission
instance Selector S1_0_0AddPermission
instance Selector S1_0_1AddPermission
instance Selector S1_0_2AddPermission
instance Selector S1_0_3AddPermission
instance Selector S1_0_4AddPermission
instance Selector S1_0_5AddPermission
instance Datatype D1AddPermissionResponse
instance Constructor C1_0AddPermissionResponse
instance Selector S1_0_0AddPermissionResponse
instance Selector S1_0_1AddPermissionResponse
instance ToQuery AddPermission
instance ToPath AddPermission
instance ToJSON AddPermission
instance ToHeaders AddPermission
instance AWSRequest AddPermission
-- | Returns a list of event source mappings you created using the
-- CreateEventSourceMapping (see CreateEventSourceMapping),
-- where you identify a stream as an event source. This list does not
-- include Amazon S3 event sources.
--
-- For each mapping, the API returns configuration information. You can
-- optionally specify filters to retrieve specific event source mappings.
--
-- This operation requires permission for the
-- 'lambda:ListEventSourceMappings' action.
--
-- See: AWS API Reference for ListEventSourceMappings.
--
-- This operation returns paginated results.
module Network.AWS.Lambda.ListEventSourceMappings
-- | Creates a value of ListEventSourceMappings with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listEventSourceMappings :: ListEventSourceMappings
-- | See: listEventSourceMappings smart constructor.
data ListEventSourceMappings
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
lesmEventSourceARN :: Lens' ListEventSourceMappings (Maybe Text)
-- | Optional integer. Specifies the maximum number of event sources to
-- return in response. This value must be greater than 0.
lesmMaxItems :: Lens' ListEventSourceMappings (Maybe Natural)
-- | Optional string. An opaque pagination token returned from a previous
-- ListEventSourceMappings operation. If present, specifies to
-- continue the list from where the returning call left off.
lesmMarker :: Lens' ListEventSourceMappings (Maybe Text)
-- | The name of the Lambda function.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
lesmFunctionName :: Lens' ListEventSourceMappings (Maybe Text)
-- | Creates a value of ListEventSourceMappingsResponse with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listEventSourceMappingsResponse :: Int -> ListEventSourceMappingsResponse
-- | Contains a list of event sources (see
-- API_EventSourceMappingConfiguration)
--
-- See: listEventSourceMappingsResponse smart constructor.
data ListEventSourceMappingsResponse
-- | An array of EventSourceMappingConfiguration objects.
lesmrsEventSourceMappings :: Lens' ListEventSourceMappingsResponse [EventSourceMappingConfiguration]
-- | A string, present if there are more event source mappings.
lesmrsNextMarker :: Lens' ListEventSourceMappingsResponse (Maybe Text)
-- | The response status code.
lesmrsStatus :: Lens' ListEventSourceMappingsResponse Int
instance Typeable ListEventSourceMappings
instance Typeable ListEventSourceMappingsResponse
instance Eq ListEventSourceMappings
instance Read ListEventSourceMappings
instance Show ListEventSourceMappings
instance Data ListEventSourceMappings
instance Generic ListEventSourceMappings
instance Eq ListEventSourceMappingsResponse
instance Read ListEventSourceMappingsResponse
instance Show ListEventSourceMappingsResponse
instance Data ListEventSourceMappingsResponse
instance Generic ListEventSourceMappingsResponse
instance Datatype D1ListEventSourceMappings
instance Constructor C1_0ListEventSourceMappings
instance Selector S1_0_0ListEventSourceMappings
instance Selector S1_0_1ListEventSourceMappings
instance Selector S1_0_2ListEventSourceMappings
instance Selector S1_0_3ListEventSourceMappings
instance Datatype D1ListEventSourceMappingsResponse
instance Constructor C1_0ListEventSourceMappingsResponse
instance Selector S1_0_0ListEventSourceMappingsResponse
instance Selector S1_0_1ListEventSourceMappingsResponse
instance Selector S1_0_2ListEventSourceMappingsResponse
instance ToQuery ListEventSourceMappings
instance ToPath ListEventSourceMappings
instance ToHeaders ListEventSourceMappings
instance AWSRequest ListEventSourceMappings
instance AWSPager ListEventSourceMappings
-- | Returns the configuration information of the Lambda function and a
-- presigned URL link to the .zip file you uploaded with CreateFunction
-- so you can download the .zip file. Note that the URL is valid for up
-- to 10 minutes. The configuration information is the same information
-- you provided as parameters when uploading the function.
--
-- This operation requires permission for the 'lambda:GetFunction'
-- action.
--
-- See: AWS API Reference for GetFunction.
module Network.AWS.Lambda.GetFunction
-- | Creates a value of GetFunction with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getFunction :: Text -> GetFunction
-- | See: getFunction smart constructor.
data GetFunction
-- | The Lambda function name.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
gfFunctionName :: Lens' GetFunction Text
-- | Creates a value of GetFunctionResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getFunctionResponse :: Int -> GetFunctionResponse
-- | This response contains the object for the Lambda function location
-- (see API_FunctionCodeLocation
--
-- See: getFunctionResponse smart constructor.
data GetFunctionResponse
-- | Undocumented member.
gfrsCode :: Lens' GetFunctionResponse (Maybe FunctionCodeLocation)
-- | Undocumented member.
gfrsConfiguration :: Lens' GetFunctionResponse (Maybe FunctionConfiguration)
-- | The response status code.
gfrsStatus :: Lens' GetFunctionResponse Int
instance Typeable GetFunction
instance Typeable GetFunctionResponse
instance Eq GetFunction
instance Read GetFunction
instance Show GetFunction
instance Data GetFunction
instance Generic GetFunction
instance Eq GetFunctionResponse
instance Read GetFunctionResponse
instance Show GetFunctionResponse
instance Data GetFunctionResponse
instance Generic GetFunctionResponse
instance Datatype D1GetFunction
instance Constructor C1_0GetFunction
instance Selector S1_0_0GetFunction
instance Datatype D1GetFunctionResponse
instance Constructor C1_0GetFunctionResponse
instance Selector S1_0_0GetFunctionResponse
instance Selector S1_0_1GetFunctionResponse
instance Selector S1_0_2GetFunctionResponse
instance ToQuery GetFunction
instance ToPath GetFunction
instance ToHeaders GetFunction
instance AWSRequest GetFunction
-- | Identifies a stream as an event source for a Lambda function. It can
-- be either an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS
-- Lambda invokes the specified function when records are posted to the
-- stream.
--
-- This is the pull model, where AWS Lambda invokes the function. For
-- more information, go to AWS Lambda: How it Works in the AWS
-- Lambda Developer Guide.
--
-- This association between an Amazon Kinesis stream and a Lambda
-- function is called the event source mapping. You provide the
-- configuration information (for example, which stream to read from and
-- which Lambda function to invoke) for the event source mapping in the
-- request body.
--
-- Each event source, such as an Amazon Kinesis or a DynamoDB stream, can
-- be associated with multiple AWS Lambda function. A given Lambda
-- function can be associated with multiple AWS event sources.
--
-- This operation requires permission for the
-- 'lambda:CreateEventSourceMapping' action.
--
-- See: AWS API Reference for CreateEventSourceMapping.
module Network.AWS.Lambda.CreateEventSourceMapping
-- | Creates a value of CreateEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
createEventSourceMapping :: Text -> Text -> EventSourcePosition -> CreateEventSourceMapping
-- | See: createEventSourceMapping smart constructor.
data CreateEventSourceMapping
-- | Indicates whether AWS Lambda should begin polling the event source,
-- the default is not enabled.
cesmEnabled :: Lens' CreateEventSourceMapping (Maybe Bool)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records. The default is 100
-- records.
cesmBatchSize :: Lens' CreateEventSourceMapping (Maybe Natural)
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis or the Amazon
-- DynamoDB stream that is the event source. Any record added to this
-- stream could cause AWS Lambda to invoke your Lambda function, it
-- depends on the BatchSize. AWS Lambda POSTs the Amazon Kinesis
-- event, containing records, to your Lambda function as JSON.
cesmEventSourceARN :: Lens' CreateEventSourceMapping Text
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
cesmFunctionName :: Lens' CreateEventSourceMapping Text
-- | The position in the stream where AWS Lambda should start reading. For
-- more information, go to ShardIteratorType in the Amazon
-- Kinesis API Reference.
cesmStartingPosition :: Lens' CreateEventSourceMapping EventSourcePosition
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance Typeable CreateEventSourceMapping
instance Eq CreateEventSourceMapping
instance Read CreateEventSourceMapping
instance Show CreateEventSourceMapping
instance Data CreateEventSourceMapping
instance Generic CreateEventSourceMapping
instance Datatype D1CreateEventSourceMapping
instance Constructor C1_0CreateEventSourceMapping
instance Selector S1_0_0CreateEventSourceMapping
instance Selector S1_0_1CreateEventSourceMapping
instance Selector S1_0_2CreateEventSourceMapping
instance Selector S1_0_3CreateEventSourceMapping
instance Selector S1_0_4CreateEventSourceMapping
instance ToQuery CreateEventSourceMapping
instance ToPath CreateEventSourceMapping
instance ToJSON CreateEventSourceMapping
instance ToHeaders CreateEventSourceMapping
instance AWSRequest CreateEventSourceMapping
-- | Creates a new Lambda function. The function metadata is created from
-- the request parameters, and the code for the function is provided by a
-- .zip file in the request body. If the function name already exists,
-- the operation will fail. Note that the function name is
-- case-sensitive.
--
-- This operation requires permission for the 'lambda:CreateFunction'
-- action.
--
-- See: AWS API Reference for CreateFunction.
module Network.AWS.Lambda.CreateFunction
-- | Creates a value of CreateFunction with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
createFunction :: Text -> Runtime -> Text -> Text -> FunctionCode -> CreateFunction
-- | See: createFunction smart constructor.
data CreateFunction
-- | The amount of memory, in MB, your Lambda function is given. Lambda
-- uses this memory size to infer the amount of CPU and memory allocated
-- to your function. Your function use-case determines your CPU and
-- memory requirements. For example, a database operation might need less
-- memory compared to an image processing function. The default value is
-- 128 MB. The value must be a multiple of 64 MB.
cfMemorySize :: Lens' CreateFunction (Maybe Natural)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
cfTimeout :: Lens' CreateFunction (Maybe Natural)
-- | A short, user-defined function description. Lambda does not use this
-- value. Assign a meaningful description as you see fit.
cfDescription :: Lens' CreateFunction (Maybe Text)
-- | The name you want to assign to the function you are uploading. You can
-- specify an unqualified function name (for example, "Thumbnail") or you
-- can specify Amazon Resource Name (ARN) of the function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length. The function names appear in the console and are
-- returned in the ListFunctions API. Function names are used to specify
-- functions to other AWS Lambda APIs, such as Invoke.
cfFunctionName :: Lens' CreateFunction Text
-- | The runtime environment for the Lambda function you are uploading.
-- Currently, Lambda supports "java" and "nodejs" as the runtime.
cfRuntime :: Lens' CreateFunction Runtime
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources. For more information, see AWS Lambda: How it
-- Works
cfRole :: Lens' CreateFunction Text
-- | The function within your code that Lambda calls to begin execution.
-- For Node.js, it is the module-name.export value in your
-- function. For Java, it can be 'package.class-name::handler' or
-- 'package.class-name'. For more information, see Lambda Function
-- Handler (Java).
cfHandler :: Lens' CreateFunction Text
-- | The code for the Lambda function.
cfCode :: Lens' CreateFunction FunctionCode
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
instance Typeable CreateFunction
instance Eq CreateFunction
instance Read CreateFunction
instance Show CreateFunction
instance Data CreateFunction
instance Generic CreateFunction
instance Datatype D1CreateFunction
instance Constructor C1_0CreateFunction
instance Selector S1_0_0CreateFunction
instance Selector S1_0_1CreateFunction
instance Selector S1_0_2CreateFunction
instance Selector S1_0_3CreateFunction
instance Selector S1_0_4CreateFunction
instance Selector S1_0_5CreateFunction
instance Selector S1_0_6CreateFunction
instance Selector S1_0_7CreateFunction
instance ToQuery CreateFunction
instance ToPath CreateFunction
instance ToJSON CreateFunction
instance ToHeaders CreateFunction
instance AWSRequest CreateFunction
-- | Returns configuration information for the specified event source
-- mapping (see CreateEventSourceMapping).
--
-- This operation requires permission for the
-- 'lambda:GetEventSourceMapping' action.
--
-- See: AWS API Reference for GetEventSourceMapping.
module Network.AWS.Lambda.GetEventSourceMapping
-- | Creates a value of GetEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getEventSourceMapping :: Text -> GetEventSourceMapping
-- | See: getEventSourceMapping smart constructor.
data GetEventSourceMapping
-- | The AWS Lambda assigned ID of the event source mapping.
gesmUUId :: Lens' GetEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance Typeable GetEventSourceMapping
instance Eq GetEventSourceMapping
instance Read GetEventSourceMapping
instance Show GetEventSourceMapping
instance Data GetEventSourceMapping
instance Generic GetEventSourceMapping
instance Datatype D1GetEventSourceMapping
instance Constructor C1_0GetEventSourceMapping
instance Selector S1_0_0GetEventSourceMapping
instance ToQuery GetEventSourceMapping
instance ToPath GetEventSourceMapping
instance ToHeaders GetEventSourceMapping
instance AWSRequest GetEventSourceMapping
-- | Invokes a specified Lambda function.
--
-- This operation requires permission for the 'lambda:InvokeFunction'
-- action.
--
-- See: AWS API Reference for Invoke.
module Network.AWS.Lambda.Invoke
-- | Creates a value of Invoke with the minimum fields required to
-- make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
invoke :: Text -> Invoke
-- | See: invoke smart constructor.
data Invoke
-- | By default, the Invoke API assumes "RequestResponse" invocation
-- type. You can optionally request asynchronous execution by specifying
-- "Event" as the InvocationType. You can also use this parameter
-- to request AWS Lambda to not execute the function but do some
-- verification, such as if the caller is authorized to invoke the
-- function and if the inputs are valid. You request this by specifying
-- "DryRun" as the InvocationType. This is useful in a
-- cross-account scenario when you want to verify access to a function
-- without running it.
iInvocationType :: Lens' Invoke (Maybe InvocationType)
-- | JSON that you want to provide to your Lambda function as input.
--
-- Note: This Lens automatically encodes and decodes Base64
-- data, despite what the AWS documentation might say. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
iPayload :: Lens' Invoke (Maybe ByteString)
-- | You can set this optional parameter to "Tail" in the request only if
-- you specify the InvocationType parameter with value
-- "RequestResponse". In this case, AWS Lambda returns the base64-encoded
-- last 4 KB of log data produced by your Lambda function in the
-- 'x-amz-log-results' header.
iLogType :: Lens' Invoke (Maybe LogType)
-- | Using the ClientContext you can pass client-specific
-- information to the Lambda function you are invoking. You can then
-- process the client information in your Lambda function as you choose
-- through the context variable. For an example of a ClientContext JSON,
-- go to PutEvents in the Amazon Mobile Analytics API Reference
-- and User Guide.
--
-- The ClientContext JSON must be base64-encoded.
iClientContext :: Lens' Invoke (Maybe Text)
-- | The Lambda function name.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
iFunctionName :: Lens' Invoke Text
-- | Creates a value of InvokeResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
invokeResponse :: Int -> InvokeResponse
-- | Upon success, returns an empty response. Otherwise, throws an
-- exception.
--
-- See: invokeResponse smart constructor.
data InvokeResponse
-- | Indicates whether an error occurred while executing the Lambda
-- function. If an error occurred this field will have one of two values;
-- Handled or Unhandled. Handled errors are
-- errors that are reported by the function while the Unhandled
-- errors are those detected and reported by AWS Lambda. Unhandled errors
-- include out of memory errors and function timeouts. For information
-- about how to report an Handled error, see Programming
-- Model.
irsFunctionError :: Lens' InvokeResponse (Maybe Text)
-- | It is the base64-encoded logs for the Lambda function invocation. This
-- is present only if the invocation type is "RequestResponse" and the
-- logs were requested.
irsLogResult :: Lens' InvokeResponse (Maybe Text)
-- | It is the JSON representation of the object returned by the Lambda
-- function. In This is present only if the invocation type is
-- "RequestResponse".
--
-- In the event of a function error this field contains a message
-- describing the error. For the Handled errors the Lambda
-- function will report this message. For Unhandled errors AWS
-- Lambda reports the message.
--
-- Note: This Lens automatically encodes and decodes Base64
-- data, despite what the AWS documentation might say. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
irsPayload :: Lens' InvokeResponse (Maybe ByteString)
-- | The HTTP status code will be in the 200 range for successful request.
-- For the "RequestResonse" invocation type this status code will be 200.
-- For the "Event" invocation type this status code will be 202. For the
-- "DryRun" invocation type the status code will be 204.
irsStatusCode :: Lens' InvokeResponse Int
instance Typeable Invoke
instance Typeable InvokeResponse
instance Eq Invoke
instance Read Invoke
instance Show Invoke
instance Data Invoke
instance Generic Invoke
instance Eq InvokeResponse
instance Read InvokeResponse
instance Show InvokeResponse
instance Data InvokeResponse
instance Generic InvokeResponse
instance Datatype D1Invoke
instance Constructor C1_0Invoke
instance Selector S1_0_0Invoke
instance Selector S1_0_1Invoke
instance Selector S1_0_2Invoke
instance Selector S1_0_3Invoke
instance Selector S1_0_4Invoke
instance Datatype D1InvokeResponse
instance Constructor C1_0InvokeResponse
instance Selector S1_0_0InvokeResponse
instance Selector S1_0_1InvokeResponse
instance Selector S1_0_2InvokeResponse
instance Selector S1_0_3InvokeResponse
instance ToQuery Invoke
instance ToPath Invoke
instance ToJSON Invoke
instance ToHeaders Invoke
instance AWSRequest Invoke
-- | You can remove individual permissions from an access policy associated
-- with a Lambda function by providing a Statement ID.
--
-- Note that removal of a permission will cause an active event source to
-- lose permission to the function.
--
-- You need permission for the 'lambda:RemovePermission' action.
--
-- See: AWS API Reference for RemovePermission.
module Network.AWS.Lambda.RemovePermission
-- | Creates a value of RemovePermission with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
removePermission :: Text -> Text -> RemovePermission
-- | See: removePermission smart constructor.
data RemovePermission
-- | Lambda function whose access policy you want to remove a permission
-- from.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
rpFunctionName :: Lens' RemovePermission Text
-- | Statement ID of the permission to remove.
rpStatementId :: Lens' RemovePermission Text
-- | Creates a value of RemovePermissionResponse with the minimum
-- fields required to make a request.
removePermissionResponse :: RemovePermissionResponse
-- | See: removePermissionResponse smart constructor.
data RemovePermissionResponse
instance Typeable RemovePermission
instance Typeable RemovePermissionResponse
instance Eq RemovePermission
instance Read RemovePermission
instance Show RemovePermission
instance Data RemovePermission
instance Generic RemovePermission
instance Eq RemovePermissionResponse
instance Read RemovePermissionResponse
instance Show RemovePermissionResponse
instance Data RemovePermissionResponse
instance Generic RemovePermissionResponse
instance Datatype D1RemovePermission
instance Constructor C1_0RemovePermission
instance Selector S1_0_0RemovePermission
instance Selector S1_0_1RemovePermission
instance Datatype D1RemovePermissionResponse
instance Constructor C1_0RemovePermissionResponse
instance ToQuery RemovePermission
instance ToPath RemovePermission
instance ToHeaders RemovePermission
instance AWSRequest RemovePermission
-- | Removes an event source mapping. This means AWS Lambda will no longer
-- invoke the function for events in the associated source.
--
-- This operation requires permission for the
-- 'lambda:DeleteEventSourceMapping' action.
--
-- See: AWS API Reference for DeleteEventSourceMapping.
module Network.AWS.Lambda.DeleteEventSourceMapping
-- | Creates a value of DeleteEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
deleteEventSourceMapping :: Text -> DeleteEventSourceMapping
-- | See: deleteEventSourceMapping smart constructor.
data DeleteEventSourceMapping
-- | The event source mapping ID.
desmUUId :: Lens' DeleteEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance Typeable DeleteEventSourceMapping
instance Eq DeleteEventSourceMapping
instance Read DeleteEventSourceMapping
instance Show DeleteEventSourceMapping
instance Data DeleteEventSourceMapping
instance Generic DeleteEventSourceMapping
instance Datatype D1DeleteEventSourceMapping
instance Constructor C1_0DeleteEventSourceMapping
instance Selector S1_0_0DeleteEventSourceMapping
instance ToQuery DeleteEventSourceMapping
instance ToPath DeleteEventSourceMapping
instance ToHeaders DeleteEventSourceMapping
instance AWSRequest DeleteEventSourceMapping
-- | You can update an event source mapping. This is useful if you want to
-- change the parameters of the existing mapping without losing your
-- position in the stream. You can change which function will receive the
-- stream records, but to change the stream itself, you must create a new
-- mapping.
--
-- This operation requires permission for the
-- 'lambda:UpdateEventSourceMapping' action.
--
-- See: AWS API Reference for UpdateEventSourceMapping.
module Network.AWS.Lambda.UpdateEventSourceMapping
-- | Creates a value of UpdateEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
updateEventSourceMapping :: Text -> UpdateEventSourceMapping
-- | See: updateEventSourceMapping smart constructor.
data UpdateEventSourceMapping
-- | Specifies whether AWS Lambda should actively poll the stream or not.
-- If disabled, AWS Lambda will not poll the stream.
uesmEnabled :: Lens' UpdateEventSourceMapping (Maybe Bool)
-- | The maximum number of stream records that can be sent to your Lambda
-- function for a single invocation.
uesmBatchSize :: Lens' UpdateEventSourceMapping (Maybe Natural)
-- | The Lambda function to which you want the stream records sent.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
uesmFunctionName :: Lens' UpdateEventSourceMapping (Maybe Text)
-- | The event source mapping identifier.
uesmUUId :: Lens' UpdateEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance Typeable UpdateEventSourceMapping
instance Eq UpdateEventSourceMapping
instance Read UpdateEventSourceMapping
instance Show UpdateEventSourceMapping
instance Data UpdateEventSourceMapping
instance Generic UpdateEventSourceMapping
instance Datatype D1UpdateEventSourceMapping
instance Constructor C1_0UpdateEventSourceMapping
instance Selector S1_0_0UpdateEventSourceMapping
instance Selector S1_0_1UpdateEventSourceMapping
instance Selector S1_0_2UpdateEventSourceMapping
instance Selector S1_0_3UpdateEventSourceMapping
instance ToQuery UpdateEventSourceMapping
instance ToPath UpdateEventSourceMapping
instance ToJSON UpdateEventSourceMapping
instance ToHeaders UpdateEventSourceMapping
instance AWSRequest UpdateEventSourceMapping
-- | Returns the configuration information of the Lambda function. This the
-- same information you provided as parameters when uploading the
-- function by using CreateFunction.
--
-- This operation requires permission for the
-- 'lambda:GetFunctionConfiguration' operation.
--
-- See: AWS API Reference for GetFunctionConfiguration.
module Network.AWS.Lambda.GetFunctionConfiguration
-- | Creates a value of GetFunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getFunctionConfiguration :: Text -> GetFunctionConfiguration
-- | See: getFunctionConfiguration smart constructor.
data GetFunctionConfiguration
-- | The name of the Lambda function for which you want to retrieve the
-- configuration information.
--
-- You can specify an unqualified function name (for example,
-- "Thumbnail") or you can specify Amazon Resource Name (ARN) of the
-- function (for example,
-- "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda
-- also allows you to specify only the account ID qualifier (for example,
-- "account-id:Thumbnail"). Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- character in length.
gfcFunctionName :: Lens' GetFunctionConfiguration Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
instance Typeable GetFunctionConfiguration
instance Eq GetFunctionConfiguration
instance Read GetFunctionConfiguration
instance Show GetFunctionConfiguration
instance Data GetFunctionConfiguration
instance Generic GetFunctionConfiguration
instance Datatype D1GetFunctionConfiguration
instance Constructor C1_0GetFunctionConfiguration
instance Selector S1_0_0GetFunctionConfiguration
instance ToQuery GetFunctionConfiguration
instance ToPath GetFunctionConfiguration
instance ToHeaders GetFunctionConfiguration
instance AWSRequest GetFunctionConfiguration
-- | AWS Lambda
--
-- Overview
--
-- This is the AWS Lambda API Reference. The AWS Lambda Developer
-- Guide provides additional information. For the service overview, go to
-- What is AWS Lambda, and for information about how the service
-- works, go to AWS Lambda: How it Works in the AWS Lambda
-- Developer Guide.
--
-- See: AWS API Reference
module Network.AWS.Lambda
-- | API version '2015-03-31' of the Amazon Lambda SDK configuration.
lambda :: Service
-- | Lambda function access policy is limited to 20 KB.
_PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for UnsupportedMediaTypeException' errors.
_UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request body could not be parsed as JSON.
_InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError
-- | One of the parameters in the request is invalid. For example, if you
-- provided an IAM role for AWS Lambda to assume in the
-- CreateFunction or the UpdateFunctionConfiguration
-- API, that AWS Lambda is unable to assume you will get this exception.
_InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for RequestTooLargeException' errors.
_RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for TooManyRequestsException' errors.
_TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The AWS Lambda service encountered an internal error.
_ServiceException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Prism for CodeStorageExceededException' errors.
_CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource already exists.
_ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource (for example, a Lambda function or access policy
-- statement) specified in the request does not exist.
_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
data EventSourcePosition
Latest :: EventSourcePosition
TrimHorizon :: EventSourcePosition
data InvocationType
DryRun :: InvocationType
Event :: InvocationType
RequestResponse :: InvocationType
data LogType
None :: LogType
Tail :: LogType
data Runtime
JAVA8 :: Runtime
Nodejs :: Runtime
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be "Creating",
-- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or
-- "Deleting".
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
-- | The code for the Lambda function.
--
-- See: functionCode smart constructor.
data FunctionCode
-- | Creates a value of FunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionCode :: FunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
fcS3Key :: Lens' FunctionCode (Maybe Text)
-- | A base64-encoded .zip file containing your deployment package. For
-- more information about creating a .zip file, go to Execution
-- Permissions in the AWS Lambda Developer Guide.
--
-- Note: This Lens automatically encodes and decodes Base64
-- data, despite what the AWS documentation might say. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
fcZipFile :: Lens' FunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS region
-- where you are creating the Lambda function.
fcS3Bucket :: Lens' FunctionCode (Maybe Text)
-- | The object for the Lambda function location.
--
-- See: functionCodeLocation smart constructor.
data FunctionCodeLocation
-- | Creates a value of FunctionCodeLocation with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionCodeLocation :: FunctionCodeLocation
-- | The presigned URL you can use to download the function's .zip file
-- that you previously uploaded. The URL is valid for up to 10 minutes.
fclLocation :: Lens' FunctionCodeLocation (Maybe Text)
-- | The repository from which you can download the function.
fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text)
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
functionConfiguration :: FunctionConfiguration
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The timestamp of the last time you updated the function.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)