2023-05-15 15:25:28 -07:00

828 B

title, meta_desc, meta_image, service, description, aws_here, menu, aliases
title meta_desc meta_image service description aws_here menu aliases
Creating an AWS SQS with Pulumi Learn how to use Pulumi to define an AWS SQS resource which can then be deployed to AWS and managed as infrastructure as code. /images/docs/service/aws-sqs.png SQS is a fully managed message queuing service that makes it easy to decouple and scale microservices, distributed systems, and serverless applications https://aws.amazon.com/sqs/
aws
name parent
SQS aws-guides
/docs/aws/sqs/

Create an AWS SQS resource using @pulumi/aws

The @pulumi/aws library enables fine-grained control over the AWS SQS resource meaning it can be coded, deployed, and managed entirely in code.

const aws = require("@pulumi/aws");

const queue = new aws.sqs.Queue("myqueue");