Is it possible to create a REST API with lambda backend using AWS Java SDK?
I have been able to create HTTP API using software.amazon.awssdk.services.apigatewayv2.ApiGatewayV2Client
with a lambda backend, but havent found the right sdk functions to do the same for REST APIs. I want to create REST APIs as it supports api-keys.
I understand that we can use Clouformation templates/Serverless framework etc to achieve my objective.
However, in this instance, I am working out a devops product that can create AWS API endpoints and am using a Java based framework(springboot) to expose APIs to do so. The Java APIs is intended create an AWS REST API with resources, authorizers, apikeys etc while the backend logic is left to the implementation team.