Schema to create a resource of SQS queue using SAM
An example on how to declare SQS queue in template.yaml of your SAM configuration
  YourSQSQueue:
    Type: AWS::SQS::Queue
    Properties:
      QueueName: 'your-sqs-queue-name'More info on the available properties is in the next resource. I use CDK documentation, as I have not found related to SAM resources.
Last updated