io.quarkus.amazon.lambda.http.LambdaHttpRecorder 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
The newest version!
package io.quarkus.amazon.lambda.http;
import java.util.regex.Pattern;
import io.quarkus.runtime.annotations.Recorder;
@Recorder
public class LambdaHttpRecorder {
static LambdaHttpConfig config;
static Pattern groupPattern;
public void setConfig(LambdaHttpConfig c) {
config = c;
String pattern = c.cognitoClaimMatcher;
groupPattern = Pattern.compile(pattern);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy