Granting Access to a S3 Bucket - Amazon Web Services

Overview

This article provides the IAM policy used to grant a user full access to an S3 bucket.

Policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Stmt1447183152000",
            "Effect": "Allow",
            "Action": [
                "s3:*"
            ],
            "Resource": [
                "arn:aws:s3:::BucketName/*"
            ]
        }
    ]
}