Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sqs): queue with
fifo: false
does not deploy (#31922)
The `FifoQueue` property in CloudFormation can only be `true`, or must be absent. If you pass `FifoQueue: false`, you will receive the following error: ``` Resource handler returned message: "Unknown Attribute FifoQueue. (Service: Sqs, Status Code: 400, Request ID: e27d9d99-fe35-5b36-b670-c200419bc975)" (RequestToken: 1d882ab3-52e8-7e4b-e2d3-58e6ba10141d, HandlerErrorCode: InvalidRequest) ``` Make it so that a `fifo: false` configuration doesn't output FifoQueue at all. Closes #8550. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information