com.networknt.aws.lambda.app.LambdaAppConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambda-native Show documentation
Show all versions of lambda-native Show documentation
A middleware Lambda function that handles all the cross-cutting concerns for the downstream Lambda function.
The newest version!
package com.networknt.aws.lambda.app;
public class LambdaAppConfig {
public static final String CONFIG_NAME = "lambda-app";
private String lambdaAppId;
public LambdaAppConfig() {
}
public String getLambdaAppId() {
return lambdaAppId;
}
public void setLambdaAppId(String lambdaAppId) {
this.lambdaAppId = lambdaAppId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy