On the
AWS console, create an Amazon Simple Storage Service (S3) bucket,
or create a subdirectory in an existing S3 bucket.
The S3 bucket in the following example, vmseries-aws-bucket,
is at the All Buckets root folder level.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:ListBucket"],
"Resource": ["arn:aws:s3:::<bucketname>"]
},
{
"Effect": "Allow",
"Action": ["s3:GetObject"],
"Resource": ["arn:aws:s3:::<bucketname>/*"]
}
]
}