Uses of Class
com.amazonaws.services.lambda.model.CreateFunctionRequest
Packages that use CreateFunctionRequest
-
Uses of CreateFunctionRequest in com.amazonaws.services.lambda
Methods in com.amazonaws.services.lambda with parameters of type CreateFunctionRequestModifier and TypeMethodDescriptionAbstractAWSLambda.createFunction
(CreateFunctionRequest request) AWSLambda.createFunction
(CreateFunctionRequest createFunctionRequest) Creates a new Lambda function.AWSLambdaClient.createFunction
(CreateFunctionRequest createFunctionRequest) Creates a new Lambda function.AbstractAWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest request) AbstractAWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest request, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) AWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest createFunctionRequest) Creates a new Lambda function.AWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest createFunctionRequest, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) Creates a new Lambda function.AWSLambdaAsyncClient.createFunctionAsync
(CreateFunctionRequest request) AWSLambdaAsyncClient.createFunctionAsync
(CreateFunctionRequest request, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) Method parameters in com.amazonaws.services.lambda with type arguments of type CreateFunctionRequestModifier and TypeMethodDescriptionAbstractAWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest request, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) AWSLambdaAsync.createFunctionAsync
(CreateFunctionRequest createFunctionRequest, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) Creates a new Lambda function.AWSLambdaAsyncClient.createFunctionAsync
(CreateFunctionRequest request, AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler) -
Uses of CreateFunctionRequest in com.amazonaws.services.lambda.model
Methods in com.amazonaws.services.lambda.model that return CreateFunctionRequestModifier and TypeMethodDescriptionCreateFunctionRequest.clone()
CreateFunctionRequest.withCode
(FunctionCode code) The code for the Lambda function.CreateFunctionRequest.withDescription
(String description) A short, user-defined function description.CreateFunctionRequest.withFunctionName
(String functionName) The name you want to assign to the function you are uploading.CreateFunctionRequest.withHandler
(String handler) The function within your code that Lambda calls to begin execution.CreateFunctionRequest.withMemorySize
(Integer memorySize) The amount of memory, in MB, your Lambda function is given.CreateFunctionRequest.withPublish
(Boolean publish) This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.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.CreateFunctionRequest.withRuntime
(Runtime runtime) The runtime environment for the Lambda function you are uploading.CreateFunctionRequest.withRuntime
(String runtime) The runtime environment for the Lambda function you are uploading.CreateFunctionRequest.withTimeout
(Integer timeout) The function execution time at which Lambda should terminate the function.CreateFunctionRequest.withVpcConfig
(VpcConfig vpcConfig) If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs.