Gets a readable stream of the file's content. Useful for processing large files without loading them entirely into memory.
Symbol
S3File.readable
readonly readable: ReadableStream
// Basic streaming read
const stream = file.stream();
for await (const chunk of stream) {
console.log('Received chunk:', chunk);
}