使用AWS CLI将JSON数据上传到本地Dynamo数据库

时间:2018-08-01 07:04:48

标签: javascript json node.js amazon-web-services amazon-dynamodb

这个问题是这个问题的继续。 Creating dynamo db tables in local host using json file

上面问题中提到的脚本已创建一个包含JSON的数据文件夹,现在我要将其上传到dynamo DB本地,我该怎么做?

json是这样的。

    {
      "Items": [
        {
          "terms": {
            "S": "true"
          },
          "ccode": {
            "S": "91"
          },
          "userid": {
            "S": "call1test@gmail.com"
          },
          "pgrad": {
            "S": "CA"
          },
          "experience": {
            "N": "10"
          },
          "lname": {
            "S": "test"
          },
          "phone": {
            "S": "9945134254"
          },
          "location": {
            "S": "bangalore"
          },
          "fname": {
            "S": "test"
          },
          "grad": {
            "S": "Not Pursuing Graduation"
          }
        }
    ]
}

0 个答案:

没有答案