I\'m trying to use the AWS cognito service to authenticate and upload a file. I have been provided my regionType, identityPool, AWS account ID, and UnAuthRole. I also know the p
This is your error:
File "./test.py", line 32, in
bucket = conn.get_bucket("elektradevbucket")
This is your part of the code that references the bucket:
bucket = conn.get_bucket("testbucket")
'''
s3 = boto3.resource('s3')
for bucket in s3.buckets.all():
print(bucket.name)
s3.Bucket('testbucket')
Are you sure you are running or calling the correct script?
Best, -Iulian