in awsio/csrc/io/s3/s3_io.cpp [169:175]
size_t read(uint64_t offset, size_t n, char *buffer) {
if (multi_part_download_) {
return readS3TransferManager(offset, n, buffer);
} else {
return readS3Client(offset, n, buffer);
}
}