DEA-C01 • Mock Exam 92
Free DEA-C01 mock exam — 25 questions with explanations. Set 92. No signup required.
A data team uses the CloudFormation template in the exhibit to create an S3 bucket for storing log files. After one year, they notice that the bucket size is larger than expected. They investigate and find that older versions of objects are not being deleted or transitioned. What is the most likely cause?
CloudFormation snippet:
"MyS3Bucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"VersioningConfiguration": {
"Status": "Enabled"
},
"LifecycleConfiguration": {
"Rules": [
{
"Id": "ArchiveOldData",
"Status": "Enabled",
"ExpirationInDays": 365,
"Transitions": [
{
"TransitionInDays": 30,
"StorageClass": "STANDARD_IA"
},
{
"TransitionInDays": 90,
"StorageClass": "GLACIER"
}
]
}
]
}
}
}