From f6ddfbceea2862abf5fdd77e97091fbd2a614cec Mon Sep 17 00:00:00 2001 From: Maxime Date: Mon, 17 Sep 2018 18:02:03 +1000 Subject: [PATCH] Add support information for AWS lambda and SQS From the AWS docs: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html it says: > Amazon Simple Queue Service supports both Standard and FIFO queues. AWS Lambda supports only standard queues. For more information on the difference, see What Type of Queue Do I Need? --- docs/providers/aws/events/sqs.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/providers/aws/events/sqs.md b/docs/providers/aws/events/sqs.md index e66ab7498..f264d39c5 100644 --- a/docs/providers/aws/events/sqs.md +++ b/docs/providers/aws/events/sqs.md @@ -18,6 +18,8 @@ The ARN for the queue can be specified as a string, the reference to the ARN of **Note:** The `sqs` event will hook up your existing SQS Queue to a Lambda function. Serverless won't create a new queue for you. +**IMPORTANT:** AWS is [not supporting FIFO queue](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html) to trigger Lambda function so your queue(s) **must be** a standard queue. + ```yml functions: compute: