com.networknt.aws.lambda.handler.MiddlewareHandler 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.handler;
public interface MiddlewareHandler extends LambdaHandler {
/**
* Indicate if this middleware handler will continue on failure or not.
* @return boolean true if continue on failure
*/
boolean isContinueOnFailure();
/**
* Indicate if this middleware handler is audited or not.
* @return boolean true if audited
*/
boolean isAudited();
void getCachedConfigurations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy