我正在尝试将一个18GB的.vhd文件上传到S3。
我完成了以下过程:
aws s3api create-multipart-upload --bucket amcaebucket --key 'multipart/01'
其中my-bucket是我的桶的名称。
我收到了以下回复:
{
"Bucket": "amcaebucket",
"UploadId": "xxxxxxxxxxx",
"Key": "multipart/01"
}
我的下一个命令:
aws s3api upload-part --bucket amcaebucket --key 'multipart/01' --part-number 1 --upload-id "xxxxxxxxxxxx"
我收到以下错误:
An error occurred (AllAccessDisabled) when calling the UploadPart operation: All access to this object has been disabled.
我该怎么办?