amazonka-lambda-0.3.6: Amazon Lambda SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.Lambda.UpdateFunctionCode

Contents

Description

Updates the code for the specified Lambda function. This operation must only be used on an existing Lambda function and cannot be used to update the function configuration.

This operation requires permission for the 'lambda:UpdateFunctionCode' action.

http://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionCode.html

Synopsis

Request

Request constructor

Request lenses

ufc1FunctionName :: Lens' UpdateFunctionCode Text Source

The existing Lambda function name whose code you want to replace.

You can specify an unqualified function name (for example, Thumbnail) or you can specify Amazon Resource Name (ARN) of the function (for example, "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda also allows you to specify only the account ID qualifier (for example, "account-id:Thumbnail"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length.

ufc1S3Bucket :: Lens' UpdateFunctionCode (Maybe Text) Source

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.

ufc1S3Key :: Lens' UpdateFunctionCode (Maybe Text) Source

The Amazon S3 object (the deployment package) key name you want to upload.

ufc1S3ObjectVersion :: Lens' UpdateFunctionCode (Maybe Text) Source

The Amazon S3 object (the deployment package) version you want to upload.

ufc1ZipFile :: Lens' UpdateFunctionCode (Maybe Base64) Source

Based64-encoded .zip file containing your packaged source code.

Response

Response constructor

Response lenses

ufcrCodeSize :: Lens' UpdateFunctionCodeResponse (Maybe Integer) Source

The size, in bytes, of the function .zip file you uploaded.

ufcrFunctionArn :: Lens' UpdateFunctionCodeResponse (Maybe Text) Source

The Amazon Resource Name (ARN) assigned to the function.

ufcrHandler :: Lens' UpdateFunctionCodeResponse (Maybe Text) Source

The function Lambda calls to begin executing your function.

ufcrLastModified :: Lens' UpdateFunctionCodeResponse (Maybe Text) Source

The timestamp of the last time you updated the function.

ufcrMemorySize :: Lens' UpdateFunctionCodeResponse (Maybe Natural) Source

The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.

ufcrRole :: Lens' UpdateFunctionCodeResponse (Maybe Text) Source

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.

ufcrRuntime :: Lens' UpdateFunctionCodeResponse (Maybe Runtime) Source

The runtime environment for the Lambda function.

ufcrTimeout :: Lens' UpdateFunctionCodeResponse (Maybe Natural) Source

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.