Cache AWS Secrets Manager secrets in your AWS Lambda function, reducing latency (we don't need to query another service) and cost ([Secrets Manager charges based on queries]).
Add the AWS Parameters and Secrets Lambda Extension. Only version 2 of this layer is currently supported.
Assuming a secret exists with the name "backend-server" containing a key/value pair with a key of "api_key" and a value of
"dd96eeda-16d3-4c86-975f-4986e603ec8c" (our super secret API key to our backend), this code will get the secret from the cache, querying
Secrets Manager if it is not in the cache, and present it in a strongly-typed BackendServer
object.
```rust use awsparametersandsecretslambda::Manager; use serde::Deserialize;
struct BackendServer { api_key: String }
let manager = Manager::default(); let secret = manager.getsecret("backend-server"); let secretvalue: BackendServer = secret.gettyped().await?; asserteq!("dd96eeda-16d3-4c86-975f-4986e603ec8c", secretvalue.apikey); ```
Thorough documentation for this crate is available on docs.rs.
This crate is licensed under the MIT or Apache 2.0 license, at your option.