我发现将多个项目放在dynamoDB上是batchWrite方法,我需要如下所示的参数。
{
"RequestItems": {
"table name" : [
{
"PutRequest": {
"Item": {
"id" : 1,
"attr1" : 'hello'
}
},
"PutRequest": {
"Item": {
"id" : 2,
"attr1" : 'world'
}
}
}
]
}
}
但是它不起作用……我的请求参数中有任何问题吗?