Using the AWS .NET SDK's TransferUtility
, I can download files using an access key ID for myself, but when I set up a restricted user with read-only access, I get "The remote server returned an error: (403) Forbidden" errors.
I've set up the user to have the pre-configured arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess
policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:List*"
],
"Resource": "*"
}
]
}
Which other permissions does it need? When a request fails, how can I see exactly why it failed?