Uses of Class
com.amazonaws.services.lambda.model.UpdateFunctionCodeRequest
-
Packages that use UpdateFunctionCodeRequest Package Description com.amazonaws.services.lambda com.amazonaws.services.lambda.model -
-
Uses of UpdateFunctionCodeRequest in com.amazonaws.services.lambda
Method parameters in com.amazonaws.services.lambda with type arguments of type UpdateFunctionCodeRequest Modifier and Type Method Description Future<UpdateFunctionCodeResult>
AbstractAWSLambdaAsync. updateFunctionCodeAsync(UpdateFunctionCodeRequest request, AsyncHandler<UpdateFunctionCodeRequest,UpdateFunctionCodeResult> asyncHandler)
Future<UpdateFunctionCodeResult>
AWSLambdaAsync. updateFunctionCodeAsync(UpdateFunctionCodeRequest updateFunctionCodeRequest, AsyncHandler<UpdateFunctionCodeRequest,UpdateFunctionCodeResult> asyncHandler)
Updates the code for the specified Lambda function.Future<UpdateFunctionCodeResult>
AWSLambdaAsyncClient. updateFunctionCodeAsync(UpdateFunctionCodeRequest request, AsyncHandler<UpdateFunctionCodeRequest,UpdateFunctionCodeResult> asyncHandler)
-
Uses of UpdateFunctionCodeRequest in com.amazonaws.services.lambda.model
Methods in com.amazonaws.services.lambda.model that return UpdateFunctionCodeRequest Modifier and Type Method Description UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. clone()
UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withFunctionName(String functionName)
The existing Lambda function name whose code you want to replace.UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withPublish(Boolean publish)
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withS3Bucket(String s3Bucket)
Amazon S3 bucket name where the .zip file containing your deployment package is stored.UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withS3Key(String s3Key)
The Amazon S3 object (the deployment package) key name you want to upload.UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withS3ObjectVersion(String s3ObjectVersion)
The Amazon S3 object (the deployment package) version you want to upload.UpdateFunctionCodeRequest
UpdateFunctionCodeRequest. withZipFile(ByteBuffer zipFile)
Based64-encoded .zip file containing your packaged source code.
-