Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 S3 存储桶更改为具有不频繁访问的默认存储类。
因此,如果我将文件上传到存储桶,它应该直接进入不频繁访问存储。
我不想使用生命周期
Amazon S3存储桶没有默认存储类的概念。
存储类特定于对象,可以在桶中创建对象时指定。
您将需要更改上传过程以在创建对象时指定存储类。
您可以使用生命周期规则稍后根据对象的年龄更改存储类,这与您将获得的“默认存储类”一样接近。
我自己找到了答案。
使用 cli-
aws s3 cp glacier.png s3://my-lambada-example-thumbnails/ --storage-class STANDARD_IA
所以通过使用 --storage-class我们可以指定存储类。
--storage-class
此外,当从 AWS 控制台上传时,我们可以指定存储类。
那些使用 AWS File Gateway 并希望将存储类从 S3 标准更改为 IA 的人可以更改如下所示。