Retrieves a set of Attributes for an item that matches the primary key.
The GetItem
operation provides an eventually-consistent read by default. If eventually-consistent reads are not acceptable for your application, use ConsistentRead
. Although this operation might take longer than a standard read, it always returns the last updated value.
The GetItem operation returns a set of attributes for the item with the given primary key. If there is no matching item, GetItem does not return any data.
GetItem provides an eventually consistent read by default. If your application requires a strongly consistent read, set ConsistentRead to true
. Although a strongly consistent read might take more time than an eventually consistent read, it always returns the last updated value.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|