momento_functions_aws_auth/lib.rs
1//! Host interfaces for AWS authentication in Momento Functions.
2//!
3//! This crate provides AWS credential types used to authenticate with
4//! AWS services (S3, DynamoDB, Lambda, etc.) via Momento's host interfaces.
5
6/// Internal module for WIT bindings.
7#[doc(hidden)]
8pub mod wit;
9
10pub use wit::momento::aws_auth::aws_auth::{
11 AuthError, Authorization, Credentials, CredentialsProvider, IamRole, provider,
12};