Concept Flow - GetItem (reading single item)
Start GetItem Request
Specify Table Name
Provide Primary Key
Send Request to DynamoDB
DynamoDB Searches for Item
Item Found?
No→Return Empty Result
Yes
Return Item Attributes
End
The GetItem operation starts by specifying the table and key, then DynamoDB searches for the item and returns it if found, otherwise returns empty.