Reputation: 21
Good morning! does AWS SAM natively support sqs service? i am looking for a way to run sqs service locally?
Upvotes: 2
Views: 6828
Reputation: 131
This PR may interest you. It provides only basic emulation of AWS SQS with lambda.
https://github.com/aws/aws-sam-cli/pull/3643
Upvotes: 1
Reputation: 25639
Only in a limited sense and in no way "native". You can use SAM to locally test Lambdas that make outbound SDK calls to cloud-deployed SQS queues. You can invoke local Lambdas with mock triggering events to simulate invocation by queue messages.
See this answer to a related question, skipping point #1, which is specific to CDK applications.
Upvotes: 2