-- 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.7 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 -- | The content type of the Invoke request body is not JSON. _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 -- | The request payload exceeded the Invoke request body JSON -- input limit. For more information, see Limits _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 -- | You have exceeded your maximum total code size per account. -- Limits _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 PYTHON2_7 :: Runtime -- | Provides configuration information about a Lambda function version -- alias. -- -- See: aliasConfiguration smart constructor. data AliasConfiguration -- | Creates a value of AliasConfiguration with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- aliasConfiguration :: AliasConfiguration -- | Alias name. acName :: Lens' AliasConfiguration (Maybe Text) -- | Function version to which the alias points. acFunctionVersion :: Lens' AliasConfiguration (Maybe Text) -- | Lambda function ARN that is qualified using alias name as the suffix. -- For example, if you create an alias "BETA" pointing to a helloworld -- function version, the ARN is -- 'arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA'. acAliasARN :: Lens' AliasConfiguration (Maybe Text) -- | Alias description. acDescription :: Lens' AliasConfiguration (Maybe Text) -- | 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text) module Network.AWS.Lambda.Waiters -- | Returns the resource policy, containing a list of permissions that -- apply to a specific to an ARN that you specify via the -- Qualifier paramter. -- -- For informration about adding permissions, see AddPermission. -- -- 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 -- | You can specify this optional query parameter to specify function -- version or alias name in which case this API will return all -- permissions associated with the specific ARN. If you don't provide -- this parameter, the API will return permissions that apply to the -- unqualified function ARN. gpQualifier :: Lens' GetPolicy (Maybe Text) -- | Function name whose resource 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 resource 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_1GetPolicy 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) -- | This boolean parameter can be used to request AWS Lambda to update the -- Lambda function and publish a version as an atomic operation. uPublish :: Lens' UpdateFunctionCode (Maybe Bool) -- | 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.UpdateFunctionCode.S1_0_5UpdateFunctionCode 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: 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. -- -- If you don't specify a function version, AWS Lambda will delete the -- function, including all its versions, and any aliases pointing to the -- function versions. -- -- When you delete a function the associated resource policy is also -- deleted. You will need to delete the event source mappings explicitly. -- -- For information about function versioning, see AWS Lambda Function -- Versioning and Aliases. -- -- 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 -- | Using this optional parameter you can specify a function version (but -- not the $LATEST version) to direct AWS Lambda to delete a specific -- function version. If the function version has one or more aliases -- pointing to it, you will get an error because you cannot have aliases -- pointing to it. You can delete any function version but not the -- $LATEST, that is, you cannot specify $LATEST as the value of this -- parameter. The $LATEST version can be deleted only when you want to -- delete all the function versions and aliases. -- -- You can only specify a function version and not alias name using this -- parameter. You cannot delete a function version using its alias. -- -- If you don't specify this parameter, AWS Lambda will delete the -- function, including all its versions and aliases. dfQualifier :: Lens' DeleteFunction (Maybe Text) -- | 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_1DeleteFunction 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 -- | Publishes a version of your function from the current snapshot of -- HEAD. That is, AWS Lambda takes a snapshot of the function code and -- configuration information from HEAD and publishes a new version. The -- code and handler of this specific Lambda function version -- cannot be modified after publication, but you can modify the -- configuration information. -- -- See: AWS API Reference for PublishVersion. module Network.AWS.Lambda.PublishVersion -- | Creates a value of PublishVersion with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- publishVersion :: Text -> PublishVersion -- | See: publishVersion smart constructor. data PublishVersion -- | The SHA256 hash of the deployment package you want to publish. This -- provides validation on the code you are publishing. If you provide -- this parameter value must match the SHA256 of the HEAD version for the -- publication to succeed. pvCodeSha256 :: Lens' PublishVersion (Maybe Text) -- | The description for the version you are publishing. If not provided, -- AWS Lambda copies the description from the HEAD version. pvDescription :: Lens' PublishVersion (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. pvFunctionName :: Lens' PublishVersion 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.PublishVersion.S1_0_2PublishVersion instance GHC.Generics.Selector Network.AWS.Lambda.PublishVersion.S1_0_1PublishVersion instance GHC.Generics.Selector Network.AWS.Lambda.PublishVersion.S1_0_0PublishVersion instance GHC.Generics.Constructor Network.AWS.Lambda.PublishVersion.C1_0PublishVersion instance GHC.Generics.Datatype Network.AWS.Lambda.PublishVersion.D1PublishVersion instance GHC.Generics.Generic Network.AWS.Lambda.PublishVersion.PublishVersion instance Data.Data.Data Network.AWS.Lambda.PublishVersion.PublishVersion instance GHC.Show.Show Network.AWS.Lambda.PublishVersion.PublishVersion instance GHC.Read.Read Network.AWS.Lambda.PublishVersion.PublishVersion instance GHC.Classes.Eq Network.AWS.Lambda.PublishVersion.PublishVersion instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.PublishVersion.PublishVersion instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.PublishVersion.PublishVersion instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.PublishVersion.PublishVersion instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.PublishVersion.PublishVersion instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.PublishVersion.PublishVersion -- | Adds a permission to the resource policy associated with the specified -- AWS Lambda function. You use resource policies to grant permissions to -- event sources that use "push" model. In "push" model, event sources -- (such as Amazon S3 and custom applications) invoke your Lambda -- function. Each permission you add to the resource policy allows an -- event source, permission to invoke the Lambda function. -- -- For information about the push model, see AWS Lambda: How it -- Works. -- -- If you are using versioning feature (see AWS Lambda Function -- Versioning and Aliases), a Lambda function can have multiple ARNs -- that can be used to invoke the function. Note that, each permission -- you add to resource policy using this API is specific to an ARN, -- specified using the Qualifier parameter -- -- 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) -- | You can specify this optional query parameter to specify function -- version or alias name. The permission will then apply to the specific -- qualified ARN. For example, if you specify function version 2 as the -- qualifier, then permission applies only when request is made using -- qualified function ARN: -- -- 'arn:aws:lambda:aws-region:acct-id:function:function-name:2' -- -- If you specify alias name, for example "PROD", then the permission is -- valid only for requests made using the alias ARN: -- -- 'arn:aws:lambda:aws-region:acct-id:function:function-name:PROD' -- -- If the qualifier is not specified, the permission is valid only when -- requests is made using unqualified function ARN. -- -- 'arn:aws:lambda:aws-region:acct-id:function:function-name' apQualifier :: Lens' AddPermission (Maybe Text) -- | Name of the Lambda function whose resource 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_6AddPermission 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 -- | Using this API you can update function version to which the alias -- points to and alias description. For more information, see -- Introduction to AWS Lambda Aliases -- -- This requires permission for the lambda:UpdateAlias action. -- -- See: AWS API Reference for UpdateAlias. module Network.AWS.Lambda.UpdateAlias -- | Creates a value of UpdateAlias with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- updateAlias :: Text -> Text -> UpdateAlias -- | See: updateAlias smart constructor. data UpdateAlias -- | Using this parameter you can optionally change the Lambda function -- version to which the alias to points to. uaFunctionVersion :: Lens' UpdateAlias (Maybe Text) -- | You can optionally change the description of the alias using this -- parameter. uaDescription :: Lens' UpdateAlias (Maybe Text) -- | The function name for which the alias is created. uaFunctionName :: Lens' UpdateAlias Text -- | The alias name. uaName :: Lens' UpdateAlias Text -- | Creates a value of AliasConfiguration with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- aliasConfiguration :: AliasConfiguration -- | Provides configuration information about a Lambda function version -- alias. -- -- See: aliasConfiguration smart constructor. data AliasConfiguration -- | Alias name. acName :: Lens' AliasConfiguration (Maybe Text) -- | Function version to which the alias points. acFunctionVersion :: Lens' AliasConfiguration (Maybe Text) -- | Lambda function ARN that is qualified using alias name as the suffix. -- For example, if you create an alias "BETA" pointing to a helloworld -- function version, the ARN is -- 'arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA'. acAliasARN :: Lens' AliasConfiguration (Maybe Text) -- | Alias description. acDescription :: Lens' AliasConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.UpdateAlias.S1_0_3UpdateAlias instance GHC.Generics.Selector Network.AWS.Lambda.UpdateAlias.S1_0_2UpdateAlias instance GHC.Generics.Selector Network.AWS.Lambda.UpdateAlias.S1_0_1UpdateAlias instance GHC.Generics.Selector Network.AWS.Lambda.UpdateAlias.S1_0_0UpdateAlias instance GHC.Generics.Constructor Network.AWS.Lambda.UpdateAlias.C1_0UpdateAlias instance GHC.Generics.Datatype Network.AWS.Lambda.UpdateAlias.D1UpdateAlias instance GHC.Generics.Generic Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Data.Data.Data Network.AWS.Lambda.UpdateAlias.UpdateAlias instance GHC.Show.Show Network.AWS.Lambda.UpdateAlias.UpdateAlias instance GHC.Read.Read Network.AWS.Lambda.UpdateAlias.UpdateAlias instance GHC.Classes.Eq Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateAlias.UpdateAlias -- | Deletes specified Lambda function alias. For more information, see -- Introduction to AWS Lambda Aliases -- -- This requires permission for the lambda:DeleteAlias action. -- -- See: AWS API Reference for DeleteAlias. module Network.AWS.Lambda.DeleteAlias -- | Creates a value of DeleteAlias with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- deleteAlias :: Text -> Text -> DeleteAlias -- | See: deleteAlias smart constructor. data DeleteAlias -- | The Lambda function name for which the alias is created. daFunctionName :: Lens' DeleteAlias Text -- | Name of the alias to delete. daName :: Lens' DeleteAlias Text -- | Creates a value of DeleteAliasResponse with the minimum fields -- required to make a request. deleteAliasResponse :: DeleteAliasResponse -- | See: deleteAliasResponse smart constructor. data DeleteAliasResponse instance GHC.Generics.Constructor Network.AWS.Lambda.DeleteAlias.C1_0DeleteAliasResponse instance GHC.Generics.Datatype Network.AWS.Lambda.DeleteAlias.D1DeleteAliasResponse instance GHC.Generics.Selector Network.AWS.Lambda.DeleteAlias.S1_0_1DeleteAlias instance GHC.Generics.Selector Network.AWS.Lambda.DeleteAlias.S1_0_0DeleteAlias instance GHC.Generics.Constructor Network.AWS.Lambda.DeleteAlias.C1_0DeleteAlias instance GHC.Generics.Datatype Network.AWS.Lambda.DeleteAlias.D1DeleteAlias instance GHC.Generics.Generic Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse instance Data.Data.Data Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse instance GHC.Show.Show Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse instance GHC.Read.Read Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse instance GHC.Classes.Eq Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse instance GHC.Generics.Generic Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Data.Data.Data Network.AWS.Lambda.DeleteAlias.DeleteAlias instance GHC.Show.Show Network.AWS.Lambda.DeleteAlias.DeleteAlias instance GHC.Read.Read Network.AWS.Lambda.DeleteAlias.DeleteAlias instance GHC.Classes.Eq Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteAlias.DeleteAlias -- | 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. -- -- Using the optional Qualifier parameter, you can specify a -- specific function version for which you want this information. If you -- don't specify this parameter, the API uses unqualified function ARN -- which return information about the $LATEST version of the Lambda -- function. For more information, see AWS Lambda Function Versioning -- and Aliases. -- -- 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 -- | Using this optional parameter to specify a function version or alias -- name. If you specify function version, the API uses qualified function -- ARN for the request and returns information about the specific Lambda -- function version. If you specify alias name, the API uses alias ARN -- and returns information about the function version to which the alias -- points. If you don't provide this parameter, the API uses unqualified -- function ARN and returns information about the $LATEST version of the -- Lambda function. gfQualifier :: Lens' GetFunction (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. 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_1GetFunction 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. By -- default, Enabled is true. 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) -- | This boolean parameter can be used to request AWS Lambda to create the -- Lambda function and publish a version as an atomic operation. cfPublish :: Lens' CreateFunction (Maybe Bool) -- | 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.CreateFunction.S1_0_8CreateFunction 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 -- | Returns the specified alias information such as the alias ARN, -- description, and function version it is pointing to. For more -- information, see Introduction to AWS Lambda Aliases -- -- This requires permission for the lambda:GetAlias action. -- -- See: AWS API Reference for GetAlias. module Network.AWS.Lambda.GetAlias -- | Creates a value of GetAlias with the minimum fields required to -- make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- getAlias :: Text -> Text -> GetAlias -- | See: getAlias smart constructor. data GetAlias -- | Function name for which the alias is created. An alias is a -- subresource that exists only in the context of an existing Lambda -- function. So you must specify the function name. gaFunctionName :: Lens' GetAlias Text -- | Name of the alias for which you want to retrieve information. gaName :: Lens' GetAlias Text -- | Creates a value of AliasConfiguration with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- aliasConfiguration :: AliasConfiguration -- | Provides configuration information about a Lambda function version -- alias. -- -- See: aliasConfiguration smart constructor. data AliasConfiguration -- | Alias name. acName :: Lens' AliasConfiguration (Maybe Text) -- | Function version to which the alias points. acFunctionVersion :: Lens' AliasConfiguration (Maybe Text) -- | Lambda function ARN that is qualified using alias name as the suffix. -- For example, if you create an alias "BETA" pointing to a helloworld -- function version, the ARN is -- 'arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA'. acAliasARN :: Lens' AliasConfiguration (Maybe Text) -- | Alias description. acDescription :: Lens' AliasConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.GetAlias.S1_0_1GetAlias instance GHC.Generics.Selector Network.AWS.Lambda.GetAlias.S1_0_0GetAlias instance GHC.Generics.Constructor Network.AWS.Lambda.GetAlias.C1_0GetAlias instance GHC.Generics.Datatype Network.AWS.Lambda.GetAlias.D1GetAlias instance GHC.Generics.Generic Network.AWS.Lambda.GetAlias.GetAlias instance Data.Data.Data Network.AWS.Lambda.GetAlias.GetAlias instance GHC.Show.Show Network.AWS.Lambda.GetAlias.GetAlias instance GHC.Read.Read Network.AWS.Lambda.GetAlias.GetAlias instance GHC.Classes.Eq Network.AWS.Lambda.GetAlias.GetAlias instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetAlias.GetAlias instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetAlias.GetAlias instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetAlias.GetAlias instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetAlias.GetAlias -- | Invokes a specific Lambda function version. -- -- If you don't provide the Qualifier parameter, it uses the -- unqualified function ARN which results in invocation of the $LATEST -- version of the Lambda function (when you create a Lambda function, the -- $LATEST is the version). The AWS Lambda versioning and aliases feature -- allows you to publish multiple versions of a Lambda function and also -- create aliases for each function version. So each your Lambda function -- version can be invoked using multiple ARNs. For more information, see -- AWS Lambda Function Versioning and Aliases. Using the -- Qualifier parameter, you can specify a function version or -- alias name to invoke specific function version. If you specify -- function version, the API uses the qualified function ARN to invoke a -- specific function version. If you specify alias name, the API uses the -- alias ARN to invoke the function version to which the alias points. -- -- 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) -- | You can use this optional paramter to specify a Lambda function -- version or alias name. If you specify function version, the API uses -- qualified function ARN to invoke a specific Lambda function. If you -- specify alias name, the API uses the alias ARN to invoke the Lambda -- function version to which the alias points. -- -- If you don't provide this parameter, then the API uses unqualified -- function ARN which results in invocation of the $LATEST version. iQualifier :: Lens' Invoke (Maybe Text) -- | 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_5Invoke 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 resource policy -- associated with a Lambda function by providing a statement ID that you -- provided when you addded the permission. The API removes corresponding -- permission that is associated with the specific ARN identified by the -- Qualifier parameter. -- -- 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 -- | You can specify this optional parameter to remove permission -- associated with a specific function version or function alias. The -- value of this paramter is the function version or alias name. If you -- don't specify this parameter, the API removes permission associated -- with the unqualified function ARN. rpQualifier :: Lens' RemovePermission (Maybe Text) -- | Lambda function whose resource 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_2RemovePermission 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 -- | Returns list of aliases created for a Lambda function. For each alias, -- the response includes information such as the alias ARN, description, -- alias name, and the function version to which it points. For more -- information, see Introduction to AWS Lambda Aliases -- -- This requires permission for the lambda:ListAliases action. -- -- See: AWS API Reference for ListAliases. module Network.AWS.Lambda.ListAliases -- | Creates a value of ListAliases with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- listAliases :: Text -> ListAliases -- | See: listAliases smart constructor. data ListAliases -- | Optional string. An opaque pagination token returned from a previous -- ListAliases operation. If present, indicates where to continue the -- listing. laMarker :: Lens' ListAliases (Maybe Text) -- | Optional integer. Specifies the maximum number of aliases to return in -- response. This parameter value must be greater than 0. laMaxItems :: Lens' ListAliases (Maybe Natural) -- | If you specify this optional parameter, the API returns only the -- aliases pointing to the specific Lambda function version, otherwise -- returns all aliases created for the Lambda function. laFunctionVersion :: Lens' ListAliases (Maybe Text) -- | Lambda function name for which the alias is created. laFunctionName :: Lens' ListAliases Text -- | Creates a value of ListAliasesResponse with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- listAliasesResponse :: Int -> ListAliasesResponse -- | See: listAliasesResponse smart constructor. data ListAliasesResponse -- | An list of alises. larsAliases :: Lens' ListAliasesResponse [AliasConfiguration] -- | A string, present if there are more aliases. larsNextMarker :: Lens' ListAliasesResponse (Maybe Text) -- | The response status code. larsResponseStatus :: Lens' ListAliasesResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_2ListAliasesResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_1ListAliasesResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_0ListAliasesResponse instance GHC.Generics.Constructor Network.AWS.Lambda.ListAliases.C1_0ListAliasesResponse instance GHC.Generics.Datatype Network.AWS.Lambda.ListAliases.D1ListAliasesResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_3ListAliases instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_2ListAliases instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_1ListAliases instance GHC.Generics.Selector Network.AWS.Lambda.ListAliases.S1_0_0ListAliases instance GHC.Generics.Constructor Network.AWS.Lambda.ListAliases.C1_0ListAliases instance GHC.Generics.Datatype Network.AWS.Lambda.ListAliases.D1ListAliases instance GHC.Generics.Generic Network.AWS.Lambda.ListAliases.ListAliasesResponse instance Data.Data.Data Network.AWS.Lambda.ListAliases.ListAliasesResponse instance GHC.Show.Show Network.AWS.Lambda.ListAliases.ListAliasesResponse instance GHC.Read.Read Network.AWS.Lambda.ListAliases.ListAliasesResponse instance GHC.Classes.Eq Network.AWS.Lambda.ListAliases.ListAliasesResponse instance GHC.Generics.Generic Network.AWS.Lambda.ListAliases.ListAliases instance Data.Data.Data Network.AWS.Lambda.ListAliases.ListAliases instance GHC.Show.Show Network.AWS.Lambda.ListAliases.ListAliases instance GHC.Read.Read Network.AWS.Lambda.ListAliases.ListAliases instance GHC.Classes.Eq Network.AWS.Lambda.ListAliases.ListAliases instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListAliases.ListAliases instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListAliases.ListAliases instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListAliases.ListAliases instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListAliases.ListAliases -- | List all versions of a function. -- -- See: AWS API Reference for ListVersionsByFunction. module Network.AWS.Lambda.ListVersionsByFunction -- | Creates a value of ListVersionsByFunction with the minimum -- fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- listVersionsByFunction :: Text -> ListVersionsByFunction -- | See: listVersionsByFunction smart constructor. data ListVersionsByFunction -- | Optional string. An opaque pagination token returned from a previous -- ListVersionsByFunction operation. If present, indicates where -- to continue the listing. lvbfMarker :: Lens' ListVersionsByFunction (Maybe Text) -- | Optional integer. Specifies the maximum number of AWS Lambda function -- versions to return in response. This parameter value must be greater -- than 0. lvbfMaxItems :: Lens' ListVersionsByFunction (Maybe Natural) -- | Function name whose versions to list. 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. lvbfFunctionName :: Lens' ListVersionsByFunction Text -- | Creates a value of ListVersionsByFunctionResponse with the -- minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- listVersionsByFunctionResponse :: Int -> ListVersionsByFunctionResponse -- | See: listVersionsByFunctionResponse smart constructor. data ListVersionsByFunctionResponse -- | A list of Lambda function versions. lvbfrsVersions :: Lens' ListVersionsByFunctionResponse [FunctionConfiguration] -- | A string, present if there are more function versions. lvbfrsNextMarker :: Lens' ListVersionsByFunctionResponse (Maybe Text) -- | The response status code. lvbfrsResponseStatus :: Lens' ListVersionsByFunctionResponse Int instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_2ListVersionsByFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_1ListVersionsByFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_0ListVersionsByFunctionResponse instance GHC.Generics.Constructor Network.AWS.Lambda.ListVersionsByFunction.C1_0ListVersionsByFunctionResponse instance GHC.Generics.Datatype Network.AWS.Lambda.ListVersionsByFunction.D1ListVersionsByFunctionResponse instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_2ListVersionsByFunction instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_1ListVersionsByFunction instance GHC.Generics.Selector Network.AWS.Lambda.ListVersionsByFunction.S1_0_0ListVersionsByFunction instance GHC.Generics.Constructor Network.AWS.Lambda.ListVersionsByFunction.C1_0ListVersionsByFunction instance GHC.Generics.Datatype Network.AWS.Lambda.ListVersionsByFunction.D1ListVersionsByFunction instance GHC.Generics.Generic Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse instance Data.Data.Data Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse instance GHC.Show.Show Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse instance GHC.Read.Read Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse instance GHC.Classes.Eq Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse instance GHC.Generics.Generic Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Data.Data.Data Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance GHC.Show.Show Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance GHC.Read.Read Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance GHC.Classes.Eq Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction -- | Creates an alias to the specified Lambda function version. For more -- information, see Introduction to AWS Lambda Aliases -- -- This requires permission for the lambda:CreateAlias action. -- -- See: AWS API Reference for CreateAlias. module Network.AWS.Lambda.CreateAlias -- | Creates a value of CreateAlias with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- createAlias :: Text -> Text -> Text -> CreateAlias -- | See: createAlias smart constructor. data CreateAlias -- | Description of the alias. caDescription :: Lens' CreateAlias (Maybe Text) -- | Name of the Lambda function for which you want to create an alias. caFunctionName :: Lens' CreateAlias Text -- | Name for the alias your creating. caName :: Lens' CreateAlias Text -- | Lambda function version for which you are creating the alias. caFunctionVersion :: Lens' CreateAlias Text -- | Creates a value of AliasConfiguration with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- aliasConfiguration :: AliasConfiguration -- | Provides configuration information about a Lambda function version -- alias. -- -- See: aliasConfiguration smart constructor. data AliasConfiguration -- | Alias name. acName :: Lens' AliasConfiguration (Maybe Text) -- | Function version to which the alias points. acFunctionVersion :: Lens' AliasConfiguration (Maybe Text) -- | Lambda function ARN that is qualified using alias name as the suffix. -- For example, if you create an alias "BETA" pointing to a helloworld -- function version, the ARN is -- 'arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA'. acAliasARN :: Lens' AliasConfiguration (Maybe Text) -- | Alias description. acDescription :: Lens' AliasConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.CreateAlias.S1_0_3CreateAlias instance GHC.Generics.Selector Network.AWS.Lambda.CreateAlias.S1_0_2CreateAlias instance GHC.Generics.Selector Network.AWS.Lambda.CreateAlias.S1_0_1CreateAlias instance GHC.Generics.Selector Network.AWS.Lambda.CreateAlias.S1_0_0CreateAlias instance GHC.Generics.Constructor Network.AWS.Lambda.CreateAlias.C1_0CreateAlias instance GHC.Generics.Datatype Network.AWS.Lambda.CreateAlias.D1CreateAlias instance GHC.Generics.Generic Network.AWS.Lambda.CreateAlias.CreateAlias instance Data.Data.Data Network.AWS.Lambda.CreateAlias.CreateAlias instance GHC.Show.Show Network.AWS.Lambda.CreateAlias.CreateAlias instance GHC.Read.Read Network.AWS.Lambda.CreateAlias.CreateAlias instance GHC.Classes.Eq Network.AWS.Lambda.CreateAlias.CreateAlias instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateAlias.CreateAlias instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateAlias.CreateAlias instance Data.Aeson.Types.Class.ToJSON Network.AWS.Lambda.CreateAlias.CreateAlias instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateAlias.CreateAlias instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateAlias.CreateAlias -- | 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. -- -- You can use the optional Qualifier parameter to retrieve -- configuration information for a specific Lambda function version. If -- you don't provide it, the API returns information about the $LATEST -- version of the function. For more information about versioning, see -- AWS Lambda Function Versioning and Aliases. -- -- 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 -- | Using this optional parameter you can specify function version or -- alias name. If you specify function version, the API uses qualified -- function ARN and returns information about the specific function -- version. if you specify alias name, the API uses alias ARN and returns -- information about the function version to which the alias points. -- -- If you don't specify this parameter, the API uses unqualified function -- ARN, and returns information about the $LATEST function version. gfcQualifier :: Lens' GetFunctionConfiguration (Maybe Text) -- | 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text) instance GHC.Generics.Selector Network.AWS.Lambda.GetFunctionConfiguration.S1_0_1GetFunctionConfiguration 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 -- | The content type of the Invoke request body is not JSON. _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 -- | The request payload exceeded the Invoke request body JSON -- input limit. For more information, see Limits _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 -- | You have exceeded your maximum total code size per account. -- Limits _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 PYTHON2_7 :: Runtime -- | Provides configuration information about a Lambda function version -- alias. -- -- See: aliasConfiguration smart constructor. data AliasConfiguration -- | Creates a value of AliasConfiguration with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- aliasConfiguration :: AliasConfiguration -- | Alias name. acName :: Lens' AliasConfiguration (Maybe Text) -- | Function version to which the alias points. acFunctionVersion :: Lens' AliasConfiguration (Maybe Text) -- | Lambda function ARN that is qualified using alias name as the suffix. -- For example, if you create an alias "BETA" pointing to a helloworld -- function version, the ARN is -- 'arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA'. acAliasARN :: Lens' AliasConfiguration (Maybe Text) -- | Alias description. acDescription :: Lens' AliasConfiguration (Maybe Text) -- | 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 version of the Lambda function. fcVersion :: 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) -- | It is the SHA256 hash of your function deployment package. fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text) -- | The user-provided description. fcDescription :: Lens' FunctionConfiguration (Maybe Text)