我是 dynamodb 的新手,我可以根据密钥删除项目。
下面是代码片段:
HashMap<String, AttributeValue> key = new HashMap<String, AttributeValue>();
key.put("hash", new AttributeValue().withS("hashEncodedStringValue"));
DeleteItemRequest deleteItemRequest = new DeleteItemRequest().withTableName("HashTable").withKey(key);
我需要从我的表中删除不到 7 天的项目。我的表有一个名为“created_at”的字段,格式为“2017-10-25 14:54:52.278”