You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LambdaPreview::Types::UploadFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LambdaPreview::Types::UploadFunctionRequest
- Defined in:
- (unknown)
Overview
When passing UploadFunctionRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
function_name: "FunctionName", # required
function_zip: source_file, # file/IO object, or string data, required
runtime: "nodejs", # required, accepts nodejs
role: "RoleArn", # required
handler: "Handler", # required
mode: "event", # required, accepts event
description: "Description",
timeout: 1,
memory_size: 1,
}
Instance Attribute Summary collapse
-
#description ⇒ String
A short, user-defined function description.
-
#function_name ⇒ String
The name you want to assign to the function you are uploading.
-
#function_zip ⇒ IO
A .zip file containing your packaged source code.
-
#handler ⇒ String
The function that Lambda calls to begin execution.
-
#memory_size ⇒ Integer
The amount of memory, in MB, your Lambda function is given.
-
#mode ⇒ String
How the Lambda function will be invoked.
-
#role ⇒ String
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.
-
#runtime ⇒ String
The runtime environment for the Lambda function you are uploading.
-
#timeout ⇒ Integer
The function execution time at which Lambda should terminate the function.
Instance Attribute Details
#description ⇒ String
A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
#function_name ⇒ String
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 InvokeAsync.
#function_zip ⇒ IO
A .zip file containing your packaged source code. For more information about creating a .zip file, go to AWS LambdaL How it Works in the AWS Lambda Developer Guide.
#handler ⇒ String
The function that Lambda calls to begin execution. For Node.js, it is the module-name.export value in your function.
#memory_size ⇒ Integer
The amount of memory, in MB, your Lambda function is given. 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, database operation might need less memory compared to image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.
#mode ⇒ String
How the Lambda function will be invoked. Lambda supports only the \"event\" mode.
Possible values:
- event
#role ⇒ String
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.
#runtime ⇒ String
The runtime environment for the Lambda function you are uploading. Currently, Lambda supports only \"nodejs\" as the runtime.
Possible values:
- nodejs
#timeout ⇒ Integer
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.