Question 202:
You are in charge of designing Cloudformation templates for your company. One of the key requirements is to ensure that if a Cloudformation stack is deleted, a snapshot of the relational database is created which is part of the stack. How can you achieve this in the best possible way?
Answer options:
A.Create a snapshot of the relational database beforehand so that when the cloudformation stack is deleted, the snapshot of the database will be present. B.Use the Update policy of the cloudformation template to ensure a snapshot is created of the relational database. C.Use the Deletion policy of the cloudformation template to ensure a snapshot is created of the relational database. D.Create a new cloudformation template to create a snapshot of the relational database.