I'm having the error mentioned in the title when trying to upload a large file (15gb) to my s3 bucket from a Sagemaker notebook instance.
I know that there are some similar questions here that i have already visited. I have gone through this, this, and this question, but after following the steps mentioned, and applying the policies described in these questions i still have the same error.
I have also come to this documentation page eventually. The problem is that when i go into my users page in the IAM section, i see no users. I can see some roles but no users and i don't know which role should i edit following the steps mentioned in the documentation page. Also, my bucket DON'T have encryption enabled so i'm not really sure that the steps in the documentation page will fix the error for me.
This is the policy in currently using for my bucket:
{
"Version": "2012-10-17",
"Id": "Policy1",
"Statement": [
{
"Sid": "Statement1",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::XXXX:root"
},
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::bauer-bucket",
"arn:aws:s3:::bauer-bucket/*"
]
}
]
}
I'm totally lost with this, i need to upload that file to my bucket. Please help.
Thanks in advance.