com.amazonaws.services.lambda.runtime.events.ApplicationLoadBalancerResponseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-events Show documentation
Show all versions of aws-lambda-java-events Show documentation
Event interface definitions AWS services supported by AWS Lambda.
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;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy