This project contains source code and supporting files for a serverless application that you can deploy with the SAM CLI. It includes the following files and folders.
- zoom_recording_manager - Code for the application's Lambda function.
- events - Invocation events that you can use to invoke the function. (Currently not in use)
- template.yaml - A template that defines the application's AWS resources.
The application uses several AWS resources, including Lambda functions and an API Gateway API. These resources are defined in the template.yaml
file in this project. You can update the template to add AWS resources through the same deployment process that updates your application code.
- Clone the project and inside the project folder run:
cd project_folder python3 -m venv venv source ./venv/bin/activate
- Install aws sam client
pip install aws-sam-cli
- Build the application using sam in your local using the below command
sam build
- A
.aws-sam
folder will be created. And inside the build folder you will find your project resources. - Open your project folder and Zip all the folders and files.
- Upload the zip to the lambda function.