9 questions
0
votes
0
answers
50
views
Can't get AWS Lambda Powertools dynamic routes to work
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 ...
0
votes
1
answer
47
views
lambda not showing console logs after implementing makeHandlerIdempotent
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.
0
votes
0
answers
50
views
I got the warning log LambdaLoggingAspect has not been applied
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 -...
0
votes
1
answer
134
views
Is there a way to have different expiration for different idempotency records in aws-lambda-powertools-java?
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 ...
1
vote
1
answer
3k
views
How correctly log AWS Lambda event with lambda powertools
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: ...