Skip to content

Commit 364b0ce

Browse files
authored
chore(lambda): corrected documentation on the event source maximum batch size for SQS (#18971)
https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params > For standard queues, the maximum is 10,000. For FIFO queues, the maximum is 10. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f46a14d commit 364b0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/aws-lambda/lib/event-source-mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export interface EventSourceMappingOptions {
9191
* Valid Range: Minimum value of 1. Maximum value of 10000.
9292
*
9393
* @default - Amazon Kinesis, Amazon DynamoDB, and Amazon MSK is 100 records.
94-
* Both the default and maximum for Amazon SQS are 10 messages.
94+
* The default for Amazon SQS is 10 messages. For standard SQS queues, the maximum is 10,000. For FIFO SQS queues, the maximum is 10.
9595
*/
9696
readonly batchSize?: number;
9797

0 commit comments

Comments
 (0)