aws-cloudformation / aws-cloudformation/cloudformation-coverage-roadmap
AWS::SQS::Queue - FifoQueue: support false
- Dominant language
- No language data
- Stars
- 1.1k
- Forks
- 62
- PR merge metrics
- No merged PRs in 30d
Description
1. Title ->AWS::SQS::Queue-FifoQueue
2. Scope of request -> AWS::SQS::Queue-FifoQueue is not a valid property when not creating a FIFO queue. It should be able to be present if it is set to false.
3. Expected behavior -> The template below should successfully create a regular SQS queue.
4. Test case recommendation -> The template below fails with error "Unknown Attribute FifoQueue".
5. Links to existing API doc: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html
6. Category tag -> Integration
7. Any additional context: see template below
```yaml
AWSTemplateFormatVersion: "2010-09-09"
Resources:
Queue:
Type: AWS::SQS::Queue
Properties:
FifoQueue: false
```
Contributor guide
Assessment
This issue has not been assessed yet.