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": {
                ?
            }
        }
    ]
}
Juan C
已提问 3 个月前80 查看次数
1 回答
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
已回答 3 个月前
profile picture
专家
已审核 1 个月前
  • 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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容