In Haskell, I process some data through pipes. During this processing, I want to conditionally save this data in S3. Are there any S3 libraries that will allow me to do this? In fact, what I want to do is βteeβ the pipeline created by the conduit and put the data it contains on S3 while continuing to process it.
I found the aws library ( https://hackage.haskell.org/package/aws ), but functions like multipartUpload take Source as an argument. Given that I'm already in the channel, this is not like what I can use.
source share