Ask Your Question
4

How can I obtain access to lambda.runtime.Context in beans within Quarkus AWS Lambda?

asked 2023-06-01 22:49:52 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-06-01 23:17:02 +0000

bukephalos gravatar image

You can obtain access to lambda.runtime.Context by injecting an instance of io.quarkus.amazon.lambda.runtime.LambdaContext into your bean. Here's an example:

import io.quarkus.amazon.lambda.runtime.LambdaContext;
import javax.inject.Inject;

public class MyBean {

    @Inject
    LambdaContext lambdaContext;

    public void doSomething() {
        // you can now access the lambda runtime context
        String awsRequestId = lambdaContext.getAwsRequestId();
        System.out.println("AWS Request ID: " + awsRequestId);
    }

}

In the above example, we inject an instance of LambdaContext and use it to retrieve the AWS request ID. Note that this will only work if your bean is executed in the context of an AWS Lambda function. If you need a more generic solution, you should consider abstracting the LambdaContext interface and injecting that instead.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-01 22:49:52 +0000

Seen: 7 times

Last updated: Jun 01 '23