org.http4k.serverless.lambda.ApiGatewayProxyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-serverless-lambda Show documentation
Show all versions of http4k-serverless-lambda Show documentation
Http4k Serverless support for AWS Lambda
package org.http4k.serverless.lambda;
import java.util.Collections;
import java.util.Map;
public class ApiGatewayProxyRequest {
public String path;
public String httpMethod;
public Map headers = Collections.emptyMap();
public Map queryStringParameters = Collections.emptyMap();
public String body = "";
}