DEA-C01 Data Operations and Support Practice Question
Exhibit
Resources:
MyTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: !Ref TableName
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: sk
AttributeType: S
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: sk
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
SSEEnabled: trueRefer to the exhibit. A CloudFormation template is used to create a DynamoDB table. After creation, a data engineer wants to restore the table to a point in time from 3 hours ago. Which action is required?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Use the AWS CLI or Console to initiate a point-in-time restore specifying the desired timestamp.
To restore a DynamoDB table to a point in time, the table must have point-in-time recovery (PITR) enabled. If it is enabled, you can use the AWS CLI or Console to initiate a point-in-time restore by specifying the desired timestamp. Option A is incorrect because a manual backup is not required; PITR uses continuous backups. Option B is incorrect because AWS Backup is not necessary; DynamoDB PITR is sufficient. Option C is incorrect because PITR does not require any on-demand backups; it relies on continuous backups.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Create a manual backup of the table first.
Why it's wrong here
PITR eliminates the need for manual backups.
- ✗
Enable AWS Backup to schedule automatic backups.
Why it's wrong here
DynamoDB PITR is independent of AWS Backup.
- ✗
Ensure the table has at least one on-demand backup.
Why it's wrong here
PITR uses continuous backups, not on-demand.
- ✓
Use the AWS CLI or Console to initiate a point-in-time restore specifying the desired timestamp.
Why this is correct
PITR is enabled, so restore is straightforward.
Go deeper
Related to this question
About these practice questions
Courseiva writes every DEA-C01 question from scratch — 1,711 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This DEA-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DEA-C01 exam.