SQS
AWS Documentation
Example
import middy from '@middy/core'
import eventNormalizerMiddleware from '@middy/event-normalizer'
import sqsPartialBatchFailure from '@middy/sqs-partial-batch-failure'
export const handler = middy()
.use(eventNormalizerMiddleware())
.use(sqsPartialBatchFailure())
.handler((event, context, {signal}) => {
// ...
})