Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
How can a developer enable a Lambda function to perform partial match searches on email addresses within a specific customer type in a DynamoDB table, without needing to recreate the table?
A
Create a GSI with customer_type as the partition key and email_address as the sort key, then query using begins_with on email_address.
B
Create a GSI with email_address as the partition key and customer_type as the sort key, then query using begins_with on email_address.
C
Create an LSI with customer_type as the partition key and email_address as the sort key, then query using begins_with on email_address.
D
Create an LSI with job_title as the partition key and email_address as the sort key, then query using begins_with on email_address.