UNPKG

@middy/sqs-partial-batch-failure

Version:

SQS partial batch failure middleware for the middy framework

12 lines (8 loc) 341 B
// Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors. // SPDX-License-Identifier: MIT import type middy from "@middy/core"; interface Options { logger?: (reason: any, record: any) => void; } declare function sqsPartialBatchFailure(options?: Options): middy.MiddlewareObj; export default sqsPartialBatchFailure;