Having deployed an application using Amazons AWS SAM framework (CloudFormation under the hood) I would now like to destroy all the resources it has created.
This is easy enough to do had I been using Terraform with the Terraform destroy command. Is there an equivalent command using AWS SAM or even CloudFormation?
Thanks in adv. Michael McD.
Cloudformation
CLI or SDK APIs work for SAM since SAM (as you said) isCloudformation
under the hood. – asr9