Expand description
Host interface tools for Momento Functions
This crate helps you write Momento Functions.
Functions use wasm32-unknown-unknown
as the target architecture.
They use the WIT Component Model
to describe the ABI.
You are likely to be interested in the sibling crates:
momento-functions
: Code generators for Functions.momento-functions-log
: Standardlog
adapter.
Modules§
- aws
- Host interfaces for interacting with AWS services
- cache
- Host interfaces for working with Momento Cache apis
- topics
- Host interfaces for working with Momento Topics apis
Macros§
- build_
environment_ aws_ credentials - Reads AWS credentials from the environment variables
AWS_ACCESS_KEY_ID
andAWS_SECRET_ACCESS_KEY
at build time.
Enums§
- Error
- An error during the execution of a Function.
Type Aliases§
- Function
Result - An alias for Result<T, Error> for convenience.