如何使用 CLI 删除 S3 中的 Cache-Control 元数据?
How can I remove Cache-Control metadata in S3 using the CLI?
在 AWS S3 中,使用 CLI,我知道如何设置 Cache-Control headers,如下所示:
aws s3 cp s3://mybucket/ s3://mybucket --cache-control 'whatever' --recursive
如何删除 Cache-Control?我想为存储桶中的每个 object 删除此元数据。
唯一支持的方法是替换所有元数据:
aws s3 cp s3://mybucket/ s3://mybucket/ --metadata-directive REPLACE --recursive
请注意,这将替换对象的所有元数据,因此如果您有任何其他要保留的项目,则需要重新创建它们。
在 AWS S3 中,使用 CLI,我知道如何设置 Cache-Control headers,如下所示:
aws s3 cp s3://mybucket/ s3://mybucket --cache-control 'whatever' --recursive
如何删除 Cache-Control?我想为存储桶中的每个 object 删除此元数据。
唯一支持的方法是替换所有元数据:
aws s3 cp s3://mybucket/ s3://mybucket/ --metadata-directive REPLACE --recursive
请注意,这将替换对象的所有元数据,因此如果您有任何其他要保留的项目,则需要重新创建它们。