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

com.amazonaws.services.lambda.runtime.events.ApplicationLoadBalancerResponseEvent Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
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