英文:
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 .
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论