This method automatically uses the IAM role attached to your EC2 instance to access S3 buckets. No manual credential entry is required.
your-source-bucket-name
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:GetObject", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::your-source-bucket-name", "arn:aws:s3:::your-source-bucket-name/*" ] } ] }
OnyxS3Access