Skip to content
Advertisement

Tag: amazon-web-services

How to specify JVM to gradle when using AWS lambda

I’m using AWS Lambda with Java and I’m running into this issue. Can someone help? “gradlew is using a JVM with major version 14 which is newer than 11 that is supported by AWS Lambda. The compiled function code may not run in AWS Lambda unless the project has been configured to be compatible with Java 11 using ‘targetCompatibility’ in

How the function changeMessageVisibility of sqs message extends the visibility time?

In its documentation of ChangeMessageVisibility function, Amazon gives the following example: For example, you have a message with a visibility timeout of 5 minutes. After 3 minutes, you call ChangeMessageVisibility with a timeout of 10 minutes. You can continue to call ChangeMessageVisibility to extend the visibility timeout to the maximum allowed time. If you try to extend the visibility timeout

AWS Java SDK for service to service Oauth client credentential flow authentication with Cognito user pool?

Situation: I have java background process service running that needs to access a secured REST API endpoint. The API endpoint an AWS lambda function running behind Amazon API Gateway, using the Serverless framework. It is secured with a Amazon Cognito User Pool Authorizer. I have created an App Client for my Java background service, which is attached to the user

How to connect to DynamoDB on AWS using a Spring Boot application running on local system?

I’m working on Spring Boot microservice REST based application and backedn database is currently local Dynamodb database. I can make REST calls using Postman to my application running locally and can perform CRUD operation with the local dynamodb database. Now I want to make changes in the configuration so that whenever I make similar CRUD operations on my application running

Advertisement