DynamoDB - Backup and RecoveryWhich of the following is the correct syntax to enable server-side encryption on a DynamoDB table using AWS CLI?Aaws dynamodb create-table --table-name MyTable --sse-specification Enabled=trueBaws dynamodb create-table --table-name MyTable --encryption EnabledCaws dynamodb create-table --table-name MyTable --enable-encryption trueDaws dynamodb create-table --table-name MyTable --encryption-spec EnabledCheck Answer
Step-by-Step SolutionSolution:Step 1: Recall AWS CLI syntax for encryptionThe correct parameter to enable server-side encryption is --sse-specification Enabled=true.Step 2: Match the correct syntax optionaws dynamodb create-table --table-name MyTable --sse-specification Enabled=true uses the correct parameter and value format for encryption.Final Answer:aws dynamodb create-table --table-name MyTable --sse-specification Enabled=true -> Option AQuick Check:Encryption syntax = --sse-specification Enabled=true [OK]Quick Trick: Use --sse-specification Enabled=true to enable encryption [OK]Common Mistakes:MISTAKESUsing wrong parameter namesIncorrect boolean valuesMixing encryption with other flags
Master "Backup and Recovery" in DynamoDB9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More DynamoDB Quizzes Access Patterns and Query Optimization - Single-table design methodology - Quiz 11easy Access Patterns and Query Optimization - Hot partition prevention - Quiz 2easy Backup and Recovery - On-demand backups - Quiz 14medium Backup and Recovery - Cross-region replication (Global Tables) - Quiz 3easy Cost Optimization and Monitoring - CloudWatch metrics for DynamoDB - Quiz 6medium DynamoDB with AWS SDK - Expressions with SDK helpers - Quiz 9hard DynamoDB with Serverless - API Gateway to DynamoDB - Quiz 6medium Security and Access Control - IAM policy for DynamoDB - Quiz 9hard Security and Access Control - Condition keys for row-level security - Quiz 15hard Security and Access Control - Condition keys for row-level security - Quiz 2easy