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

com.networknt.aws.lambda.handler.MiddlewareHandler Maven / Gradle / Ivy

Go to download

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