2

I have below table in DynamoDB

{
    "id": 1,
    "user": {
        "age": "26",
        "email": "[email protected]",
        "name": "test user"
    }
}

Using AWS console, I want to scan all the records whose email address contains gmail.com

I am trying this but it is giving no results.

I am new to AWS, not sure what's wrong here. Is it not possible to scan on nested fields?

enter image description here

1 Answer 1

2

I've been trying to figure this out myself but it would seem that nested item scans are not supported through the console.

I'm going based off of this which offer some alternative options via CLI or SDK: https://forums.aws.amazon.com/thread.jspa?messageID=931016

Sign up to request clarification or add additional context in comments.

1 Comment

You can try this tool (docs.aws.amazon.com/amazondynamodb/latest/developerguide/…). It has the option to add filter on nested fields. Go to "Operation builder" tab.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.