怎么将Amazon S3对象中的一列复制到另一列?

huangapple go评论80阅读模式
英文:

How to copy from 1 column to another in an Amazon S3 object?

问题

[
    { "id": 1, "firstName": "Ao", "secondName": "Ou", "fullName": "Ao Ou" },
    { "id": 2, "firstName": "Bo", "secondName": "Ou", "fullName": "Bo Ou" }
]
英文:

My current structure is like this:

[
   {id: 1, firstName: 'Ao ', secondName: 'Ou' },
   {id: 2, firstName: 'Bo ', secondName: 'Ou' }
]

I want to change the data to something like this:

 [
     {id: 1, firstName: 'Ao ', secondName: 'Ou', fullName: 'Ao Ou' },
     {id: 2, firstName: 'Bo ', secondName: 'Ou', fullName: 'Bo Ou' }
 ]

I am new to AWS so I don't know how to do it. Is there anyway to do it via commands rather than manually adding all the data?

答案1

得分: 2

你不能直接在S3中编辑文件。
你可以加载它,进行编辑,然后再次上传到S3。

英文:

You can not edit the file in s3 directly .
You can load it edit and reupload to S3 again .

huangapple
  • 本文由 发表于 2023年2月24日 12:14:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/75552582.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定