-- 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 or the AWS Documentation to get -- started. @package amazonka-lambda @version 1.4.4 module Network.AWS.Lambda.Types -- | API version '2015-03-31' of the Amazon Lambda SDK configuration. lambda :: Service -- | AWS Lambda was throttled by Amazon EC2 during Lambda function -- initialization using the execution role provided for the Lambda -- function. _EC2ThrottledException :: AsError a => Getting (First ServiceError) a ServiceError -- | Lambda function access policy is limited to 20 KB. _PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError _EC2AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError -- | The Subnet ID provided in the Lambda function VPC configuration is -- invalid. _InvalidSubnetIdException :: 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 -- | AWS Lambda was not able to create an Elastic Network Interface (ENI) -- in the VPC, specified as part of Lambda function configuration, -- because the limit for network interfaces has been reached. _ENILimitReachedException :: 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 _TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError -- | The Security Group ID provided in the Lambda function VPC -- configuration is invalid. _InvalidSecurityGroupIdException :: AsError a => Getting (First ServiceError) a ServiceError -- | AWS Lambda was not able to set up VPC access for the Lambda function -- because one or more configured subnets has no available IP addresses. _SubnetIPAddressLimitReachedException :: 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 -- | AWS Lambda could not unzip the function zip file. _InvalidZipFileException :: AsError a => Getting (First ServiceError) a ServiceError -- | The resource already exists. _ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError -- | AWS Lambda received an unexpected EC2 client exception while setting -- up for the Lambda function. _EC2UnexpectedException :: 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 NODEJS4_3 :: 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 the alias name as the -- suffix. For example, if you create an alias called BETA that -- points 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) -- | The contents of your zip file containing your deployment package. If -- you are using the web API directly, the contents of the zip file must -- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the -- SDKs or CLI will do the encoding for you. 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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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) -- | If your Lambda function accesses resources in a VPC, you provide this -- parameter identifying the list of security group IDs and subnet IDs. -- These must belong to the same VPC. You must provide at least one -- security group and one subnet ID. -- -- See: vpcConfig smart constructor. data VPCConfig -- | Creates a value of VPCConfig with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- vpcConfig :: VPCConfig -- | A list of one or more security groups IDs in your VPC. vpccSecurityGroupIds :: Lens' VPCConfig [Text] -- | A list of one or more subnet IDs in your VPC. vpccSubnetIds :: Lens' VPCConfig [Text] -- | VPC configuration associated with your Lambda function. -- -- See: vpcConfigResponse smart constructor. data VPCConfigResponse -- | Creates a value of VPCConfigResponse with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- vpcConfigResponse :: VPCConfigResponse -- | A list of security group IDs associated with the Lambda function. vcSecurityGroupIds :: Lens' VPCConfigResponse [Text] -- | A list of subnet IDs associated with the Lambda function. vcSubnetIds :: Lens' VPCConfigResponse [Text] -- | The VPC ID associated with you Lambda function. vcVPCId :: Lens' VPCConfigResponse (Maybe Text) module Network.AWS.Lambda.Waiters -- | Returns the resource policy associated with the specified Lambda -- function. -- -- If you are using the versioning feature, you can get the resource -- policy associated with the specific Lambda function version or alias -- by specifying the version or alias name using the Qualifier -- parameter. For more information about versioning, see AWS Lambda -- Function Versioning and Aliases. -- -- For information about adding permissions, see AddPermission. -- -- You need permission for the 'lambda:GetPolicy action.' 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 a function -- version or an alias name in which case this API will return all -- permissions associated with the specific qualified 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 the 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'). If -- you are using versioning, you can also provide a qualified function -- ARN (ARN that is qualified with function version or alias name as -- suffix). AWS Lambda also allows you to specify only the function name -- with 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 a backslash ("\") as an -- escape character in the JSON. gprsPolicy :: Lens' GetPolicyResponse (Maybe Text) -- | The response status code. gprsResponseStatus :: Lens' GetPolicyResponse Int 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 Data.Hashable.Class.Hashable Network.AWS.Lambda.GetPolicy.GetPolicy instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.GetPolicy.GetPolicyResponse -- | 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. -- -- If you are using the versioning feature, note this API will always -- update the >LATEST version of your Lambda function. For information -- about the versioning feature, see AWS Lambda Function Versioning -- and Aliases. -- -- This operation requires permission for the 'lambda:UpdateFunctionCode' -- action. 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) -- | The contents of your zip file containing your deployment package. If -- you are using the web API directly, the contents of the zip file must -- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the -- SDKs or CLI will do the encoding for you. 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. 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 a 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 a partial ARN (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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode instance Control.DeepSeq.NFData 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. -- -- If you are using versioning feature, the response returns list of -- >LATEST versions of your functions. For information about the -- versioning feature, see AWS Lambda Function Versioning and -- Aliases. -- -- 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.ListFunctions.ListFunctions instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.ListFunctions.ListFunctionsResponse -- | 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. -- -- If you are using the versioning feature, note this API will always -- update the >LATEST version of your Lambda function. For information -- about the versioning feature, see AWS Lambda Function Versioning -- and Aliases. -- -- This operation requires permission for the -- 'lambda:UpdateFunctionConfiguration' action. 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 runtime environment for the Lambda function. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". ufcRuntime :: Lens' UpdateFunctionConfiguration (Maybe Runtime) -- | The Amazon Resource Name (ARN) of the IAM role that Lambda will assume -- when it executes your function. ufcRole :: Lens' UpdateFunctionConfiguration (Maybe Text) -- | Undocumented member. ufcVPCConfig :: Lens' UpdateFunctionConfiguration (Maybe VPCConfig) -- | 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 a 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 a partial ARN (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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration instance Control.DeepSeq.NFData 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 are using the versioning feature and you don't specify a -- function version in your DeleteFunction request, AWS Lambda -- will delete the function, including all its versions, and any aliases -- pointing to the function versions. To delete a specific function -- version, you must provide the function version via the -- Qualifier parameter. For information about function -- versioning, see AWS Lambda Function Versioning and Aliases. -- -- When you delete a function the associated resource policy is also -- deleted. You will need to delete the event source mappings explicitly. -- -- This operation requires permission for the 'lambda:DeleteFunction' -- action. 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, not an 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 of its versions and aliases. dfQualifier :: Lens' DeleteFunction (Maybe Text) -- | The Lambda function to delete. -- -- You can specify the 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'). If -- you are using versioning, you can also provide a qualified function -- ARN (ARN that is qualified with function version or alias name as -- suffix). AWS Lambda also allows you to specify only the function name -- with 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteFunction.DeleteFunction instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse -- | Publishes a version of your function from the current snapshot of -- >LATEST. That is, AWS Lambda takes a snapshot of the function code -- and configuration information from >LATEST and publishes a new -- version. The code and configuration cannot be modified after -- publication. For information about the versioning feature, see AWS -- Lambda Function Versioning and Aliases. 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 >LATEST 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 >LATEST version. pvDescription :: Lens' PublishVersion (Maybe Text) -- | The Lambda function name. You can specify a 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 a partial ARN (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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.PublishVersion.PublishVersion instance Control.DeepSeq.NFData 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 a 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, the permissions you add are specific to -- the Lambda function version or alias you specify in the -- AddPermission request via the Qualifier parameter. For -- more information about versioning, see AWS Lambda Function -- Versioning and Aliases. -- -- This operation requires permission for the 'lambda:AddPermission' -- action. 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 -- | This parameter is used for S3 and SES only. 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) -- | A unique token that must be supplied by the principal invoking the -- function. This is currently only used for Alexa Smart Home functions. apEventSourceToken :: Lens' AddPermission (Maybe Text) -- | This is optional; however, when granting Amazon S3 permission to -- invoke your function, you should specify this field with the Amazon -- Resource Name (ARN) as its value. This ensures that only events -- generated from the specified source 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 use this optional query parameter to describe a qualified ARN -- using a function version or an 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 an 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 a 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 partial ARN (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 . -- 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 a backslash ("\") as an escape -- character in the JSON. aprsStatement :: Lens' AddPermissionResponse (Maybe Text) -- | The response status code. aprsResponseStatus :: Lens' AddPermissionResponse Int 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 Data.Hashable.Class.Hashable Network.AWS.Lambda.AddPermission.AddPermission instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.AddPermission.AddPermissionResponse -- | Using this API you can update the function version to which the alias -- points and the alias description. For more information, see -- Introduction to AWS Lambda Aliases. -- -- This requires permission for the lambda:UpdateAlias action. 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 change the Lambda function version to -- which the alias points. uaFunctionVersion :: Lens' UpdateAlias (Maybe Text) -- | You can 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 the alias name as the -- suffix. For example, if you create an alias called BETA that -- points 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateAlias.UpdateAlias instance Control.DeepSeq.NFData 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 the specified Lambda function alias. For more information, see -- Introduction to AWS Lambda Aliases. -- -- This requires permission for the lambda:DeleteAlias action. 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. Deleting an -- alias does not delete the function version to which it is pointing. 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteAlias.DeleteAlias instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse -- | Returns a list of event source mappings you created using the -- CreateEventSourceMapping (see -- CreateEventSourceMapping). -- -- For each mapping, the API returns configuration information. You can -- optionally specify filters to retrieve specific event source mappings. -- -- If you are using the versioning feature, you can get list of event -- source mappings for a specific Lambda function version or an alias as -- described in the FunctionName parameter. For information -- about the versioning feature, see AWS Lambda Function Versioning -- and Aliases. -- -- This operation requires permission for the -- 'lambda:ListEventSourceMappings' action. -- -- 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. (This -- parameter is optional.) 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 the 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'). If -- you are using versioning, you can also provide a qualified function -- ARN (ARN that is qualified with function version or alias name as -- suffix). AWS Lambda also allows you to specify only the function name -- with 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 ) -- -- 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse -- | 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. 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 an -- 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 an alias name, the -- API uses the 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 a 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 a partial ARN (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 . -- -- 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.GetFunction.GetFunction instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.GetFunction.GetFunctionResponse -- | 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 association between a stream source and a Lambda function is -- called the event source mapping. -- -- This event source mapping is relevant only in the AWS Lambda pull -- model, where AWS Lambda invokes the function. For more information, go -- to AWS Lambda: How it Works in the AWS Lambda Developer -- Guide. -- -- You provide mapping information (for example, which stream to read -- from and which Lambda function to invoke) 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. -- -- If you are using versioning, you can specify a specific function -- version or an alias via the function name parameter. For more -- information about versioning, see AWS Lambda Function Versioning -- and Aliases. -- -- This operation requires permission for the -- 'lambda:CreateEventSourceMapping' action. 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 the 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'). -- -- If you are using versioning, you can also provide a qualified function -- ARN (ARN that is qualified with function version or alias name as -- suffix). For more information about versioning, see AWS Lambda -- Function Versioning and Aliases -- -- AWS Lambda also allows you to specify only the function name with 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping instance Control.DeepSeq.NFData 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. -- -- If you are using versioning, you can also publish a version of the -- Lambda function you are creating using the Publish parameter. -- For more information about versioning, see AWS Lambda Function -- Versioning and Aliases. -- -- This operation requires permission for the 'lambda:CreateFunction' -- action. 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) -- | If your Lambda function accesses resources in a VPC, you provide this -- parameter identifying the list of security group IDs and subnet IDs. -- These must belong to the same VPC. You must provide at least one -- security group and one subnet ID. cfVPCConfig :: Lens' CreateFunction (Maybe VPCConfig) -- | 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. 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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateFunction.CreateFunction instance Control.DeepSeq.NFData 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. 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping instance Control.DeepSeq.NFData 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. 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 the alias name as the -- suffix. For example, if you create an alias called BETA that -- points 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.GetAlias.GetAlias instance Control.DeepSeq.NFData 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. -- -- If you are using the versioning feature, you can invoke the specific -- function version by providing function version or alias name that is -- pointing to the function version using the Qualifier -- parameter in the request. If you don't provide the Qualifier -- parameter, the '>LATEST' version of the Lambda function is invoked. -- Invocations occur at least once in response to an event and functions -- must be idempotent to handle this. For information about the -- versioning feature, see AWS Lambda Function Versioning and -- Aliases. -- -- This operation requires permission for the 'lambda:InvokeFunction' -- action. 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-result' header. iLogType :: Lens' Invoke (Maybe LogType) -- | You can use this optional parameter to specify a Lambda function -- version or alias name. If you specify a function version, the API uses -- the qualified function ARN to invoke a specific Lambda function. If -- you specify an 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, see 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 a 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 a partial ARN (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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.Invoke.Invoke instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.Invoke.InvokeResponse -- | You can remove individual permissions from an resource policy -- associated with a Lambda function by providing a statement ID that you -- provided when you added the permission. -- -- If you are using versioning, the permissions you remove are specific -- to the Lambda function version or alias you specify in the -- AddPermission request via the Qualifier parameter. -- For more information about versioning, see AWS Lambda Function -- Versioning and Aliases. -- -- 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. 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. 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 a 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 a partial ARN (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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.RemovePermission.RemovePermission instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.RemovePermission.RemovePermissionResponse -- | 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. 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 that are pointing to the specific Lambda function version, -- otherwise the API returns all of the 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 -- | A list of aliases. 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.ListAliases.ListAliases instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.ListAliases.ListAliasesResponse -- | List all versions of a function. For information about the versioning -- feature, see AWS Lambda Function Versioning and Aliases. 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 a 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 a partial ARN (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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction instance Control.DeepSeq.NFData 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 instance Control.DeepSeq.NFData Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse -- | Creates an alias that points to the specified Lambda function version. -- For more information, see Introduction to AWS Lambda Aliases. -- -- Alias names are unique for a given function. This requires permission -- for the lambda:CreateAlias action. 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 you are 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 the alias name as the -- suffix. For example, if you create an alias called BETA that -- points 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateAlias.CreateAlias instance Control.DeepSeq.NFData 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. -- -- If you are using the versioning feature, you can update the event -- source mapping to map to a specific Lambda function version or alias -- as described in the FunctionName parameter. For information -- about the versioning feature, see AWS Lambda Function Versioning -- and Aliases. -- -- If you disable the event source mapping, AWS Lambda stops polling. If -- you enable again, it will resume polling from the time it had stopped -- polling, so you don't lose processing of any records. However, if you -- delete event source mapping and create it again, it will reset. -- -- This operation requires permission for the -- 'lambda:UpdateEventSourceMapping' action. 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 a 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 a partial ARN (for example, -- 'account-id:Thumbnail'). -- -- If you are using versioning, you can also provide a qualified function -- ARN (ARN that is qualified with function version or alias name as -- suffix). For more information about versioning, see AWS Lambda -- Function Versioning and Aliases -- -- 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping instance Control.DeepSeq.NFData 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. 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping instance Control.DeepSeq.NFData 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. -- -- If you are using the versioning feature, you can retrieve this -- information for a specific function version by using the optional -- Qualifier parameter and specifying the function version or -- alias that points to it. 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. 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 a function version or an -- alias name. If you specify function version, the API uses qualified -- function ARN and returns information about the specific function -- version. If you specify an alias name, the API uses the 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 a 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 a partial ARN (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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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.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 Data.Hashable.Class.Hashable Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration instance Control.DeepSeq.NFData 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. module Network.AWS.Lambda -- | API version '2015-03-31' of the Amazon Lambda SDK configuration. lambda :: Service -- | AWS Lambda was throttled by Amazon EC2 during Lambda function -- initialization using the execution role provided for the Lambda -- function. _EC2ThrottledException :: AsError a => Getting (First ServiceError) a ServiceError -- | Lambda function access policy is limited to 20 KB. _PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError _EC2AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError -- | The Subnet ID provided in the Lambda function VPC configuration is -- invalid. _InvalidSubnetIdException :: 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 -- | AWS Lambda was not able to create an Elastic Network Interface (ENI) -- in the VPC, specified as part of Lambda function configuration, -- because the limit for network interfaces has been reached. _ENILimitReachedException :: 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 _TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError -- | The Security Group ID provided in the Lambda function VPC -- configuration is invalid. _InvalidSecurityGroupIdException :: AsError a => Getting (First ServiceError) a ServiceError -- | AWS Lambda was not able to set up VPC access for the Lambda function -- because one or more configured subnets has no available IP addresses. _SubnetIPAddressLimitReachedException :: 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 -- | AWS Lambda could not unzip the function zip file. _InvalidZipFileException :: AsError a => Getting (First ServiceError) a ServiceError -- | The resource already exists. _ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError -- | AWS Lambda received an unexpected EC2 client exception while setting -- up for the Lambda function. _EC2UnexpectedException :: 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 NODEJS4_3 :: 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 the alias name as the -- suffix. For example, if you create an alias called BETA that -- points 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) -- | The contents of your zip file containing your deployment package. If -- you are using the web API directly, the contents of the zip file must -- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the -- SDKs or CLI will do the encoding for you. 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. -- -- To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use -- earlier runtime (v0.10.42), set the value to "nodejs". 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) -- | VPC configuration associated with your Lambda function. fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse) -- | 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 time stamp 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) -- | If your Lambda function accesses resources in a VPC, you provide this -- parameter identifying the list of security group IDs and subnet IDs. -- These must belong to the same VPC. You must provide at least one -- security group and one subnet ID. -- -- See: vpcConfig smart constructor. data VPCConfig -- | Creates a value of VPCConfig with the minimum fields required -- to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- vpcConfig :: VPCConfig -- | A list of one or more security groups IDs in your VPC. vpccSecurityGroupIds :: Lens' VPCConfig [Text] -- | A list of one or more subnet IDs in your VPC. vpccSubnetIds :: Lens' VPCConfig [Text] -- | VPC configuration associated with your Lambda function. -- -- See: vpcConfigResponse smart constructor. data VPCConfigResponse -- | Creates a value of VPCConfigResponse with the minimum fields -- required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- vpcConfigResponse :: VPCConfigResponse -- | A list of security group IDs associated with the Lambda function. vcSecurityGroupIds :: Lens' VPCConfigResponse [Text] -- | A list of subnet IDs associated with the Lambda function. vcSubnetIds :: Lens' VPCConfigResponse [Text] -- | The VPC ID associated with you Lambda function. vcVPCId :: Lens' VPCConfigResponse (Maybe Text)