Skip to main content
0 votes
0 answers
229 views

I use AWS Lambda function to respond to HTTP requests. The function stores some data in a PostgreSQL database. To reliably notify interested parties of the changes, I use transactional outbox pattern. ...
iTollu's user avatar
  • 1,119
0 votes
1 answer
147 views

I am working on an AWS Lambda extension which is deployed as an external extension with a Lambda function that handles HTTP requests. I want to capture HTTP request and response header and payload in ...
Arun Kaushal's user avatar
2 votes
1 answer
2k views

I have been trying to use AWS secrets lambda extension to cache secrets from secrets manager. I have been following AWS doc for the implementation. If I fetch secrets without adding the cache layer, I ...
Abhijeet's user avatar
  • 316
1 vote
0 answers
930 views

I am new to aws layers/extensions. Is AWS java lambda layer automatically starts JVM? or DO we need to manually start? I am trying to create java lambda layer and call the methods from lambda function,...
lakshmiravali rimmalapudi's user avatar
0 votes
0 answers
52 views

I want to know the following metrics for each AWS Lambda function: number of invocations duration of each invocation how much traffic in and out the function has received and generated The first two ...
vbgd's user avatar
  • 2,007
0 votes
1 answer
523 views

I'm attempting to use an internal lambda extension (aka a wrapper function) to set some environment variables before my lambda function runs, then to use the contents of the event object for some ...
dslosky's user avatar
  • 1,087
8 votes
1 answer
3k views

I'm trying to use AWS Parameters and Secrets Lambda Extension. From the documentation, looks straightforward, just send GET request to localhost:2773 and attach header AWS session token. I tried that, ...
I Cakramurti's user avatar
0 votes
1 answer
877 views

I have a lambda function that uses SSM ParameterStore values. It queries the ParameterStore and stores the fetched values in Lambda env variables so that next time it can use them from env variables ...
Venkat Papana's user avatar