AWS Storage Services

Amazon S3 Bucket Policies for VPC Endpoints

1 min read
Updated June 22, 2025
313 characters

{

"Version": "2012-10-17",

"Statement": [

{

  "Effect": "Allow",

  "Principal": "*",

  "Action": [

    "s3:GetObject",

    "s3:PutObject"

  ],

  "Resource": [

    "arn:aws:s3:::my-secure-bucket",

    "arn:aws:s3:::my-secure-bucket/*"

  ]

}

]

}