Skip to content

AWS S3 intelligent tiering enabled or not

0

hello, I want to verify a configuration on few buckets that I am seeing.

  1. Does below output mean that intelligent tiering is configured on the bucket and that objects will transition between tiers? I am not seeing the other tiers in this output which I think is because the other three are default.
  2. Is it possible to only have enable default tiers and not the archive and deep archive?
aws s3api get-bucket-intelligent-tiering-configuration --bucket samplebucketname --id lifecyle-tier
{
    "IntelligentTieringConfiguration": {
        "Id": "lifecyle-tier",
        "Status": "Enabled",
        "Tierings": [
            {
                "Days": 90,
                "AccessTier": "ARCHIVE_ACCESS"
            },
            {
                "Days": 180,
                "AccessTier": "DEEP_ARCHIVE_ACCESS"
            }
        ]
    }
}

asked 2 years ago937 views

3 Answers
1
Accepted Answer

Hello,

  1. Does below output mean that intelligent tiering is configured on the bucket and that objects will transition between tiers? I am not seeing the other tiers in this output which I think is because the other three are default.

Yes, the output shows that the two Archive tiers of Intelligent Tiering are explicitly activated/opted-in. The other three tiers are enabled by default.

  1. Is it possible to only have enable default tiers and not the archive and deep archive?

Yes, if you do not enable the Archive tiers (optional), the three default tiers are always enabled.

Hope this helps.

References:

[+] How S3 Intelligent-Tiering works - S3 Intelligent-Tiering access tiers - https://docs.aws.amazon.com/AmazonS3/latest/userguide/intelligent-tiering-overview.html#intel-tiering-tier-definition

AWS
SUPPORT ENGINEER

answered 2 years ago

EXPERT

reviewed 2 years ago

1

Hello,

Yes, to configure only the default tiers and exclude the archive and deep archive tiers, you can delete the existing configuration and create a new one without specifying any tiers.

Please look at AWS Document link you will get more information.

https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-intelligent-tiering.html

https://docs.aws.amazon.com/AmazonS3/latest/userguide/intelligent-tiering-overview.html

EXPERT

answered 2 years ago

0

I think this link help you to figure out you solution ' https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-intelligent-tiering.html

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.