API Reference
    Preparing search index...

    Options for batch processing

    type BatchProcessingOptions<T = BasePartialBatchProcessor> = {
        context?: Context;
        processInParallel?: T extends | SqsFifoPartialProcessor
        | SqsFifoPartialProcessorAsync
            ? never
            : boolean;
        skipGroupOnError?: T extends | SqsFifoPartialProcessor
        | SqsFifoPartialProcessorAsync
            ? boolean
            : never;
        throwOnFullBatchFailure?: boolean;
    }

    Type Parameters

    Index

    Properties

    context?: Context

    The context object provided by the AWS Lambda runtime

    processInParallel?: T extends | SqsFifoPartialProcessor
    | SqsFifoPartialProcessorAsync
        ? never
        : boolean

    Indicates whether the records should be processed in parallel

    skipGroupOnError?: T extends | SqsFifoPartialProcessor
    | SqsFifoPartialProcessorAsync
        ? boolean
        : never

    The option to group on error during processing

    throwOnFullBatchFailure?: boolean

    The option to throw an error if the entire batch fails