// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 package aws.proserve.bcs.dr.lambda; import com.amazonaws.services.lambda.runtime.Context; @FunctionalInterface public interface VoidHandler { void handleRequest(T request, Context context); }