Is it possible to limit RestoreObject policy by data access tier?

0

Is it possible to create a policy such that it limits the s3:RestoreObject action only to a particular restore tier?

Example:

Can we have a policy that only allows "Bulk" restores, but it does not allow "Standard" nor "Expedited" restores.

I imagine if there is a way, it would have to do with the Condition element

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Allow only Bulk Restore",
            "Effect": "Allow",
            "Action": "s3:RestoreObject",
            "Resource": "arn:aws:s3:::mybucket/*",
            "Condition": {
                ?
            }
        }
    ]
}
1 Answer
0

Hi,

You may want to try the condition key s3:x-amz-storage-class which filters access by storage class. Take a look at this reference Actions, resources, and condition keys for Amazon S3 with the whole list.

When you grant access policy permissions for Amazon S3 operations, you can use the s3:x-amz-storage-class condition key to restrict which storage class to use when storing uploaded objects. For example, when you grant the s3:PutObject permission, you can restrict object uploads to a specific storage class. For an example policy, see Example 5: Restricting object uploads to objects with a specific storage class

I hope this helps!!!

AWS
SergioA
answered 2 months ago
profile picture
EXPERT
reviewed a month ago
  • Hi,

    I was checking the s3:x-amz-storage-class key, but it seems that this is for the target Storage Class of the operation. E.g. I could set the permission set to allow setting the files in one of these Storage Classes STANDARD | REDUCED_REDUNDANCY | STANDARD_IA | ONEZONE_IA | INTELLIGENT_TIERING | GLACIER | DEEP_ARCHIVE | OUTPOSTS | GLACIER_IR | SNOW | EXPRESS_ONEZONE.

    My question however is related to a file that's already in a cold storage tier (DEEP_ARCHIVE | GLACIER or the S3 Intelligent-Tiering Archive Access or Deep Archive Access storage tiers) and I want to Restore the object (which creates a copy of the object say in STANDARD for X days). The speed of the restore is managed by the "Retrieval tier" selected (Bulk | Standard | Expedited) which also affects the cost of the operation.

    I would like to have a permission set that only allows to use the RestoreObject action for say the Bulk Retrieval tier.

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.

Guidelines for Answering Questions