Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
50 views

from aws_lambda_powertools.utilities.typing import LambdaContext from aws_lambda_powertools.event_handler import APIGatewayHttpResolver from aws_lambda_powertools.logging import Logger from validate ...
Rohan Shah's user avatar
0 votes
1 answer
47 views

I have a lambda function that I added the lambda powertools function makeHandlerIdempotent but now I'm not getting any logs when I run the function.
Mhyland's user avatar
  • 280
0 votes
0 answers
50 views

I added the powertools-logging dependency on our project. And I build our project, and success. but I got the warning message as follow. [INFO] --- aspectj:1.13.1:compile (default) @ our_project_name -...
Suzuki Yuu's user avatar
0 votes
1 answer
134 views

Is there a way to configure different expiration time for different idempotency records? In the docs, it is possible to use @Idempotent on individual methods which stores the method response as ...
Deepayan Ghosh's user avatar
1 vote
1 answer
3k views

I've started using lambda power-tools for lambda. Currently my code looks like: @event_source(data_class=SNSEvent) @LOGGER.inject_lambda_context(log_event=True) def handler(event: SNSEvent, context: ...
Maciej's user avatar
  • 1,559