1 Answer
- Newest
- Most votes
- Most comments
0
Have you taken a look at this re:Post article: https://repost.aws/knowledge-center/cloudformation-template-validation? Specifically, the section: "Verify the availability of your resource type" would be important.
However, this typically boils down to one of these causes:
- your template has a typo - this could be a spacing issue in YAML, the resource type name has a typo or one of the sub-objects/properties has an issue
- your are trying to access resources not in your region (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-resource-specification.html)
- you are using Serverless resources in your template and the Transform declaration is missing
answered a year ago
Relevant content
- Accepted Answerasked 3 years ago
- Accepted Answerasked 7 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 5 months ago
Yeah, apparently those 3 resources are available through the Console but not in CFN. I've already raised a ticket about it: https://github.com/aws-cloudformation/cloudformation-coverage-roadmap/issues/1600. I guess now it's just a matter of waiting till they cover those resource types in the region (as it already happened with the UAE region).