AWS S3 buffer size not increasing
问题 I am creating an S3 client with a modified buffer size, however, it does not seem to make a difference as always the same amount of bytes is read from the stream. Example code: var s3Client = new AmazonS3Client(access, secret, token, new AmazonS3Config { RegionEndpoint = Amazon.RegionEndpoint.USEast1, BufferSize = 1000000, // 1 MB (completely arbitrary) }); await s3Client.PutObjectAsync(new PutObjectRequest { Key = fileName, Bucket = bucketName, InputStream = new MyCustomStream(...) }); When