Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
An S3 VPC endpoint policy that restricts access through the S3 endpoint to users in a specific account
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:*"
],
"Principal": "*",
"Resource": [
"*"
],
"Effect": "Allow",
"Condition": {
"ArnEquals": {
"aws:PrincipalAccount": ""
}
}
}
]
}