Database Reference
In-Depth Information
Scan
The following code will scan the Tbl_Book table and return all the items. The response
will look exactly like that of the query operation so we can skip the explanation (to save
paper).
{
"TableName": "Tbl_Book",
"ReturnConsumedCapacity": "TOTAL"
}
The following code will apply a scan filter ( Publisher must be TMH ) to the scan opera-
tion:
{
"TableName": "Tbl_Book",
"ScanFilter": {
"Publisher": {
"AttributeValueList": [{"S": "TMH"}],
"ComparisonOperator": "EQ"}},
"ReturnConsumedCapacity": "TOTAL"
}
Search WWH ::




Custom Search