All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.serverless.lambda.ApiGatewayProxyRequest Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
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 = "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy