Function (Serverless Function)
The Function
feature allows you to execute serverless functions in conjunction with AWS Lambda. This enables you to run backend code without managing cloud computing resources, leveraging the benefits of a serverless architecture.
- Name: Enter the name of the serverless function. It should be uniquely identifiable.
- Description: Describe the purpose or behavior of the function. This will assist in finding or managing the function in the future.
- helpDescription: This is an optional field where you can enter additional explanations or help. It can be used to record details or usage instructions for complex functions. (This will be registered in Lambda.)
- Parameter: Enter the parameters to be passed to the function in JSON format. The following is an example:
{
"key": "value"
}
In this example, 'key' represents the parameter name, and 'value' is the test value.
note
The Function feature, utilizing AWS Lambda, allows you to execute and scale your code without the burden of server management, taking full advantage of a serverless architecture.