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

io.quarkus.amazon.lambda.http.model.AlbContext Maven / Gradle / Ivy

package io.quarkus.amazon.lambda.http.model;

/***
 * Context passed by ALB proxy events
 */
public class AlbContext {
    private String targetGroupArn;

    public String getTargetGroupArn() {
        return targetGroupArn;
    }

    public void setTargetGroupArn(String targetGroupArn) {
        this.targetGroupArn = targetGroupArn;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy