Zim92
Zim92

Reputation: 21

Run SQS on AWS SAM locally. Is it possible?

Good morning! does AWS SAM natively support sqs service? i am looking for a way to run sqs service locally?

Upvotes: 2

Views: 6828

Answers (2)

Trevor Howard
Trevor Howard

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

fedonev
fedonev

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

Related Questions