asml make
the generated Cargo.toml
should have included these crates. However, you should also ensure that you are using the latest patch version of each.GuestCore
trait, which defines an interface for communicating with the cloud runtime (logging, low-level success/error response, etc). This trait is implemented by AwsLambdaClient
which is provided by the awslambda crate.Future
execution system supporting async/await.handler!
which wraps up all the details of initializing the module, and provides a concise entry point for our function.handler!
macro exports a function called handler
which provides the entry-point from the runtime host. extern crate
statement is required to bring static
s & extern
s into scope which are defined in the crate.context
value is accessible from within the function closure, and provides access to details of the function invocation, include the input payload and authorization data.assemblylift_awslambda_guest
includes structs & macros for working with Amazon API Gateway.