1 Answer
- Newest
- Most votes
- Most comments
1
Hello,
Thanks for reaching out.
As the official cloudformation doc mentioned(https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html ), you need to provide a json property for RedriveAllowPolicy, follow is one sample:
AWSTemplateFormatVersion: 2010-09-09
Description: A sample template
Resources:
MyQueue:
Type: 'AWS::SQS::Queue'
Properties:
RedriveAllowPolicy: '{"redrivePermission":"denyAll"}'
Please let's know if you have any further questions,
Regards,
