https://github.com/pmagaz/rust-aws-lambda
Example of AWS Lambda in Rust
https://github.com/pmagaz/rust-aws-lambda
Last synced: 9 months ago
JSON representation
Example of AWS Lambda in Rust
- Host: GitHub
- URL: https://github.com/pmagaz/rust-aws-lambda
- Owner: pmagaz
- Created: 2021-11-29T09:21:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-30T09:20:24.000Z (about 4 years ago)
- Last Synced: 2025-01-24T13:41:26.955Z (11 months ago)
- Language: TypeScript
- Size: 82 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example of AWS Lambda with API gateway using RUST
Simple AWS Lambda with API gateway built in Rust using CDK CLI TypeScript client.
Lambda ( [rs_hello](lambda/rs_hello)) is located in the lambda folder an it's just a simple hello world that will display Hello + name. It uses the oficial [lambda_runtime](https://crates.io/crates/lambda_runtime) package from AWS but also [aws_lambda_events
](https://crates.io/crates/aws_lambda_events) that provides strongly-typed AWS Lambda event structs for Rust.
Lambda and ApiGateway specs for CDK are defined in [lib](lib)