io.quarkus.amazon.lambda.http.LambdaAuthenticationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-amazon-lambda-http Show documentation
Show all versions of quarkus-amazon-lambda-http Show documentation
Allow applications written for a servlet container to run in AWS Lambda
package io.quarkus.amazon.lambda.http;
import com.amazonaws.services.lambda.runtime.events.APIGatewayV2HTTPEvent;
import io.quarkus.security.identity.request.BaseAuthenticationRequest;
public class LambdaAuthenticationRequest extends BaseAuthenticationRequest {
private APIGatewayV2HTTPEvent event;
public LambdaAuthenticationRequest(APIGatewayV2HTTPEvent event) {
this.event = event;
}
public APIGatewayV2HTTPEvent getEvent() {
return event;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy