Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
An IAM policy that allows write access to a specific folder within an S3 bucket. This policy provides the permissions necessary to complete this action using the AWS API or AWS CLI only.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "s3:PutObject",
"Resource": [
"arn:aws:s3:::arn:aws:s3:::/FOLDER-PATH/*"
],
"Effect": "Allow"
},
{
"Resource": [
"arn:aws:s3:::arn:aws:s3:::/FOLDER-PATH/*"
],
"Effect": "Deny",
"NotAction": "s3:PutObject"
},
{
"Action": "s3:*",
"NotResource": [
"arn:aws:s3:::arn:aws:s3:::/FOLDER-PATH/*"
],
"Effect": "Deny"
}
]
}