Answers for "s3 bucket policy for public access"

0

s3 bucket policy for public access

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": "*",
      "Action": [
        "s3:GetObject"
      ],
      "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
    }
  ]
}
Posted by: Guest on April-08-2022

Code answers related to "s3 bucket policy for public access"

Browse Popular Code Answers by Language