SAP-C02 • Practice Exam 59
Free SAP-C02 practice exam — 20 questions with explanations. Set 59. No signup required.
Refer to the exhibit. A CloudFormation template is used to create an S3 bucket with versioning enabled and a DeletionPolicy of Retain. The stack is deleted. What happens to the bucket and its objects?
Refer to the exhibit.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"MyBucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"BucketName": "my-unique-bucket-12345",
"VersioningConfiguration": {
"Status": "Enabled"
}
},
"DeletionPolicy": "Retain"
}
}
}