com.amazonaws.serverless.proxy.model.AlbContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-serverless-java-container-core Show documentation
Show all versions of aws-serverless-java-container-core Show documentation
Allows Java applications written for a servlet container to run in AWS Lambda
package com.amazonaws.serverless.proxy.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;
}
}