package com.amazonaws.services.lambda.runtime.events;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* Class to represent the response event to Application Load Balancer.
*
* @see Using AWS Lambda with an Application Load Balancer
*
* @author msailes
*/
@NoArgsConstructor
@Data
public class ApplicationLoadBalancerResponseEvent implements Serializable, Cloneable {
private int statusCode;
private String statusDescription;
private boolean isBase64Encoded;
private Map headers;
private Map> multiValueHeaders;
private String body;
}