You must be logged in to view saved presets
An S3 Bucket policy grants access to AWS Config to store its history files and snapshots on the S3 bucket.
{
"Version": "2012-10-17",
"Statement": [
{
"Principal": {
"Service": "config.amazonaws.com"
},
"Action": [
"s3:GetBucketAcl"
],
"Resource": [
"arn:aws:s3:::"
],
"Effect": "Allow",
"Condition": {}
},
{
"Principal": {
"Service": "config.amazonaws.com"
},
"Action": [
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::/*"
],
"Effect": "Allow",
"Condition": {
"StringEquals": {
"s3:x-amz-acl": "bucket-owner-full-control"
}
}
}
]
}