-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Amazon Lambda SDK. -- -- 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. -- -- The types from this library are intended to be used with -- amazonka, which provides mechanisms for specifying AuthN/AuthZ -- information and sending requests. -- -- Use of lenses is required for constructing and manipulating types. -- This is due to the amount of nesting of AWS types and transparency -- regarding de/serialisation into more palatable Haskell values. The -- provided lenses should be compatible with any of the major lens -- libraries such as lens or lens-family-core. -- -- See Network.AWS.Lambda and the AWS API Reference to get -- started. @package amazonka-lambda @version 1.3.3 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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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. gprsResponseStatus :: Lens' GetPolicyResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.GetPolicy.S1_0_1GetPolicyResponse instance GHC.Generics.Selector Network.AWS.Lambda.GetPolicy.S1_0_0GetPolicyResponse instance GHC.Generics.Constructor Network.AWS.Lambda.GetPolicy.C1_0GetPolicyResponse instance GHC.Generics.Datatype Network.AWS.Lambda.GetPolicy.D1GetPolicyResponse instance GHC.Generics.Selector Network.AWS.Lambda.GetPolicy.S1_0_0GetPolicy instance GHC.Generics.Constructor Network.AWS.Lambda.GetPolicy.C1_0GetPolicy instance GHC.Generics.Datatype Network.AWS.Lambda.GetPolicy.D1GetPolicy instance GHC.Generics.Generic Network.AWS.Lambda.GetPolicy.GetPolicyResponse instance Data.Data.Data Network.AWS.Lambda.GetPolicy.GetPolicyResponse instance GHC.Show.Show Network.AWS.Lambda.GetPolicy.GetPolicyResponse instance GHC.Read.Read Network.AWS.Lambda.GetPolicy.GetPolicyResponse instance GHC.Classes.Eq Network.AWS.Lambda.GetPolicy.GetPolicyResponse instance GHC.Generics.Generic Network.AWS.Lambda.GetPolicy.GetPolicy instance Data.Data.Data Network.AWS.Lambda.GetPolicy.GetPolicy instance GHC.Show.Show Network.AWS.Lambda.GetPolicy.GetPolicy instance GHC.Read.Read Network.AWS.Lambda.GetPolicy.GetPolicy instance GHC.Classes.Eq Network.AWS.Lambda.GetPolicy.GetPolicy instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetPolicy.GetPolicy instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetPolicy.GetPolicy instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetPolicy.GetPolicy instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetPolicy.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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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 GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_4UpdateFunctionCode instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_3UpdateFunctionCode instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_2UpdateFunctionCode instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_1UpdateFunctionCode instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_0UpdateFunctionCode instance GHC.Generics.Constructor Network.AWS.Lambda.UpdateFunctionCode.C1_0UpdateFunctionCode instance GHC.Generics.Datatype Network.AWS.Lambda.UpdateFunctionCode.D1UpdateFunctionCode instance GHC.Generics.Generic Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Data.Data.Data Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance GHC.Show.Show Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance GHC.Read.Read Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance GHC.Classes.Eq Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateFunctionCode.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 string. An opaque pagination token returned from a previous -- ListFunctions operation. If present, indicates where to -- continue the listing. lfMarker :: Lens' ListFunctions (Maybe Text) -- | 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) -- | 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. lfrsResponseStatus :: Lens' ListFunctionsResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.ListFunctions.S1_0_2ListFunctionsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListFunctions.S1_0_1ListFunctionsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListFunctions.S1_0_0ListFunctionsResponse instance GHC.Generics.Constructor Network.AWS.Lambda.ListFunctions.C1_0ListFunctionsResponse instance GHC.Generics.Datatype Network.AWS.Lambda.ListFunctions.D1ListFunctionsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListFunctions.S1_0_1ListFunctions instance GHC.Generics.Selector Network.AWS.Lambda.ListFunctions.S1_0_0ListFunctions instance GHC.Generics.Constructor Network.AWS.Lambda.ListFunctions.C1_0ListFunctions instance GHC.Generics.Datatype Network.AWS.Lambda.ListFunctions.D1ListFunctions instance GHC.Generics.Generic Network.AWS.Lambda.ListFunctions.ListFunctionsResponse instance Data.Data.Data Network.AWS.Lambda.ListFunctions.ListFunctionsResponse instance GHC.Show.Show Network.AWS.Lambda.ListFunctions.ListFunctionsResponse instance GHC.Read.Read Network.AWS.Lambda.ListFunctions.ListFunctionsResponse instance GHC.Classes.Eq Network.AWS.Lambda.ListFunctions.ListFunctionsResponse instance GHC.Generics.Generic Network.AWS.Lambda.ListFunctions.ListFunctions instance Data.Data.Data Network.AWS.Lambda.ListFunctions.ListFunctions instance GHC.Show.Show Network.AWS.Lambda.ListFunctions.ListFunctions instance GHC.Read.Read Network.AWS.Lambda.ListFunctions.ListFunctions instance GHC.Classes.Eq Network.AWS.Lambda.ListFunctions.ListFunctions instance Network.AWS.Pager.AWSPager Network.AWS.Lambda.ListFunctions.ListFunctions instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListFunctions.ListFunctions instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListFunctions.ListFunctions instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListFunctions.ListFunctions instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListFunctions.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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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 GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_5UpdateFunctionConfiguration instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_4UpdateFunctionConfiguration instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_3UpdateFunctionConfiguration instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_2UpdateFunctionConfiguration instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_1UpdateFunctionConfiguration instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionConfiguration.S1_0_0UpdateFunctionConfiguration instance GHC.Generics.Constructor Network.AWS.Lambda.UpdateFunctionConfiguration.C1_0UpdateFunctionConfiguration instance GHC.Generics.Datatype Network.AWS.Lambda.UpdateFunctionConfiguration.D1UpdateFunctionConfiguration instance GHC.Generics.Generic Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Data.Data.Data Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance GHC.Show.Show Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance GHC.Read.Read Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance GHC.Classes.Eq Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateFunctionConfiguration.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 GHC.Generics.Constructor Network.AWS.Lambda.DeleteFunction.C1_0DeleteFunctionResponse instance GHC.Generics.Datatype Network.AWS.Lambda.DeleteFunction.D1DeleteFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.DeleteFunction.S1_0_0DeleteFunction instance GHC.Generics.Constructor Network.AWS.Lambda.DeleteFunction.C1_0DeleteFunction instance GHC.Generics.Datatype Network.AWS.Lambda.DeleteFunction.D1DeleteFunction instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse instance Data.Data.Data Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse instance GHC.Show.Show Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse instance GHC.Read.Read Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Data.Data.Data Network.AWS.Lambda.DeleteFunction.DeleteFunction instance GHC.Show.Show Network.AWS.Lambda.DeleteFunction.DeleteFunction instance GHC.Read.Read Network.AWS.Lambda.DeleteFunction.DeleteFunction instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteFunction.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. aprsResponseStatus :: Lens' AddPermissionResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_1AddPermissionResponse instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_0AddPermissionResponse instance GHC.Generics.Constructor Network.AWS.Lambda.AddPermission.C1_0AddPermissionResponse instance GHC.Generics.Datatype Network.AWS.Lambda.AddPermission.D1AddPermissionResponse instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_5AddPermission instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_4AddPermission instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_3AddPermission instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_2AddPermission instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_1AddPermission instance GHC.Generics.Selector Network.AWS.Lambda.AddPermission.S1_0_0AddPermission instance GHC.Generics.Constructor Network.AWS.Lambda.AddPermission.C1_0AddPermission instance GHC.Generics.Datatype Network.AWS.Lambda.AddPermission.D1AddPermission instance GHC.Generics.Generic Network.AWS.Lambda.AddPermission.AddPermissionResponse instance Data.Data.Data Network.AWS.Lambda.AddPermission.AddPermissionResponse instance GHC.Show.Show Network.AWS.Lambda.AddPermission.AddPermissionResponse instance GHC.Read.Read Network.AWS.Lambda.AddPermission.AddPermissionResponse instance GHC.Classes.Eq Network.AWS.Lambda.AddPermission.AddPermissionResponse instance GHC.Generics.Generic Network.AWS.Lambda.AddPermission.AddPermission instance Data.Data.Data Network.AWS.Lambda.AddPermission.AddPermission instance GHC.Show.Show Network.AWS.Lambda.AddPermission.AddPermission instance GHC.Read.Read Network.AWS.Lambda.AddPermission.AddPermission instance GHC.Classes.Eq Network.AWS.Lambda.AddPermission.AddPermission instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.AddPermission.AddPermission instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.AddPermission.AddPermission instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.AddPermission.AddPermission instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.AddPermission.AddPermission instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.AddPermission.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 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) -- | 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) -- | 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. lesmrsResponseStatus :: Lens' ListEventSourceMappingsResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_2ListEventSourceMappingsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_1ListEventSourceMappingsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_0ListEventSourceMappingsResponse instance GHC.Generics.Constructor Network.AWS.Lambda.ListEventSourceMappings.C1_0ListEventSourceMappingsResponse instance GHC.Generics.Datatype Network.AWS.Lambda.ListEventSourceMappings.D1ListEventSourceMappingsResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_3ListEventSourceMappings instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_2ListEventSourceMappings instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_1ListEventSourceMappings instance GHC.Generics.Selector Network.AWS.Lambda.ListEventSourceMappings.S1_0_0ListEventSourceMappings instance GHC.Generics.Constructor Network.AWS.Lambda.ListEventSourceMappings.C1_0ListEventSourceMappings instance GHC.Generics.Datatype Network.AWS.Lambda.ListEventSourceMappings.D1ListEventSourceMappings instance GHC.Generics.Generic Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse instance Data.Data.Data Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse instance GHC.Show.Show Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse instance GHC.Read.Read Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse instance GHC.Classes.Eq Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse instance GHC.Generics.Generic Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Data.Data.Data Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance GHC.Show.Show Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance GHC.Read.Read Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance GHC.Classes.Eq Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Network.AWS.Pager.AWSPager Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListEventSourceMappings.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. gfrsResponseStatus :: Lens' GetFunctionResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.GetFunction.S1_0_2GetFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.GetFunction.S1_0_1GetFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.GetFunction.S1_0_0GetFunctionResponse instance GHC.Generics.Constructor Network.AWS.Lambda.GetFunction.C1_0GetFunctionResponse instance GHC.Generics.Datatype Network.AWS.Lambda.GetFunction.D1GetFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.GetFunction.S1_0_0GetFunction instance GHC.Generics.Constructor Network.AWS.Lambda.GetFunction.C1_0GetFunction instance GHC.Generics.Datatype Network.AWS.Lambda.GetFunction.D1GetFunction instance GHC.Generics.Generic Network.AWS.Lambda.GetFunction.GetFunctionResponse instance Data.Data.Data Network.AWS.Lambda.GetFunction.GetFunctionResponse instance GHC.Show.Show Network.AWS.Lambda.GetFunction.GetFunctionResponse instance GHC.Read.Read Network.AWS.Lambda.GetFunction.GetFunctionResponse instance GHC.Classes.Eq Network.AWS.Lambda.GetFunction.GetFunctionResponse instance GHC.Generics.Generic Network.AWS.Lambda.GetFunction.GetFunction instance Data.Data.Data Network.AWS.Lambda.GetFunction.GetFunction instance GHC.Show.Show Network.AWS.Lambda.GetFunction.GetFunction instance GHC.Read.Read Network.AWS.Lambda.GetFunction.GetFunction instance GHC.Classes.Eq Network.AWS.Lambda.GetFunction.GetFunction instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetFunction.GetFunction instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetFunction.GetFunction instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetFunction.GetFunction instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetFunction.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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 GHC.Generics.Selector Network.AWS.Lambda.CreateEventSourceMapping.S1_0_4CreateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.CreateEventSourceMapping.S1_0_3CreateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.CreateEventSourceMapping.S1_0_2CreateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.CreateEventSourceMapping.S1_0_1CreateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.CreateEventSourceMapping.S1_0_0CreateEventSourceMapping instance GHC.Generics.Constructor Network.AWS.Lambda.CreateEventSourceMapping.C1_0CreateEventSourceMapping instance GHC.Generics.Datatype Network.AWS.Lambda.CreateEventSourceMapping.D1CreateEventSourceMapping instance GHC.Generics.Generic Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Data.Data.Data Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance GHC.Show.Show Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance GHC.Read.Read Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance GHC.Classes.Eq Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateEventSourceMapping.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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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 GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_7CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_6CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_5CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_4CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_3CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_2CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_1CreateFunction instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_0CreateFunction instance GHC.Generics.Constructor Network.AWS.Lambda.CreateFunction.C1_0CreateFunction instance GHC.Generics.Datatype Network.AWS.Lambda.CreateFunction.D1CreateFunction instance GHC.Generics.Generic Network.AWS.Lambda.CreateFunction.CreateFunction instance Data.Data.Data Network.AWS.Lambda.CreateFunction.CreateFunction instance GHC.Show.Show Network.AWS.Lambda.CreateFunction.CreateFunction instance GHC.Read.Read Network.AWS.Lambda.CreateFunction.CreateFunction instance GHC.Classes.Eq Network.AWS.Lambda.CreateFunction.CreateFunction instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateFunction.CreateFunction instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateFunction.CreateFunction instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.CreateFunction.CreateFunction instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateFunction.CreateFunction instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateFunction.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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 GHC.Generics.Selector Network.AWS.Lambda.GetEventSourceMapping.S1_0_0GetEventSourceMapping instance GHC.Generics.Constructor Network.AWS.Lambda.GetEventSourceMapping.C1_0GetEventSourceMapping instance GHC.Generics.Datatype Network.AWS.Lambda.GetEventSourceMapping.D1GetEventSourceMapping instance GHC.Generics.Generic Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Data.Data.Data Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance GHC.Show.Show Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance GHC.Read.Read Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance GHC.Classes.Eq Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetEventSourceMapping.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 -> HashMap Text Value -> 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) -- | 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 -- | JSON that you want to provide to your Lambda function as input. iPayload :: Lens' Invoke (HashMap Text Value) -- | 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. irsPayload :: Lens' InvokeResponse (Maybe (HashMap Text Value)) -- | 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 GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_3InvokeResponse instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_2InvokeResponse instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_1InvokeResponse instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_0InvokeResponse instance GHC.Generics.Constructor Network.AWS.Lambda.Invoke.C1_0InvokeResponse instance GHC.Generics.Datatype Network.AWS.Lambda.Invoke.D1InvokeResponse instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_4Invoke instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_3Invoke instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_2Invoke instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_1Invoke instance GHC.Generics.Selector Network.AWS.Lambda.Invoke.S1_0_0Invoke instance GHC.Generics.Constructor Network.AWS.Lambda.Invoke.C1_0Invoke instance GHC.Generics.Datatype Network.AWS.Lambda.Invoke.D1Invoke instance GHC.Generics.Generic Network.AWS.Lambda.Invoke.InvokeResponse instance Data.Data.Data Network.AWS.Lambda.Invoke.InvokeResponse instance GHC.Show.Show Network.AWS.Lambda.Invoke.InvokeResponse instance GHC.Classes.Eq Network.AWS.Lambda.Invoke.InvokeResponse instance GHC.Generics.Generic Network.AWS.Lambda.Invoke.Invoke instance Data.Data.Data Network.AWS.Lambda.Invoke.Invoke instance GHC.Show.Show Network.AWS.Lambda.Invoke.Invoke instance GHC.Classes.Eq Network.AWS.Lambda.Invoke.Invoke instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.Invoke.Invoke instance Network.AWS.Data.Body.ToBody Network.AWS.Lambda.Invoke.Invoke instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.Invoke.Invoke instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.Invoke.Invoke instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.Invoke.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 GHC.Generics.Constructor Network.AWS.Lambda.RemovePermission.C1_0RemovePermissionResponse instance GHC.Generics.Datatype Network.AWS.Lambda.RemovePermission.D1RemovePermissionResponse instance GHC.Generics.Selector Network.AWS.Lambda.RemovePermission.S1_0_1RemovePermission instance GHC.Generics.Selector Network.AWS.Lambda.RemovePermission.S1_0_0RemovePermission instance GHC.Generics.Constructor Network.AWS.Lambda.RemovePermission.C1_0RemovePermission instance GHC.Generics.Datatype Network.AWS.Lambda.RemovePermission.D1RemovePermission instance GHC.Generics.Generic Network.AWS.Lambda.RemovePermission.RemovePermissionResponse instance Data.Data.Data Network.AWS.Lambda.RemovePermission.RemovePermissionResponse instance GHC.Show.Show Network.AWS.Lambda.RemovePermission.RemovePermissionResponse instance GHC.Read.Read Network.AWS.Lambda.RemovePermission.RemovePermissionResponse instance GHC.Classes.Eq Network.AWS.Lambda.RemovePermission.RemovePermissionResponse instance GHC.Generics.Generic Network.AWS.Lambda.RemovePermission.RemovePermission instance Data.Data.Data Network.AWS.Lambda.RemovePermission.RemovePermission instance GHC.Show.Show Network.AWS.Lambda.RemovePermission.RemovePermission instance GHC.Read.Read Network.AWS.Lambda.RemovePermission.RemovePermission instance GHC.Classes.Eq Network.AWS.Lambda.RemovePermission.RemovePermission instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.RemovePermission.RemovePermission instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.RemovePermission.RemovePermission instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.RemovePermission.RemovePermission instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.RemovePermission.RemovePermission -- | 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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 GHC.Generics.Selector Network.AWS.Lambda.UpdateEventSourceMapping.S1_0_3UpdateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.UpdateEventSourceMapping.S1_0_2UpdateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.UpdateEventSourceMapping.S1_0_1UpdateEventSourceMapping instance GHC.Generics.Selector Network.AWS.Lambda.UpdateEventSourceMapping.S1_0_0UpdateEventSourceMapping instance GHC.Generics.Constructor Network.AWS.Lambda.UpdateEventSourceMapping.C1_0UpdateEventSourceMapping instance GHC.Generics.Datatype Network.AWS.Lambda.UpdateEventSourceMapping.D1UpdateEventSourceMapping instance GHC.Generics.Generic Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Data.Data.Data Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance GHC.Show.Show Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance GHC.Read.Read Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance GHC.Classes.Eq Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping -- | 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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 GHC.Generics.Selector Network.AWS.Lambda.DeleteEventSourceMapping.S1_0_0DeleteEventSourceMapping instance GHC.Generics.Constructor Network.AWS.Lambda.DeleteEventSourceMapping.C1_0DeleteEventSourceMapping instance GHC.Generics.Datatype Network.AWS.Lambda.DeleteEventSourceMapping.D1DeleteEventSourceMapping instance GHC.Generics.Generic Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Data.Data.Data Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance GHC.Show.Show Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance GHC.Read.Read Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance GHC.Classes.Eq Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping -- | 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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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 GHC.Generics.Selector Network.AWS.Lambda.GetFunctionConfiguration.S1_0_0GetFunctionConfiguration instance GHC.Generics.Constructor Network.AWS.Lambda.GetFunctionConfiguration.C1_0GetFunctionConfiguration instance GHC.Generics.Datatype Network.AWS.Lambda.GetFunctionConfiguration.D1GetFunctionConfiguration instance GHC.Generics.Generic Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Data.Data.Data Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance GHC.Show.Show Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance GHC.Read.Read Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance GHC.Classes.Eq Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetFunctionConfiguration.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 state of the event source mapping. It can be "Creating", -- "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or -- "Deleting". esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) -- | The Lambda function to invoke when AWS Lambda detects an event on the -- stream. esmcFunctionARN :: 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 memory size, in MB, you configured for the function. Must be a -- multiple of 64 MB. fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) -- | The runtime environment for the Lambda function. fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) -- | 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)