S3 Bucket Default Storage Class

0

Is it possible to configure a default storage class for a S3 bucket other than Standard. For example can I configure the default storage class of a bucket to Intelligent Tiering so that any objects which are PUT to the bucket will be stored in Intelligent Tiering unless explicitly set otherwise in the initial PUT? This would save the transition cost of each object.

質問済み 2年前2137ビュー
2回答
0

Unfortunately the current behavior of S3 is that everything that every object put on S3 that has no explicit storage class set will be stored with S3 Standard Storage class: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html#sc-howtoset

I recommend that you reach out to your AWS Account Representative to address these need. They will make sure that your use case will be added to our list of customer demands which will influence our planning for future development and prioritization.

エキスパート
回答済み 2年前
0

There's no way to set a "default" storage class, but to add on to @Adreas_S's comment, you can specify the storage class when creating/uploading a new object. For example, when creating objects using the PUT Object, POST Object, and Initiate Multipart Upload APIs, you add the x-amz-storage-class request header to specify a storage class. If you don't add this header, Amazon S3 uses Standard, the default storage class.

Same holds true if you happen to be uploading objects via the AWS Command line you can use the --storage-class INTELLIGENT_TIERING parameter. For example:

aws s3 cp <source file> s3://<destinationBucket> --storage-class INTELLIGENT_TIERING

This is all outlined in Andrea's link above.

AWS
AWSJoe
回答済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ