From 550a445e071ad7872dc4569d434bc57389f661ac Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 8 Oct 2020 00:25:54 -0700 Subject: [PATCH] Updated Amazon S3 API (markdown) --- Amazon-S3-API.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Amazon-S3-API.md b/Amazon-S3-API.md index 89be82f..cff9a6f 100644 --- a/Amazon-S3-API.md +++ b/Amazon-S3-API.md @@ -63,9 +63,12 @@ You can create as many users as needed. Each user can have multiple credentials. * The "Write" action allows uploading files to all buckets. * The "Read" action allows reading files from all buckets. * The "List" action allows listing files from all buckets. +* The "Tagging" action allows tagging files from all buckets. * The "Write:" action allows uploading files within a bucket, e.g., "Write:bucket1". * The "Read:" action allows reading files within a bucket, e.g., "Read:bucket2". * The "List:" action allows listing files within a bucket, e.g., "List:bucket2". +* The "Tagging:" action allows tagging files within a bucket, e.g., "Tagging:bucket2". + For public access, you can configure an identity with name "anonymous", usually with just "Read" action, or access to specific buckets. @@ -89,6 +92,8 @@ For public access, you can configure an identity with name "anonymous", usually "actions": [ "Admin", "Read", + "List", + "Tagging", "Write" ] }, @@ -116,6 +121,7 @@ For public access, you can configure an identity with name "anonymous", usually "actions": [ "Read", "List", + "Tagging", "Write" ] }, @@ -130,6 +136,7 @@ For public access, you can configure an identity with name "anonymous", usually "actions": [ "Read:bucket1", "Read:bucket2", + "Read:bucket3", "Write:bucket1" ] }