我正在尝试使用lambda python将数据从一个S3存储桶复制到同一帐户中的另一个存储桶。谁能帮忙。
答案 0 :(得分:3)
response = client.copy_object(
Bucket='string',
Key='string',
CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
...
)
在Bucket
和Key
中指定目的地,然后在CopySource
中指定来源。
CopySource
最简单的格式是:source-bucket/folder/foo.txt
让我们知道您是否不熟悉编写Lambda函数或使用boto3。