Hey Kevin — I haven’t used SQS myself before, but I suspect this is a place where you’d use the AWS SDK (which Pulumi provides for you, in the
aws
package) to send that message — so something like:
Copy code
const queue = new aws.sqs.Queue("dataqueue");
...
// And then in your POST handler
const sqs = new aws.sdk.SQS();
sqs.sendMessage({
...the properties of the request
});
No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.