The correct property for configuring DLQ in SQS is RedrivePolicy with deadLetterTargetArn and maxReceiveCount.
Step 2: Validate JSON structure
{"RedrivePolicy": {"deadLetterTargetArn": "arn:aws:sqs:region:account-id:DLQ", "maxReceiveCount": 5}} correctly uses "RedrivePolicy" with "deadLetterTargetArn" and "maxReceiveCount" set to 5.
Final Answer:
{"RedrivePolicy": {"deadLetterTargetArn": "arn:aws:sqs:region:account-id:DLQ", "maxReceiveCount": 5}} is the correct JSON snippet.
Quick Check:
RedrivePolicy with deadLetterTargetArn and maxReceiveCount is required [OK]
Quick Trick:Use RedrivePolicy with deadLetterTargetArn and maxReceiveCount [OK]
Common Mistakes:
MISTAKES
Using incorrect property names like DeadLetterConfig
Setting maxReceiveCount to wrong values
Misnaming the ARN property
Master "SNS and SQS" in AWS
9 interactive learning modes - each teaches the same concept differently