Boto3 documentation 에서 identity access management잘 읽어 보세요.
님의 AWS계정에 권한이 있기 때문에 s3에 access가 가능한것입니다.
아래로 확인해 보세요 님의 권한을..
# Create an S3 client
s3 = boto3.client(‘s3′)
# Call to S3 to retrieve the policy for the given bucket
result = s3.get_bucket_acl(Bucket=’my-bucket’)
print(result)