Why does access control not have "load object" privileges?

Asked 2 years ago, Updated 2 years ago, 44 views

I thought I would use access control (ACL) in S3 of aws.

Configurable items include:

  • List objects
  • Write Object
  • Read access to buckets
  • Bucket Write Access Permissions

is available, but

  • Loading Objects

Why does not exist as a configuration item?

aws

2022-09-30 19:53

1 Answers

If the ACL allows the bucket to be READed, it is "Allowed to list objects in the bucket."

Also, if you allow an object to be READed, you will be allowed to read the object data and its metadata.

Therefore, if you want to limit オブジェクトload objects の, try configuring ACLs on objects or preventing s3:Get* in bucket policies instead of ACLs.

Please refer to the Developer's Guide for details.
http://docs.aws.amazon.com/ja_jp/AmazonS3/latest/dev/acl-overview.html#permissions


2022-09-30 19:53

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.