Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Services >> Cloud >> AWS >> S3 >> Example of S3 bucket policy

allow public to download and read acl of specific objects in a bucket

{
    "Version": "2012-10-17",
    "Id": "Policy1557511288767",
    "Statement": [
        {
            "Sid": "Stmt1557511286634",
            "Effect": "Allow",
            "Principal": "*",
            "Action": [
                "s3:GetObject",
                "s3:GetObjectAcl"
            ],
            "Resource": "arn:aws:s3:::yourbucketname/*.jpg"
        }
    ]
}

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]