aws_lambda_events

Crates.ioaws_lambda_events
lib.rsaws_lambda_events
version0.15.1
sourcesrc
created_at2018-10-30 05:46:37.559336
updated_at2024-05-08 04:17:55.788754
descriptionAWS Lambda event definitions
homepagehttps://github.com/awslabs/aws-lambda-rust-runtime
repositoryhttps://github.com/awslabs/aws-lambda-rust-runtime
max_upload_size
id93531
size546,689
Harold Sun (bnusunny)

documentation

README

AWS Lambda Events

crates.io Documentation

This crate provides strongly-typed AWS Lambda event structs in Rust.

Installation

Add the dependency with Cargo: cargo add aws_lambda_events.

Usage

The crate itself has no AWS Lambda handler logic and instead exists to serialize and deserialize AWS Lambda events into strongly-typed Rust structs.

The types defined in this crate are usually used with handlers / runtimes provided by the official Rust runtime.

For a list of supported AWS Lambda events and services, see the crate reference documentation.

Conditional compilation of features

This crate divides all Lambda Events into features named after the service that the events are generated from. By default all events are enabled when you include this crate as a dependency to your project. If you only want to import specific events from this crate, you can disable the default features, and enable only the events that you need. This will make your project to compile a little bit faster, since rustc doesn't need to compile events that you're not going to use. Here's an example on how to do that:

cargo add aws_lambda_events --no-default-features --features apigw,alb

History

The AWS Lambda Events crate was created by Christian Legnitto. Without all his work and dedication, this project could have not been possible.

In 2023, the AWS Lambda Event crate was moved into this repository to continue its support for all AWS customers that use Rust on AWS Lambda.

Commit count: 406

cargo fmt