我试图将 S3 存储桶中的所有文件复制到 VM 中的本地文件夹,但出现以下错误:
warning: Skipping file s3://bucket/object. Object is of storage class GLACIER.
Unable to perform download operations on GLACIER objects. You must restore the
object to be able to perform the operation. See aws s3 download help for
additional parameter options to ignore or force these transfers.
Run Code Online (Sandbox Code Playgroud)

要将文件从我的 S3 存储桶复制到本地文件夹,我使用了以下命令:
aws s3 cp s3://${s3Location} ${localDumpPath}
Run Code Online (Sandbox Code Playgroud)
在哪里:
${s3Location} = 我的 s3 位置和${localDumpPath} = 我的本地文件夹路径我需要更改什么才能成功复制?