Import
Import Lambda function code from stdin, creating or updating the function
tapit import lambda name=function_name [runtime=python3.12] [handler=handler.handler] [description='desc'] [memory_mb=128] [timeout_seconds=30] < handler.py
Required
- name
Parameters
name: Name of the Lambda function (required)runtime: Lambda runtime for new functions (default: python3.12)handler: Handler function for new functions (default: handler.handler)description: Description of the functionmemory_mb: Memory allocation in MB (default: 128)timeout_seconds: Function timeout in seconds (default: 30)